/* About page specific styles */

.about-hero {
  padding: 170px 0 48px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 0.94fr 0.86fr;
  gap: 46px;
  align-items: start;
}

@media (max-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }
}

.about-hero .hero-title {
  max-width: none;
  font-size: clamp(2.7rem, 3.9vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 22px;
}

.about-hero .eyebrow::after {
  display: none;
}

.about-hero .btn {
  padding: 7px 30px;
  margin-top: 10px;
}

.about-hero .reveal:first-child {
  padding-top: 10px;
}

.about-hero-media {
  justify-self: end;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1/1.03;
  overflow: hidden;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.about-intro {
  padding: 38px 0 36px;
}

.about-intro .container {
  display: block;
}

.about-intro p {
  max-width: 100%;
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: left;
}

.story-section {
  position: relative;
  padding: 34px 0 96px;
  z-index: 1;
}

.story-section::before,
.story-section::after {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 15%;
  width: 40vw;
  z-index: -1;
  pointer-events: none;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.35;
}
.story-section::before {
  left: 0;
  background-image: url('../img/glow.png');
  background-position: left top;
}
.story-section::after {
  left: 0;
  background-image: url('../img/bgglow.png');
  background-position: left bottom;
}

.eyebrow-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.eyebrow-header .eyebrow {
  margin-bottom: 0;
  width: 100%;
}
.eyebrow-header .eyebrow::after {
  flex-grow: 1;
  width: auto;
  background: #3c4b8b;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: start;
}

.story-grid.reverse {
  grid-template-columns: 0.96fr 1.04fr;
}

@media (max-width: 900px) {
  .story-grid,
  .story-grid.reverse {
    grid-template-columns: 1fr;
  }
}

.story-media {
  overflow: hidden;
  background: var(--bg-panel);
}

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

.story-grid .story-media {
  aspect-ratio: 1.15/1;
}

.story-grid.reverse .story-media {
  aspect-ratio: 1.15/1;
}

.story-media-thermal {
  background: transparent;
  align-self: center;
}

.story-media-thermal img {
  object-fit: contain;
  object-position: right center;
}

.story-copy .eyebrow {
  margin-bottom: 12px;
}

.story-copy .section-title {
  max-width: none;
  font-size: clamp(1.75rem, 2.7vw, 2.5rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.story-copy p {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.78;
}

.story-grid.reverse .story-copy {
  padding-top: 6px;
}

@media (max-width: 900px) {
  .about-hero {
    padding-top: 150px;
  }
  .about-hero-media {
    width: min(100%, 420px);
    justify-self: start;
  }
}
