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

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

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

.profile-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    background: #eaeaea;
}

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

.team-detail-hero h1 {
    font-size: 40px;
    margin-bottom: 8px;
}

.team-detail-hero span {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.95;
}

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

/* Summary */
.team-summary {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 60px;
    color: #444;
}

/* Sections */
.team-section {
    margin-bottom: 50px;
}

.team-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
    position: relative;
}

.team-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #00bf63;
    margin-top: 8px;
}

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

/* Lists */
.expertise-list,
.responsibility-list {
    padding-left: 20px;
}

.expertise-list li,
.responsibility-list li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

/* Actions */
.team-contact {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .team-detail-hero h1 {
        font-size: 32px;
    }

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

    .team-summary {
        font-size: 16px;
    }

    .team-section h2 {
        font-size: 22px;
    }
}

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

    .profile-image {
        width: 120px;
        height: 120px;
    }

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

    .team-detail-hero span {
        font-size: 14px;
    }
}
