﻿.role-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.team-card {
    background: #1e293b;
    padding: 18px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: 0.15s ease-in-out;
    color: #e2e8f0;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.team-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 3px solid #334155;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-notes summary {
    cursor: pointer;
    color: #38bdf8;
    font-weight: 600;
}

.team-notes p {
    margin-top: 8px;
    font-size: 0.95rem;
    color: #94a3b8;
}
