.team-page {
    background: linear-gradient(180deg, #fff8eb 0%, #ffffff 18%, #fbf7ef 100%);
}

.team-header-banner {
    position: relative;
    overflow: hidden;
    padding: 84px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(135deg, rgba(0, 60, 110, 0.94), rgba(17, 134, 89, 0.82));
}

.team-header-banner::before,
.team-header-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.team-header-banner::before {
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.12), transparent 22%),
        radial-gradient(circle at 82% 18%, rgba(225, 160, 53, 0.18), transparent 18%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 17%);
    opacity: 0.7;
}

.team-header-banner::after {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 34%);
}

.team-header-banner .container-1200 {
    position: relative;
    z-index: 1;
}

.team-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

.team-page-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: #fff;
}

.team-page-subtitle {
    margin: 12px 0 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.02rem;
}

.team-breadcrumb {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
}

.team-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.team-intro {
    max-width: 860px;
    margin: 0 auto 26px;
}

.tp-subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
}

.tp-heading {
    margin: 10px 0 18px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--ink);
}

.tp-heading span {
    color: var(--primary);
}

.team-intro p,
.team-card-content p {
    color: var(--muted);
    line-height: 1.8;
}

.team-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 40px rgba(0, 60, 110, 0.12);
}

.team-card-media {
    aspect-ratio: 1 / 1.02;
    background: linear-gradient(135deg, rgba(0, 60, 110, 0.05), rgba(225, 160, 53, 0.16));
}

.team-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.team-card-content {
    padding: 22px;
}

.team-card-content h3,
.team-cta-wrap h3 {
    margin: 0 0 6px;
    font-family: var(--font-display);
    color: var(--ink);
}

.team-role {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.team-cta {
    padding: 0 0 90px;
}

.team-cta-wrap {
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, #003c6e, #0f7398);
    color: #fff;
    text-align: center;
    box-shadow: 0 30px 44px rgba(0, 60, 110, 0.18);
}

.team-cta-wrap h3 {
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.team-cta-wrap p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1120px) {
    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .team-header-banner {
        padding: 70px 0 42px;
    }

    .team-header-flex,
    .team-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .team-card-content,
    .team-cta-wrap {
        padding: 22px;
        border-radius: 24px;
    }
}
