/* =========================================================
   TEAM
========================================================= */

.team-section {
    background: #f8fafc;

    color: #0f172a;
}

.team-container {
    max-width: 1152px;

    margin: 0 auto;

    padding: 80px 16px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

    align-items: center;
}

.team-text h2 {
    margin-top: 8px;

    color: #0f172a;

    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;

    letter-spacing: -0.03em;
}

.team-role {
    margin-top: 4px;

    color: #2563eb;

    font-weight: 700;

    letter-spacing: 0;
}

.team-text > p:not(.team-role) {
    margin-top: 16px;

    color: #475569;

    font-size: 16px;
    line-height: 1.7;

    letter-spacing: 0;
}

.team-button {
    margin-top: 24px;

    height: 44px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;
    gap: 8px;

    border-radius: 8px;

    background: #2563eb;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0;
}

.team-button:hover {
    background: #1d4ed8;

    color: #ffffff;

    text-decoration: none;
}

.team-image {
    overflow: hidden;

    aspect-ratio: 4 / 5;

    border-radius: 16px;

    background: #e2e8f0;
}

.team-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center 55%;
}

@media (max-width: 768px) {
    .team-container {
        grid-template-columns: 1fr;
    }

    .team-text h2 {
        font-size: 34px;
    }
}