/* ===================== */
/* Layout helpers        */
/* ===================== */
.mtt-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mtt-inner--narrow {
    max-width: 800px;
}

/* ===================== */
/* 1. Page Hero          */
/* ===================== */
.mtt-hero {
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 4rem 1rem;
    text-align: center;
}

.mtt-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.mtt-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* ===================== */
/* 2. Intro              */
/* ===================== */
.mtt-intro {
    background-color: var(--color-white);
    padding: 4rem 1rem;
    text-align: center;
}

.mtt-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-black);
}

/* ===================== */
/* 3. Team Grid          */
/* ===================== */
.mtt-team {
    background-color: var(--color-white);
    padding: 0 1rem 4rem;
}

.mtt-group {
    margin-bottom: 3rem;
}

.mtt-group__heading {
    font-size: 1.3rem;
    color: var(--color-orange);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-light-grey);
}

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

.team-card {
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.team-photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background-color: var(--color-light-grey);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.team-photo-placeholder span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-orange);
}

.team-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.team-title {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ===================== */
/* 4. Join Us CTA        */
/* ===================== */
.mtt-cta {
    background-color: var(--color-light-grey);
    padding: 4rem 1rem;
    text-align: center;
}

.mtt-cta h2 {
    font-size: 2rem;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.mtt-cta p {
    font-size: 1.05rem;
    color: var(--color-black);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ===================== */
/* Mobile Responsive     */
/* ===================== */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mtt-hero h1 {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}
