/* About-side */

body > main.container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

main .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Header ────────────────────────────────────────────── */

.ab-header {
    background: var(--dark-blue);
    padding: 64px 0 56px;
}

.ab-header-inner {
    max-width: 760px;
}

.ab-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.ab-header h1 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2.2rem;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 22px;
}

.ab-header-lead {
    font-size: 1.04rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px;
}

.ab-header-body {
    font-size: 0.96rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.62);
    margin: 0 0 14px;
}

.ab-header-body:last-child {
    margin-bottom: 0;
}

/* ── Sections ──────────────────────────────────────────── */

.ab-section {
    padding: 64px 0;
    background: #ffffff;
}

.ab-section--alt {
    background: var(--bg);
}

.ab-section-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--primary-cyan);
    margin-bottom: 10px;
}

.ab-section h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.7rem;
    color: var(--text-dark);
    margin: 0 0 36px;
    line-height: 1.3;
}

/* ── Cards (three-up) ──────────────────────────────────── */

.ab-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ab-card {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 28px 26px;
}

.ab-section--alt .ab-card {
    background: #ffffff;
}

.ab-card h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0 0 12px;
    line-height: 1.35;
}

.ab-card p,
.ab-card ul {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.ab-card ul {
    padding-left: 18px;
}

.ab-card ul li {
    margin-bottom: 6px;
}

.ab-card ul li:last-child {
    margin-bottom: 0;
}

/* ── Two-column content layout ─────────────────────────── */

.ab-content-layout {
    display: flex;
    gap: 56px;
    align-items: flex-start;
}

.ab-content-text {
    flex: 1.4;
}

.ab-content-text p {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.78;
    margin: 0 0 16px;
}

.ab-content-text p:last-child {
    margin-bottom: 0;
}

.ab-content-aside {
    flex: 1;
}

/* ── CTA ───────────────────────────────────────────────── */

.ab-cta {
    background: var(--dark-blue);
    padding: 64px 0;
    text-align: center;
}

.ab-cta h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin: 0 0 20px;
}

.ab-btn-primary {
    display: inline-block;
    background: var(--primary-cyan);
    color: #ffffff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.ab-btn-primary:hover {
    background: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ── Mobile ────────────────────────────────────────────── */

@media (max-width: 768px) {
    .ab-header {
        padding: 40px 0 36px;
    }

    .ab-header h1 {
        font-size: 1.55rem;
    }

    .ab-header-lead {
        font-size: 0.96rem;
    }

    .ab-section {
        padding: 44px 0;
    }

    .ab-cards {
        grid-template-columns: 1fr;
    }

    .ab-content-layout {
        flex-direction: column;
        gap: 28px;
    }

    .ab-section h2 {
        font-size: 1.35rem;
        margin-bottom: 24px;
    }

    .ab-cta h2 {
        font-size: 1.4rem;
    }
}
