/* ── Team Page ── */
    .team-hero {
      background: linear-gradient(135deg, #080f14 0%, #1c5266 60%, #226673 100%);
      padding: 220px 0 80px;
      text-align: center;
      color: #fff;
    }
    .team-hero h1 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .team-hero h1 span { color: #7ea6ac; }
    .team-hero p {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.05rem;
      color: rgba(255,255,255,0.72);
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .team-section {
      background: #f4f7f8;
      padding: 72px 0 100px;
    }

    .team-group { max-width: 1140px; margin: 0 auto; padding: 0 24px 56px; }
    .team-group-label {
      font-family: 'Oswald', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #226673;
      border-left: 3px solid #7ea6ac;
      padding-left: 12px;
      margin-bottom: 28px;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 28px;
    }

    /* ── Card ── */
    .team-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(34,102,115,0.09);
      overflow: hidden;
      position: relative;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 40px rgba(34,102,115,0.18);
    }

    /* Photo area */
    .team-card-photo-wrap {
      position: relative;
      width: 100%;
      padding-top: 100%; /* square crop */
      overflow: hidden;
      background: linear-gradient(135deg, #226673, #7ea6ac);
    }
    .team-card-photo-wrap img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      filter: grayscale(100%);
      transition: transform 0.4s ease;
    }
    .team-card:hover .team-card-photo-wrap img {
      transform: scale(1.05);
    }

    /* Tenure overlay */
    .team-tenure-overlay {
      position: absolute;
      inset: 0;
      background: rgba(34,102,115,0.88);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      padding: 16px;
      text-align: center;
    }
    .team-card:hover .team-tenure-overlay { opacity: 1; }
    .tenure-years {
      font-family: 'Oswald', sans-serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: #fff;
      line-height: 1;
    }
    .tenure-label {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      margin-top: 6px;
    }
    .tenure-since {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.55);
      margin-top: 4px;
    }

    /* Card body */
    .team-card-body {
      padding: 18px 18px 20px;
      text-align: center;
    }
    .team-card-name {
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: #1a1a2e;
      letter-spacing: 0.4px;
      margin-bottom: 3px;
    }
    .team-card-title {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      color: #226673;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    /* Photo placeholder (no image) */
    .team-photo-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .team-photo-placeholder svg { opacity: 0.4; }

    @media (max-width: 600px) {
      .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    }