/* SINGLE-TEAM-MEMBER.CSS - Page Scoped Styles */

/* ── Reset & Protection ── */
  body { font-family:'Avenir Next','Avenir',sans-serif!important; margin:0!important; background:#fff!important; color:#3d4a5c; }
  footer a,header a { text-decoration:none!important; color:inherit!important; }
  footer ul { list-style:none!important; padding:0!important; margin:0!important; }
  footer h4 { font-size:1rem!important; font-weight:700!important; margin-bottom:1rem!important; color:#000!important; }
  footer p  { margin:0!important; }
  footer > div { display:grid!important; }
  footer .flex { display:flex!important; }
  footer > div.border-t { text-align:center!important; }
  header { text-align:left!important; }

  /* ── Team Single Main Scope ── */
  #team-single-scope { background:#ffffff; overflow-x:hidden; min-height: 80vh; }

  #team-single-scope h1,
  #team-single-scope h2,
  #team-single-scope h3,
  #team-single-scope .heading-font {
    font-family: 'Urbanist', 'Helvetica Neue', sans-serif !important;
    font-weight: 700;
  }
  #team-single-scope p,
  #team-single-scope span,
  #team-single-scope a,
  #team-single-scope .body-font {
    font-family: 'Avenir Next', 'Avenir', sans-serif;
  }

  /* ── 1. Header Banner / Breadcrumb Section ── */
  #team-single-scope .team-single-hero {
    background: linear-gradient(135deg, rgba(13, 56, 211, 0.9) 0%, rgba(7, 37, 156, 0.95) 100%),
                url('../../images/Group-1261153213.png') center/cover no-repeat !important;
    padding: 35px 0 100px;
    position: relative;
    color: #ffffff;
  }
  #team-single-scope .team-single-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
  }
  #team-single-scope .team-breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
  }
  #team-single-scope .team-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  #team-single-scope .team-breadcrumb a:hover {
    color: #ffffff;
  }
  #team-single-scope .team-breadcrumb span {
    margin: 0 8px;
    opacity: 0.6;
  }

  /* ── 2. Floating Profile Card (50% Overlap) ── */
  #team-single-scope .team-profile-card-container {
    position: relative;
    margin-top: -65px;
    z-index: 10;
    margin-bottom: 50px;
  }
  #team-single-scope .team-profile-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
  }
  #team-single-scope .team-profile-info {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  #team-single-scope .team-avatar-lg {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    background-color: transparent;
    transition: all 0.3s ease;
  }
  #team-single-scope .team-avatar-lg:hover,
  #team-single-scope .team-profile-card:hover .team-avatar-lg {
    background-color: #0d38d3 !important;
    border-color: #0d38d3 !important;
    box-shadow: 0 8px 24px rgba(13, 56, 211, 0.35) !important;
  }
  #team-single-scope .team-name-title h1 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
  }
  #team-single-scope .team-name-title p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
  }
  #team-single-scope .team-linkedin-btn {
    color: #0a66c2;
    font-size: 32px;
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-flex;
    align-items: center;
  }
  #team-single-scope .team-linkedin-btn:hover {
    transform: scale(1.15);
  }

  /* ── 3. Main Content Body ── */
  #team-single-scope .team-content-section {
    padding-bottom: 90px;
  }
  #team-single-scope .team-bio-content {
    font-size: 17px;
    line-height: 1.85;
    color: #475569;
    max-width: 920px;
    margin: 0 auto;
  }
  #team-single-scope .team-bio-content p {
    margin-bottom: 28px;
  }

  /* ── Responsive Rules ── */
  @media (max-width: 768px) {
    #team-single-scope .team-profile-card {
      flex-direction: column;
      align-items: flex-start;
      padding: 24px 20px;
    }
    #team-single-scope .team-profile-info {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }
    #team-single-scope .team-avatar-lg {
      width: 90px;
      height: 90px;
    }
    #team-single-scope .team-name-title h1 {
      font-size: 24px;
    }
    #team-single-scope .team-bio-content {
      font-size: 15.5px;
    }
  }

