.about-story-page {
  background-color: #fff;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../img/hero-bg-alt.webp");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.about-story-main {
  padding: 0 0 150px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .about-story-main > .container {
    width: 100%;
    max-width: 1140px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-story-main > .container {
    width: calc(100% - 48px);
    max-width: none;
  }
}

@media only screen and (max-width: 767px) {
  .about-story-main {
    padding: 0 0 100px;
  }

  .about-story-main > .container {
    width: calc(100% - 30px);
    max-width: 540px;
  }
}

.about-story-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
  height: 425px;
  margin-bottom: 48px;
  padding: 0;
}

.about-story-section:nth-child(even) .about-story-copy h2,
.about-story-section:nth-child(even) .about-story-copy p {
  color: #fff;
}

.about-story-image {
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  border-radius: 20px;
}

.about-story-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-section:nth-child(even) .about-story-image {
  order: 2;
}

.about-story-section:nth-child(even) .about-story-copy {
  order: 1;
  background: #75C7CD;
  border-color: #fff;
}

.about-story-section:nth-child(3n) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: left;
}

.about-story-kicker {
  margin-bottom: 10px;
  color: #DE5B82;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 48px;
  border: 3px solid #75C7CD;
  border-radius: 20px;
  background: #fff;
}

.about-story-copy h2 {
  margin-bottom: 16px;
  color: #75C7CD;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
}

.about-story-copy p:not(.about-story-kicker) {
  margin: 0;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .about-story-section,
  .about-story-section:nth-child(3n) {
    grid-template-columns: 1fr;
    height: auto;
    gap: 24px;
    margin-bottom: 28px;
  }

  .about-story-section:nth-child(even) .about-story-image,
  .about-story-section:nth-child(even) .about-story-copy {
    order: initial;
  }

  .about-story-image {
    height: 260px;
    min-height: 260px;
  }

  .about-story-copy {
    height: auto;
    padding: 28px;
  }
}
