/* ============================================
   VERITECH MECHANICAL — ABOUT PAGE STYLES
   ============================================ */

/* --- About Hero --- */
.about-hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(105deg, rgba(14,31,43,0.92) 0%, rgba(14,31,43,0.78) 45%, rgba(14,31,43,0.50) 100%),
    url('../images/veritech-aerial.jpg');
  background-size: cover;
  background-position: 60% 55%;
  background-repeat: no-repeat;
  min-height: 480px;
}

/* --- Team Section --- */
.team-section {
  padding: var(--section-pad) 0;
  background: var(--navy);
}

.team-header {
  margin-bottom: 64px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: background var(--transition);
}

.team-card:hover {
  background: rgba(255,255,255,0.05);
}

.team-card-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 3px solid var(--orange);
  position: relative;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-card-info {
  padding: 32px;
}

.team-card-role {
  margin-bottom: 8px;
}

.team-card-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.team-card-divider {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin: 20px 0;
}

.team-card-bio {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.8;
}

/* reuse from services */
.cta-band { padding: 100px 0; background: var(--navy-mid); border-top: 1px solid rgba(237,130,35,0.15); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-heading { font-family: var(--font-display); font-size: clamp(40px, 6vw, 64px); font-weight: 900; text-transform: uppercase; line-height: 0.95; color: var(--white); margin-top: 12px; letter-spacing: 0.04em; }
.cta-heading span { color: var(--orange); }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* --- Responsive --- */
@media (max-width: 960px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}

/* --- LinkedIn Team Link --- */
.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-top: 20px;
  transition: color var(--transition);
}
.team-linkedin:hover { color: #0a66c2; }
