.h2-split-section {
  width: 100%;
  overflow: hidden;
  background: #000;
  color: #f5f2ea;
}

.h2-split-section__inner {
  display: grid;
  width: min(100%, 80.625rem);
  margin: 0 auto;
  padding: 6rem var(--container-padding, 1.5rem);
  grid-template-columns: minmax(0, 39.375rem) minmax(0, 1fr);
  align-items: start;
  gap: 3rem;
  box-sizing: border-box;
}

.h2-split-section__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.h2-split-section__title {
  width: min(100%, 39.25rem);
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: var(--fs-section-title);
  font-weight: 700;
  line-height: 1.1;
  color: #f5f2ea;
}

.h2-split-section__copy {
  width: min(100%, 39.375rem);
  max-height: 6.5rem;
  overflow: hidden;
  color: #d8d1c6;
  font-family: Inter, sans-serif;
  font-size: var(--fs-card-text);
  font-weight: 400;
  line-height: 1.6;
}

.h2-split-section__copy.is-open {
  max-height: none;
}

.h2-split-section__copy p {
  margin: 0;
}

.h2-split-section__copy p + p {
  margin-top: 1rem;
}

.h2-split-section__toggle {
  display: inline-flex;
  padding: 0;
  flex-direction: column;
  align-items: center;
  gap: 0.13rem;
  border: 0;
  background: transparent;
  color: #dc3610;
  font-family: Inter, sans-serif;
  font-size: var(--fs-kicker);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  cursor: pointer;
}

.h2-split-section__toggle-icon {
  width: 0.75rem;
  height: 0.4625rem;
  background-color: currentColor;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  transition: transform 0.3s ease;
}

.h2-split-section__toggle[aria-expanded="true"] .h2-split-section__toggle-icon {
  transform: rotate(180deg);
}

.h2-split-section__accordions {
  min-width: 0;
}

.h2-split-section__item {
  border-bottom: 1px solid #dc3610;
}

.h2-split-section__item.is-open .h2-split-section__icon {
  transform: rotate(45deg);
}

.h2-split-section__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 3rem 0 3rem 1.5rem;
  border: 0;
  background: transparent;
  color: #f5f2ea;
  text-align: left;
  cursor: pointer;
}

.h2-split-section__trigger-text {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: var(--fs-card-title);
  font-weight: 700;
  line-height: 1.1;
}

.h2-split-section__icon {
  flex: 0 0 auto;
  width: 1.875rem;
  height: 1.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5f2ea;
  transition: transform 0.3s ease;
}

.h2-split-section__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.h2-split-section__panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.h2-split-section__item.is-open .h2-split-section__panel {
  opacity: 1;
}

.h2-split-section__panel-inner {
  padding: 0 1.5rem 3rem;
  color: #d8d1c6;
  font-family: Inter, sans-serif;
  font-size: var(--fs-card-text);
  line-height: 1.6;
}

.h2-split-section__panel-inner p {
  margin: 0;
}

.h2-split-section__panel-inner p + p {
  margin-top: 1rem;
}

.h2-split-section__panel-inner h4,
.h2-split-section__panel-inner h5,
.h2-split-section__panel-inner h6 {
  margin: 1.5rem 0 0.75rem;
  color: #f5f2ea;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1.15;
}

@media (max-width: 1099px) {
  .h2-split-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .h2-split-section__trigger {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .h2-split-section__panel-inner {
    padding-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .h2-split-section__inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .h2-split-section__trigger {
    padding-left: 0;
  }

  .h2-split-section__panel-inner {
    padding-left: 0;
  }
}
