/* Team Profile Cards — v1.7.0 — Horizontal Layout, Top Half Only */
.tpc-wrapper {
    background-color: #FFFFFF;
    padding: 80px 24px;
    max-width: 1000px;
    margin: 0 auto;
    font-family: sans-serif;
}

.tpc-header {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.tpc-title {
    font-size: 36px;
    font-weight: 700;
    color: #1E3A5F;
    margin: 0;
}

.tpc-intro {
    font-size: 18px;
    color: #5a5a5a;
    margin: 0;
    max-width: 700px;
    line-height: 1.6;
}

.tpc-cards-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tpc-card {
    display: flex;
    flex-direction: row;
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    align-items: stretch;
}

.tpc-portrait {
    width: 35%;
    flex-shrink: 0;
    overflow: hidden;
    max-height: 280px;
}

.tpc-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.tpc-content {
    width: 65%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tpc-name {
    font-size: 28px;
    font-weight: 700;
    color: #1E3A5F;
    margin: 0 0 8px 0;
}

.tpc-role {
    font-size: 16px;
    color: #888888;
    margin: 0 0 24px 0;
}

.tpc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tpc-chip {
    background-color: #FFF0E8;
    color: #EC6F1F;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tpc-wrapper {
        padding: 60px 16px;
    }

    .tpc-title {
        font-size: 28px;
    }

    .tpc-card {
        flex-direction: column;
    }

    .tpc-portrait {
        width: 100%;
        max-height: 250px;
    }

    .tpc-content {
        width: 100%;
        padding: 32px 24px;
    }

    .tpc-name {
        font-size: 24px;
    }
}