/* ==========================================================
   about.css — About-us page-specific styles
   ========================================================== */

/* --------------------------------------------------------
   About the service section
   -------------------------------------------------------- */
.about-intro__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* --------------------------------------------------------
   Team section
   -------------------------------------------------------- */
.team__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 24rem;
    margin-inline: auto;
}

@media (min-width: 48rem) {
    .team__grid {
        /* Scale to multi-column when more team members are added */
        max-width: none;
        grid-template-columns: repeat(auto-fit, minmax(18rem, 24rem));
        justify-content: center;
    }
}