.h2-feature-section {
  position: relative;
  padding: 6rem 0 5.5rem;
  background: #090d12;
  color: #fff;
  overflow-x: clip;
  overflow-y: visible;
}

.h2-feature-section__inner {
  width: min(100%, 1728px);
  margin: 0 auto;
  padding: 0 clamp(1rem, 7.65vw, 8.25rem);
}

.h2-feature-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.97fr) minmax(20rem, 0.9fr);
  gap: 3rem;
  align-items: start;
}

.h2-feature-section__content {
  max-width: 53rem;
}

.h2-feature-section__title {
  margin: 0;
  color: #fff;
  font-family: "Lora", serif;
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.06;
  text-wrap: balance;
}

.h2-feature-section__intro,
.h2-feature-section__subcopy,
.h2-feature-section__item-copy,
.h2-feature-section__item-subcopy {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.76;
}

.h2-feature-section__intro {
  margin-top: 1.5rem;
  max-width: 50rem;
}

.h2-feature-section__subheading {
  margin: 2rem 0 0;
  color: #fff;
  font-family: "Lora", serif;
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.12;
}

.h2-feature-section__subcopy {
  margin-top: 1rem;
  max-width: 46rem;
}

.h2-feature-section__list {
  margin-top: 1.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.h2-feature-section__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.h2-feature-section__item-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.85rem 0;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  transition:
    color 0.25s ease,
    padding-bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.h2-feature-section__item.is-active .h2-feature-section__item-button {
  padding-bottom: 0.75rem;
  color: #fff;
}

.h2-feature-section__item-button:hover {
  color: #fff;
}

.h2-feature-section__item-title {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4;
}

.split-accordion__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  color: rgba(255, 255, 255, 0.55);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.25s ease;
}

.h2-feature-section__item.is-active .split-accordion__icon {
  color: #3fc1d9;
  transform: rotate(45deg);
}

.h2-feature-section__item-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.h2-feature-section__item.is-active .h2-feature-section__item-panel {
  grid-template-rows: 1fr;
}

.h2-feature-section__item-panel-inner {
  overflow: hidden;
}

.h2-feature-section__item-copy {
  padding-bottom: 1.85rem;
  max-width: 48rem;
}

.h2-feature-section__item-subtitle {
  margin: 0 0 0.35rem;
  color: #3fc1d9;
  font-family: "Lora", serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.25;
}

.h2-feature-section__media-column {
  align-self: start;
  position: sticky;
  top: clamp(5.5rem, 8vw, 7rem);
}

.h2-feature-section__media {
  min-height: min(46rem, 78vh);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.h2-feature-section__image,
.h2-feature-section__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(46rem, 78vh);
}

.h2-feature-section__image {
  object-fit: cover;
}

.h2-feature-section__image-placeholder {
  background: linear-gradient(180deg, #d9d9d9 0%, #cfcfcf 100%);
}

@media (max-width: 991px) {
  .h2-feature-section {
    padding: 4.5rem 0 3rem;
  }

  .h2-feature-section__inner {
    padding: 0 1.25rem;
  }

  .h2-feature-section__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .h2-feature-section__media {
    min-height: 24rem;
  }

  .h2-feature-section__media-column {
    position: relative;
    top: auto;
  }

  .h2-feature-section__image,
  .h2-feature-section__image-placeholder {
    min-height: 24rem;
  }
}

@media (max-width: 640px) {
  .h2-feature-section {
    padding: 4rem 0 2.5rem;
  }

  .h2-feature-section__title {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .h2-feature-section__subheading {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .h2-feature-section__item-button {
    padding: 1rem 0;
  }

  .h2-feature-section__item-title {
    font-size: 1rem;
  }
}
