:root {
  --grid-gutter-width: 30px;
  --border-opacity: 1;
}

@media (max-width: 767px) {
  :root {
    --grid-gutter-width: 40px;
  }
}
.simple-hero {
  margin: 4rem 0 8rem;
}
.simple-hero__in {
  max-width: 720px;
  margin: 0 auto;
}
.simple-hero__in.text-center .content-entry ul,
.simple-hero__in.text-center .content-entry ol {
  display: inline-block;
  list-style-position: inside;
}
.simple-hero__image {
  width: 120px;
  height: 120px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
}
.simple-hero__image img {
  width: auto;
  position: absolute;
  inset: 0;
  object-fit: cover;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  height: auto;
}
.simple-hero__chips {
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  padding: 1.2rem 0 0;
  margin: 0;
  list-style-type: none;
}
.simple-hero__chips li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 33.33%;
  margin: 0;
}
.simple-hero__chips li svg {
  min-width: 24px;
}

@media (max-width: 767px) {
  .simple-hero {
    margin: 3.2rem 0;
  }
  .simple-hero .content-entry br {
    display: none;
  }
  .simple-hero__chips {
    flex-direction: column;
    gap: 1.3rem;
    padding: 0.4rem 0 0;
  }
  .simple-hero__chips li {
    max-width: 100%;
  }
}

/*# sourceMappingURL=simple-hero.css.map */