/* MC Team — Frontend Grid */

.mc-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
}

.mc-team-card {
    text-align: left;
}

.mc-team-headshot {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.mc-team-headshot-placeholder {
    background: var(--mc-gray, #DDE5ED);
}

.mc-team-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    font-weight: 600;
    margin: 0.6em 0 0;
    color: var(--mc-text-dark, #1A1A2E);
    line-height: 1.35;
}

.mc-team-name em {
    font-weight: 400;
    font-style: italic;
    font-family: 'Lora', Georgia, serif;
}

.mc-team-location {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.95em;
    color: var(--mc-text-mid, #4A5568);
    margin: 0.15em 0 0;
    line-height: 1.5;
}

.mc-team-social {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0.75em 0 0;
    padding: 0;
}

.mc-team-social li {
    margin: 0;
    padding: 0;
}

.mc-team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--mc-blue, #004B87);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}

.mc-team-social a:hover {
    background: var(--mc-navy, #041E42);
}

.mc-team-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .mc-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5em;
    }
}

@media (max-width: 480px) {
    .mc-team-grid {
        grid-template-columns: 1fr;
        gap: 2em;
    }
}
