/* =========================
   TEAM PAGE
========================= */
.team-page {
    width: 100%;
    background: #ffffff;
    color: #192850;
}

/* Hero */
.team-hero {
    padding: 90px 20px 70px;
    background: linear-gradient(135deg, #192850 0%, #00bf63 100%);
    color: #fff;
    text-align: center;
}

.team-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-hero h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.team-hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* Container */
.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Intro */
.team-intro {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.team-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.team-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

/* Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

/* Card (Anchor) */
.team-card {
    background: #f7f9fc;
    border-radius: 18px;
    padding: 25px 20px 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

/* Image */
.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    background: #eaeaea;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text */
.team-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-card span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #00bf63;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Note */
.team-note {
    max-width: 800px;
    margin: 70px auto 0;
    text-align: center;
}

.team-note p {
    font-size: 16px;
    color: #444;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-hero h1 {
        font-size: 38px;
    }

    .team-intro h2 {
        font-size: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-image {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 576px) {
    .team-hero {
        padding: 70px 15px 55px;
    }

    .team-hero h1 {
        font-size: 32px;
    }

    .team-hero p {
        font-size: 15px;
    }

    .team-container {
        padding: 60px 15px;
    }

    .team-intro h2 {
        font-size: 26px;
    }

    .team-intro p {
        font-size: 15px;
    }
}
