/* ============================================================
   lib/styles/components/persona_grid.css
   PERSONA GRID SECTION
   Homepage block introducing Nurses, Students, Doctors, etc.
   ============================================================ */

.persona-grid-section {
    background-color: var(--color-off-white);
    padding: 80px 0;
}

/* Shared max-width wrapper */
.persona-grid-section__container {
    max-width: var(--max-content-width, 1280px); /* Aligned with standard layout */
    margin: 0 auto;
    padding: 0 48px;
}

/* ── Section header ───────────────────────────────────────── */

.persona-grid-section__header {
    text-align: center;
    margin-bottom: 56px;
}

.persona-grid-section__title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-trust-blue);
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin: 0 0 16px 0;
}

.persona-grid-section__subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-soft-grey);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

/* ── Responsive overrides ─────────────────────────────────── */

/* Tablet: 640px – 1023px */
@media screen and (min-width: 640px) and (max-width: 1023px) {
    .persona-grid-section {
        padding: 64px 0;
    }
    .persona-grid-section__container {
        padding: 0 32px;
    }
    .persona-grid-section__title {
        font-size: 32px;
    }
    .persona-grid-section__subtitle {
        font-size: 16px;
    }
}

/* Mobile: 0px – 639px */
@media screen and (max-width: 639px) {
    .persona-grid-section {
        padding: 48px 0;
    }
    .persona-grid-section__container {
        padding: 0 24px;
    }
    .persona-grid-section__header {
        margin-bottom: 40px;
    }
    .persona-grid-section__title {
        font-size: 28px;
    }
    .persona-grid-section__subtitle {
        font-size: 16px;
    }
}