.page-hero {
    border-left: 5px solid var(--accent);
}

.card-section {
    border-left: 3px solid rgba(30, 132, 194, 0.35);
}

.teams-section {
    margin-top: 1rem;
}

.teams-grid {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.95rem;
}

.team-card {
    padding: 0.95rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.74), rgba(224, 231, 239, 0.96));
    box-shadow: 0 8px 18px rgba(58, 69, 78, 0.08);
}

.team-media {
    width: 86px;
    height: 86px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 0.75rem;
    background: radial-gradient(circle at 30% 30%, rgba(30, 132, 194, 0.24), rgba(30, 132, 194, 0.08));
    border: 1px solid rgba(30, 132, 194, 0.28);
    overflow: hidden;
}

.team-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-media svg {
    width: 58px;
    height: 58px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.team-card h3 {
    font-family: "Barlow Condensed", "Segoe UI", sans-serif;
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.team-card p {
    color: var(--muted);
}

@media (min-width: 768px) {
    .teams-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .teams-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
