/* =========================================================
   BCI Team Page
   Page ID: 13
   ========================================================= */

body.page-id-13 .bci-team {
    width: 100%;
}

body.page-id-13 .bci-team-section {
    padding: 80px 0;
}

body.page-id-13 .bci-team-section--alt {
    background: #f1f2ff;
}

body.page-id-13 .bci-team-container {
    width: calc(100% - 80px);
    max-width: 1440px;
    margin: 0 auto;
}

body.page-id-13 .bci-team-heading {
    margin-bottom: 40px;
}

body.page-id-13 .bci-team-heading::before {
    content: "";
    display: block;
    width: 52px;
    height: 6px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #fdbf2d;
}

body.page-id-13 .bci-team-heading h2 {
    margin: 0;
    color: #00004e;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.1;
    font-weight: 400;
}

body.page-id-13 .bci-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}

body.page-id-13 .bci-team-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 78, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 78, 0.06);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

body.page-id-13 .bci-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 10px 20px rgba(0, 0, 78, 0.13);
}

body.page-id-13 .bci-team-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eef0f6;
}

body.page-id-13 .bci-team-photo img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: center;
}

body.page-id-13 .bci-team-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 24px 26px;
}

body.page-id-13 .bci-team-card h3 {
    margin: 0 0 8px;
    color: #00004e;
    font-size: clamp(23px, 1.8vw, 30px);
    line-height: 1.1;
    font-weight: 400;
}

body.page-id-13 .bci-team-title {
    margin: 0;
    color: #111;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

/* Tablet */
@media (max-width: 1000px) {
    body.page-id-13 .bci-team-section {
        padding: 64px 0;
    }

    body.page-id-13 .bci-team-container {
        width: calc(100% - 48px);
    }

    body.page-id-13 .bci-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    body.page-id-13 .bci-team-section {
        padding: 48px 0;
    }

    body.page-id-13 .bci-team-container {
        width: calc(100% - 32px);
    }

    body.page-id-13 .bci-team-heading {
        margin-bottom: 28px;
    }

    body.page-id-13 .bci-team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    body.page-id-13 .bci-team-card-content {
        padding: 22px;
    }
}
