/* =============================================================
   ABOUT.CSS — "We're The Connectors" section
   Full-width video on top, text card overlapping at bottom
============================================================= */

#about {
  position: relative;
}

/* Full-width video */
.about-video-wrap {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.about-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Text card overlaps video */
.about-text-card {
  position: relative;
  margin: -60px 80px 0;
  background: var(--white);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 48px;
  z-index: 2;
}

.about-text-left h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  text-wrap: balance;
  margin-bottom: 20px;
}

/* Gold bar matches heading width automatically */
.about-text-left .gold-bar {
  width: 100%;
  max-width: 240px;
  height: 2px;
  background: var(--gold);
  margin-top: 20px;
}

.about-text-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-text-right p {
  font-size: 12px;
  line-height: 1.95;
  color: var(--mid);
  margin-bottom: 14px;
}

.about-text-right strong {
  color: var(--dark);
  font-weight: 600;
}

.about-cta {
  margin-top: 28px;
  align-self: flex-start;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-video-wrap {
    height: 320px;
  }

  .about-text-card {
    grid-template-columns: 1fr;
    margin: -60px 16px 0;
    padding: 32px 24px;
  }

  .about-cta {
    margin-top: 20px;
  }
}