.yuba-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

    .yuba-team-spacer {
        display: none;
    }
}

.yuba-team-grid .yuba-team-card-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.yuba-team-grid .yuba-team-card-name {
    margin: 16px 0 6px;
    color: #00536E;
    font-family: Cambria, serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.yuba-team-grid .yuba-team-card-title {
    margin: 0 0 14px;
    color: #1A0E12;
    font-family: Cambria, serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.yuba-team-grid .yuba-team-read-bio {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #E9AA25;
    font-family: 'Proxima Nova', system-ui, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.yuba-team-bio-content {
    display: none;
}

/* Modal overlay */
.yuba-team-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
}

.yuba-team-modal-overlay.is-open {
    display: flex;
}

/* Modal card */
.yuba-team-modal {
    background: #fff;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}

.yuba-team-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    line-height: 1;
    padding: 4px 8px;
}

/* Modal content */
.yuba-team-modal-body .yuba-team-modal-photo {
    display: block;
    width: 200px;
    aspect-ratio: 1;
    object-fit: cover;
    margin: 0 auto 20px;
}

.yuba-team-modal-body h3 {
    margin: 0 0 6px;
    color: #00536E;
    font-family: Cambria, serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.yuba-team-modal-body .yuba-team-modal-title {
    margin: 0 0 20px;
    color: #1A0E12;
    font-family: Cambria, serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

.yuba-team-modal-body .yuba-team-modal-bio {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}
