/* ============================================================
   SGLS ABOUT SECTION — sgls-about.css
   Add to: sgls-child-fixed/sgls-about.css

   WCAG 2.1 AA contrast ratios documented inline.
   ============================================================ */


/* ── Section shell ──────────────────────────────────────────── */

.sgls-about {
    background: #ffffff;
    padding: 56px 0 52px;
    border-bottom: 1px solid #E5EDE7;
}

.sgls-about__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 44px;
}


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

.sgls-about__header {
    margin-bottom: 24px;
}

/* Eyebrow — contrast: #007A3D on #fff = 5.2:1 ✅ */
.sgls-about__eyebrow {
    font-family: "Source Sans 3", "Helvetica Neue", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #007A3D;
    margin: 0 0 8px;
}

/* H2 — contrast: #1A1A1A on #fff = 18.1:1 ✅ */
.sgls-about__title {
    font-family: "Merriweather", Georgia, serif;
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.2;
}


/* ── Body ───────────────────────────────────────────────────── */

.sgls-about__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


/* ── Two-column text ────────────────────────────────────────── */

.sgls-about__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Body text — contrast: #555 on #fff = 7.0:1 ✅ */
.sgls-about__col {
    font-family: "Source Sans 3", "Helvetica Neue", sans-serif;
    font-size: 15px;
    color: #555555;
    line-height: 1.75;
    margin: 0;
}


/* ── Footer row: pills + link ───────────────────────────────── */

.sgls-about__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}


/* ── Credential pills ───────────────────────────────────────── */

.sgls-about__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Pill — contrast: #005C2E on #EBF5EF = 7.1:1 ✅ */
.sgls-about__pill {
    font-family: "Source Sans 3", "Helvetica Neue", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #005C2E;
    background: #EBF5EF;
    border: 1.5px solid #C0DEC8;
    border-radius: 20px;
    padding: 5px 14px;
    white-space: nowrap;
}


/* ── Learn more link ────────────────────────────────────────── */
/* Contrast: #007A3D on #fff = 5.2:1 ✅ */

.sgls-about__link {
    font-family: "Source Sans 3", "Helvetica Neue", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #007A3D;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1.5px solid transparent;
    padding-bottom: 2px;
    white-space: nowrap;
    transition: border-color 0.15s, gap 0.15s;
}

.sgls-about__link:hover {
    border-bottom-color: #007A3D;
    gap: 8px;
}

.sgls-about__link:focus-visible {
    outline: 3px solid #007A3D;
    outline-offset: 3px;
}


/* ── RESPONSIVE: Tablet (≤900px) ────────────────────────────── */

@media (max-width: 900px) {

    .sgls-about__inner {
        padding: 0 28px;
    }

    .sgls-about {
        padding: 44px 0 40px;
    }

    .sgls-about__cols {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}


/* ── RESPONSIVE: Mobile (≤600px) ────────────────────────────── */

@media (max-width: 600px) {

    .sgls-about__inner {
        padding: 0 20px;
    }

    .sgls-about {
        padding: 36px 0 32px;
    }

    .sgls-about__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .sgls-about__col {
        font-size: 14px;
    }
}


/* ── REDUCED MOTION ─────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .sgls-about__link {
        transition: none;
    }
}
