.oh-story {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
  margin: clamp(75px, 8vw, 100px) clamp(24px, 8vw, 158px);
}

.oh-story__intro {
  text-align: center;
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0 !important;
}

.oh-story__category {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}

.oh-story__category--intro {
  margin-bottom: 0;

}

.oh-story__title {
  margin: 0;
}

.oh-story__subtitle {
  margin: 0;
  color: rgba(5, 0, 34, 0.75);
}

.oh-story__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 40px);
}

.oh-story__card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 20px;
  display: grid;
  gap: 1.25rem;
}

.oh-story__heading {
  margin: 0;
}

.oh-story__text,
.oh-story__quote {
  margin: 0;
  color: #050022;
  line-height: 18px;
  font-family: "aptos", sans-serif;
}

.oh-story__text span {
  font-family: inherit;
}

.oh-story__text p {
  line-height: 18px;
}

.oh-story__quote {
  position: relative;
  padding-left: 1.5rem;
  font-style: italic;
}

.oh-story__quote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 2rem;
  color: rgba(12, 194, 195, 0.4);
}

.oh-story__signature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.oh-story__signature-logo {
  max-width: 80px;
  height: auto;
}

.oh-story__signature-text {
  display: grid;
  gap: 0.25rem;
}

.oh-story__signature-name {
  font-weight: 600;
}

.oh-story__signature-role {
  color: rgba(5, 0, 34, 0.6);
}

.oh-story__stat {
  display: grid;
  gap: 10px;
  align-items: start;
}

.oh-story__stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.oh-story__stat-icon.is-empty {
  background: transparent;
  border: 1px dashed rgba(12, 194, 195, 0.25);
}

.oh-story__stat-metric {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #12329E;
}

.oh-story__stat-subtitle {
}

.oh-story__media {
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  min-height: 200px;
}

.oh-story__media-img,
.oh-story__media-video {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.oh-story__cta {
  text-align: center;
}

.oh-story__cta-btn {
  min-width: clamp(200px, 28vw, 260px);
}

/* Ordering on mobile */
.oh-story__card--main { order: 1; }
.oh-story__media--main { order: 2; }
.oh-story__card--secondary { order: 3; }
.oh-story__media--secondary { order: 4; }

.oh-story--main-media-left .oh-story__media--main { order: 1; }
.oh-story--main-media-left .oh-story__card--main { order: 2; }

.oh-story--secondary-media-left .oh-story__media--secondary { order: 3; }
.oh-story--secondary-media-left .oh-story__card--secondary { order: 4; }

.oh-story__card--secondary {
  grid-template-rows: 20px auto;
  gap: 10px;
}

.oh-story__card--secondary .oh-story__category {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .oh-story {
  } 

  .oh-story__grid {
    gap: clamp(32px, 4vw, 48px);
  }
}

@media (min-width: 1024px) {
  .oh-story__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(36px, 4vw, 56px);
  }

  .oh-story__card--main {
    grid-column: 1 / span 2;
    grid-row: 1;
    grid-template-rows: auto auto 1fr;
    gap: 0;
  }

  .oh-story__media--main {
    grid-column: 3 / span 1;
    grid-row: 1;
  }

  .oh-story__card--secondary {
    grid-column: 1 / span 1;
    grid-row: 2;
    grid-template-rows: 20px auto;
    gap: 20px;
  }

  .oh-story__card--secondary .oh-story__category {
    margin-bottom: 0;
  }

  .oh-story__media--secondary {
    grid-column: 2 / span 2;
    grid-row: 2;
    max-height: 350px;
  }

  .oh-story--main-media-left .oh-story__media--main {
    grid-column: 1 / span 1;
  }

  .oh-story--main-media-left .oh-story__card--main {
    grid-column: 2 / span 2;
  }

  .oh-story--secondary-media-left .oh-story__media--secondary {
    grid-column: 1 / span 2;
  }

  .oh-story--secondary-media-left .oh-story__card--secondary {
    grid-column: 3 / span 1;
  }

  .oh-story__text, .oh-story__text p {
    line-height: 20px;
  }

  .oh-story__category {
    margin-bottom: 4%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oh-story {
    transition: none;
  }
}
