@charset "UTF-8";
/* Benefits — Figma 13220:1270.
   Figma renders the pills at 54px tall with an inside-aligned 1px border, so
   the padding here is 14/25 rather than the reported 15/26 to land on the
   same box once the border is added. */
.benefits {
  background: #ffffff;
  padding: 80px 0;
}
.benefits * {
  color: inherit;
}
.benefits__content {
  display: flex;
  align-items: center;
  gap: 80px;
}
.benefits__copy {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.benefits .section_header {
  max-width: 800px;
}
.benefits__pills {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.benefits__pill {
  display: inline-flex;
  align-items: center;
  padding: 14px 25px;
  border: 1px solid #e7e7ea;
  border-radius: 999px;
  background: #f7f7f8;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1a1a22;
  white-space: nowrap;
}
.benefits__image {
  flex: 0 0 400px;
  width: 400px;
  height: 400px;
}
.benefits__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media screen and (max-width: 1180px) {
  .benefits__content {
    gap: 48px;
  }
  .benefits__image {
    flex-basis: 320px;
    width: 320px;
    height: 320px;
  }
}
@media screen and (max-width: 900px) {
  .benefits {
    padding: 56px 0;
  }
  .benefits__content {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 32px;
  }
  .benefits__copy {
    gap: 28px;
  }
  .benefits__image {
    flex: 0 0 auto;
    align-self: center;
  }
}
@media screen and (max-width: 767px) {
  .benefits__pill {
    padding: 10px 18px;
    font-size: 15px;
    line-height: 22px;
    white-space: normal;
  }
  .benefits__image {
    width: 240px;
    height: 240px;
  }
}
