.homepage-sticky-split {
  background: #0b0f14;
  position: relative;
  overflow: clip;
}

.homepage-sticky-split__inner {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  margin: 0 auto;
}

.homepage-sticky-split__content-col {
  width: 58%;
  padding: 8rem clamp(3rem, 6vw, 6rem) 8rem clamp(1rem, 7.65vw, 8.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.homepage-sticky-split__media-col {
  width: 42%;
  position: sticky;
  top: 0;
  height: 100vh;
  background: #030a07; 
}

.homepage-sticky-split__figure {
  margin: 0;
  width: 100%;
  height: 100%;
}

.homepage-sticky-split__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homepage-sticky-split__placeholder {
  width: 100%;
  height: 100%;
  background: #dcdcdc;
}

/* Typography matching site spec */
.homepage-sticky-split__eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.homepage-sticky-split__eyebrow-line {
  width: 35px;
  height: 1px;
  background: #3fc1d9;
}

.homepage-sticky-split__eyebrow {
  color: #3fc1d9;
  font-family: "Lora", serif;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  font-weight: 700;
  line-height: 1.1;
}

.homepage-sticky-split__title {
  margin: 0 0 2.5rem;
  color: #fff;
  font-family: "Lora", serif;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  text-wrap: balance;
}

.homepage-sticky-split__title strong,
.homepage-sticky-split__title em {
    color: #3fc1d9;
    font-style: normal;
    font-weight: inherit;
}

.homepage-sticky-split__title a {
  color: inherit;
  text-decoration: none;
}

.homepage-sticky-split__copy {
  color: rgba(255, 255, 255, 0.85);
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}

.homepage-sticky-split__copy p {
  margin: 0;
}

@media (max-width: 991px) {
  .homepage-sticky-split__inner {
    flex-direction: column;
    min-height: auto;
  }
  
  .homepage-sticky-split__content-col,
  .homepage-sticky-split__media-col {
    width: 100%;
  }

  .homepage-sticky-split__content-col {
    padding: 4rem 1.25rem 3rem;
  }

  .homepage-sticky-split__media-col {
    position: relative;
    top: auto;
    height: 50vh;
    min-height: 400px;
  }
}
