.about-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #f7fbff, #eef5fb);
  border-bottom: 1px solid #e2eaf3;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: center;
}

.about-hero-copy h1 {
  color: #0d1626;
  font-size: clamp(38px, 5vw, 62px);
}

.about-hero-copy p,
.section-copy {
  color: #5e6d80;
  font-size: 17px;
}

.about-hero-media {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid #e2eaf3;
  box-shadow: var(--shadow);
  background: #fff;
}

.about-hero-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.about-feature-panel,
.about-feature-panel img {
  min-height: 500px;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 18px;
}

.about-gallery figure {
  margin: 0;
  border: 1px solid #e2eaf3;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 36px rgba(13, 22, 38, .06);
}

.about-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.about-gallery figcaption {
  padding: 14px 16px;
  color: #243045;
  font-weight: 800;
  font-size: 14px;
}

.about-video-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.about-video-card {
  border-radius: 28px;
  overflow: hidden;
  background: #08101c;
  border: 1px solid #e2eaf3;
  box-shadow: var(--shadow);
}

.about-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #08101c;
}

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

  .about-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .about-hero {
    padding: 52px 0;
  }

  .about-hero-media img,
  .about-gallery img {
    height: 280px;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }
}
