.org-feature.bg--light {
  background-color: #F6F3F0;
}
.org-feature.bg--light-blue {
  background-color: #EAF4FA;
}
.org-feature.bg--gradient {
  background: linear-gradient(90deg, #162835, #1F5472);
}
.org-feature__caps {
  color: #3A7594;
  margin-bottom: 1rem;
}
.org-feature__title {
  color: #1F3642;
  margin-bottom: 0;
  max-width: 900px;
}
.org-feature__more-info {
  margin-top: 2rem;
}
.org-feature__more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: clamp(10px, 0.9vw, 13px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #3A7594;
  transition: color 200ms ease;
}
.org-feature__more-toggle:hover {
  color: #A3D4F2;
}
.org-feature__chevron {
  flex-shrink: 0;
  transition: transform 350ms ease;
}
.org-feature__more-toggle.is-open .org-feature__chevron {
  transform: rotate(180deg);
}
.org-feature__description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms ease, margin-top 420ms ease;
  margin-top: 0;
}
.org-feature__description p {
  color: #10181D;
  line-height: 1.5;
  max-width: 760px;
  opacity: 0.85;
  margin: 0;
}
.org-feature__description.is-open {
  max-height: 800px;
  margin-top: 1.25rem;
}
.org-feature__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 3rem;
}
.org-feature__bottom--one-quote .org-feature__quote-card {
  grid-column: span 2;
}
.org-feature__media-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.org-feature__image img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.org-feature__quote-card {
  background: #1F3642;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  backdrop-filter: blur(9.5px);
  -webkit-backdrop-filter: blur(9.5px);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.org-feature__quote-text {
  color: #F3E9E0;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}
.org-feature__quote-attr {
  color: #F3E9E0;
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 700;
  text-align: center;
  margin: 0;
  line-height: 1.4;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.org-feature.bg--gradient .org-feature__title {
  color: #F6F3F0;
}
.org-feature.bg--gradient .org-feature__description p {
  color: #F6F3F0;
}
@media screen and (max-width: 1024px) {
  .org-feature__bottom {
    grid-template-columns: 1fr 1fr;
  }
  .org-feature__media-col {
    grid-column: 1/-1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .org-feature__bottom--one-quote .org-feature__quote-card {
    grid-column: auto;
  }
}
@media screen and (max-width: 900px) {
  .org-feature__bottom {
    grid-template-columns: 1fr;
  }
  .org-feature__media-col {
    flex-direction: column;
    align-items: flex-start;
  }
  .org-feature__bottom--one-quote .org-feature__quote-card {
    grid-column: auto;
  }
}/*# sourceMappingURL=org-feature.css.map */