﻿/* =========================================================
   GEDIAN SPORTS - PUBLIC ABOUT PAGE
   Mobile-first public gateway
   ========================================================= */

.gedian-about-page {
    --about-green: #5B8C3B;
    --about-green-dark: #416d29;
    --about-green-soft: #eff6eb;
    --about-navy: #071a33;
    --about-text: #24323f;
    --about-muted: #75828d;
    --about-border: #e1e8df;
    --about-bg: #f7f9f7;
    --about-gold: #c79b31;
    min-height: 100vh;
    padding: 8px 0 40px;
    background: var(--about-bg);
    color: var(--about-text);
    font-family: "Tajawal", sans-serif;
}

.about-shell {
    width: min(1180px, calc(100% - 14px));
    margin: 0 auto;
}

.gedian-about-page a {
    text-decoration: none;
}

.about-hero {
    overflow: hidden;
    border: 1px solid #dce5d9;
    border-radius: 18px;
    background: radial-gradient(circle at 12% 22%, rgba(91,140,59,.18), transparent 18rem), linear-gradient(135deg, #fff, #f4f8f2);
    box-shadow: 0 8px 26px rgba(7,26,51,.045);
}

.about-hero-content {
    display: grid;
    gap: 22px;
    padding: 24px 18px;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--about-green-dark);
    font-size: .68rem;
    font-weight: 950;
}

    .about-eyebrow::before {
        content: "";
        width: 18px;
        height: 3px;
        border-radius: 999px;
        background: var(--about-green);
    }

    .about-eyebrow.dark {
        color: #fff7d7;
    }

.about-hero h1 {
    margin: 8px 0 0;
    color: var(--about-navy);
    font-size: clamp(2rem, 8vw, 3.8rem);
    font-weight: 950;
    line-height: 1;
}

.about-hero-lead {
    max-width: 760px;
    margin: 13px 0 0;
    color: #344652;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.8;
}

.about-hero-sub {
    max-width: 780px;
    margin: 10px 0 0;
    color: var(--about-muted);
    font-size: .78rem;
    line-height: 1.85;
}

.about-hero-actions,
.about-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 17px;
}

.about-primary-action,
.about-secondary-action,
.about-secondary-light-action {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 15px;
    border-radius: 10px;
    font-size: .7rem;
    font-weight: 950;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.about-primary-action {
    background: var(--about-green);
    color: #fff;
    box-shadow: 0 6px 15px rgba(91,140,59,.17);
}

    .about-primary-action:hover {
        transform: translateY(-1px);
        background: var(--about-green-dark);
        color: #fff;
    }

.about-secondary-action {
    border: 1px solid #ccd9c6;
    background: #fff;
    color: var(--about-green-dark);
}

    .about-secondary-action:hover {
        transform: translateY(-1px);
        background: var(--about-green-soft);
        color: var(--about-green-dark);
    }

.about-hero-visual {
    display: grid;
    gap: 10px;
    align-content: center;
}

.about-logo-panel {
    display: grid;
    min-height: 180px;
    place-items: center;
    border: 1px solid #e0e7de;
    border-radius: 16px;
    background: rgba(255,255,255,.75);
}

    .about-logo-panel img {
        width: min(210px, 70%);
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 10px 18px rgba(7,26,51,.11));
    }

.about-hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

    .about-hero-pills span {
        padding: 5px 8px;
        border: 1px solid #dfe6dc;
        border-radius: 999px;
        background: #fff;
        color: #68756f;
        font-size: .52rem;
        font-weight: 850;
    }

.about-section {
    margin-top: 12px;
    padding: 23px 14px;
    border: 1px solid var(--about-border);
    border-radius: 16px;
    background: #fff;
}

.about-section-soft {
    background: linear-gradient(135deg, #f9fbf8, #fff);
}

.about-section-heading {
    max-width: 830px;
    margin-bottom: 17px;
}

    .about-section-heading.compact {
        margin-bottom: 13px;
    }

    .about-section-heading > span {
        color: var(--about-green);
        font-size: .62rem;
        font-weight: 950;
    }

    .about-section-heading h2 {
        margin: 4px 0 0;
        color: var(--about-navy);
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        font-weight: 950;
        line-height: 1.35;
    }

    .about-section-heading p {
        margin: 7px 0 0;
        color: var(--about-muted);
        font-size: .72rem;
        line-height: 1.85;
    }

.about-pillars-grid,
.about-problem-grid,
.about-scouting-grid,
.about-process {
    display: grid;
    gap: 8px;
}

.about-pillar-card {
    min-height: 170px;
    padding: 14px;
    border: 1px solid #e2e8df;
    border-radius: 12px;
    background: #fbfcfa;
}

.about-pillar-icon {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border-radius: 10px;
    background: var(--about-green-soft);
    font-size: 1rem;
}

.about-pillar-card h3,
.about-problem-grid h3,
.about-scouting-grid h3,
.about-process h3 {
    margin: 10px 0 0;
    color: var(--about-navy);
    font-size: .7rem;
    font-weight: 950;
}

.about-pillar-card p,
.about-problem-grid p,
.about-scouting-grid p,
.about-process p {
    margin: 6px 0 0;
    color: #74818b;
    font-size: .58rem;
    line-height: 1.75;
}

.about-problem-grid article,
.about-process article {
    min-height: 135px;
    padding: 14px;
    border: 1px solid #e2e7e0;
    border-radius: 11px;
    background: #fff;
}

    .about-problem-grid article > strong {
        display: block;
        color: #d7dfd3;
        font-size: 1.25rem;
        font-weight: 950;
    }

.about-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 7px;
}

    .about-audience-grid article {
        min-height: 120px;
        padding: 11px;
        border: 1px solid #e3e9e1;
        border-radius: 10px;
        background: #fbfcfb;
    }

        .about-audience-grid article > span {
            font-size: 1.1rem;
        }

    .about-audience-grid strong,
    .about-audience-grid small {
        display: block;
    }

    .about-audience-grid strong {
        margin-top: 7px;
        color: #33444f;
        font-size: .63rem;
        font-weight: 950;
    }

    .about-audience-grid small {
        margin-top: 4px;
        color: #7e8991;
        font-size: .5rem;
        line-height: 1.65;
    }

.about-feature-list {
    display: grid;
}

.about-feature-row {
    display: grid;
    grid-template-columns: 35px minmax(0,1fr) 34px;
    gap: 10px;
    align-items: start;
    padding: 13px 0;
    border-bottom: 1px solid #edf0ed;
}

    .about-feature-row:last-child {
        border-bottom: 0;
    }

.about-feature-number {
    color: #b7c3b2;
    font-size: .65rem;
    font-weight: 950;
}

.about-feature-row h3 {
    margin: 0;
    color: var(--about-navy);
    font-size: .72rem;
    font-weight: 950;
}

.about-feature-row p {
    margin: 5px 0 0;
    color: #76838c;
    font-size: .58rem;
    line-height: 1.75;
}

.about-feature-row > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 9px;
    background: #f1f5ef;
    font-size: .9rem;
}

.about-awards-section {
    display: grid;
    gap: 18px;
    background: radial-gradient(circle at 12% 20%, rgba(255,255,255,.06), transparent 15rem), linear-gradient(135deg, #071a33, #153727);
    color: #fff;
}

.about-awards-copy h2 {
    margin: 6px 0 0;
    font-size: clamp(1.2rem, 5vw, 1.75rem);
    font-weight: 950;
}

.about-awards-copy p {
    margin: 8px 0 0;
    color: rgba(255,255,255,.75);
    font-size: .68rem;
    line-height: 1.9;
}

.about-award-points {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 12px;
}

    .about-award-points span {
        padding: 5px 7px;
        border: 1px solid rgba(255,255,255,.13);
        border-radius: 999px;
        background: rgba(255,255,255,.06);
        color: #eaf6e5;
        font-size: .5rem;
        font-weight: 900;
    }

.about-awards-visual {
    padding: 13px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 13px;
    background: rgba(255,255,255,.07);
}

.award-demo-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

    .award-demo-head span {
        color: #e8c96e;
        font-size: .5rem;
        font-weight: 950;
    }

    .award-demo-head strong {
        font-size: .67rem;
    }

.award-demo-row {
    display: grid;
    grid-template-columns: 28px 80px minmax(0,1fr) 38px;
    gap: 6px;
    align-items: center;
    min-height: 44px;
}

    .award-demo-row > b {
        display: grid;
        width: 24px;
        height: 24px;
        place-items: center;
        border-radius: 50%;
        background: rgba(255,255,255,.09);
        font-size: .54rem;
    }

    .award-demo-row > span {
        font-size: .55rem;
        font-weight: 850;
    }

    .award-demo-row > i {
        display: block;
        height: 6px;
        overflow: hidden;
        border-radius: 999px;
        background: rgba(255,255,255,.1);
    }

        .award-demo-row > i > em {
            display: block;
            height: 100%;
            border-radius: inherit;
            background: var(--about-green);
        }

    .award-demo-row.first > i > em {
        background: #e2b841;
    }

    .award-demo-row.second > i > em {
        background: #9faeb8;
    }

    .award-demo-row.third > i > em {
        background: #b57b57;
    }

.about-awards-visual > small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.48);
    font-size: .43rem;
}

.about-scouting-grid article {
    display: grid;
    grid-template-columns: 34px minmax(0,1fr);
    gap: 9px;
    min-height: 100px;
    align-content: start;
    padding: 11px;
    border: 1px solid #e2e8e0;
    border-radius: 10px;
    background: #fbfcfb;
}

    .about-scouting-grid article > span {
        display: grid;
        width: 32px;
        height: 32px;
        place-items: center;
        border-radius: 9px;
        background: var(--about-green-soft);
        color: var(--about-green-dark);
        font-size: .58rem;
        font-weight: 950;
    }

.about-scouting-grid p {
    grid-column: 2;
}

.about-process-section {
    background: #fbfcfa;
}

.about-process article > span {
    color: var(--about-green);
    font-size: .55rem;
    font-weight: 950;
}

.about-region-section {
    display: grid;
    gap: 18px;
    align-items: center;
}

.about-region-map {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 6px;
}

    .about-region-map span {
        display: grid;
        min-height: 52px;
        place-items: center;
        border: 1px solid #dce6d8;
        border-radius: 9px;
        background: var(--about-green-soft);
        color: var(--about-green-dark);
        font-size: .65rem;
        font-weight: 950;
    }

        .about-region-map span:first-child {
            grid-column: span 2;
            background: var(--about-green);
            color: #fff;
        }

.about-region-copy h2 {
    margin: 6px 0 0;
    color: var(--about-navy);
    font-size: 1.3rem;
    font-weight: 950;
}

.about-region-copy p {
    margin: 8px 0 0;
    color: #75828b;
    font-size: .63rem;
    line-height: 1.85;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 7px;
}

    .about-values-grid article {
        min-height: 110px;
        padding: 11px;
        border: 1px solid #e2e8df;
        border-radius: 10px;
        background: #fbfcfb;
    }

    .about-values-grid strong,
    .about-values-grid small {
        display: block;
    }

    .about-values-grid strong {
        margin-top: 7px;
        color: #34454f;
        font-size: .61rem;
        font-weight: 950;
    }

    .about-values-grid small {
        margin-top: 3px;
        color: #808a91;
        font-size: .5rem;
        line-height: 1.6;
    }

.about-final-cta {
    display: grid;
    gap: 16px;
    align-items: center;
    margin-top: 12px;
    padding: 22px 16px;
    border-radius: 16px;
    background: radial-gradient(circle at 90% 10%, rgba(255,255,255,.08), transparent 16rem), linear-gradient(135deg, var(--about-green-dark), #183923);
    color: #fff;
}

    .about-final-cta > div:first-child > span {
        color: #dcebd4;
        font-size: .57rem;
        font-weight: 950;
    }

    .about-final-cta h2 {
        max-width: 750px;
        margin: 5px 0 0;
        font-size: clamp(1.15rem, 5vw, 1.7rem);
        font-weight: 950;
        line-height: 1.4;
    }

    .about-final-cta p {
        max-width: 720px;
        margin: 8px 0 0;
        color: rgba(255,255,255,.7);
        font-size: .63rem;
        line-height: 1.8;
    }

.about-secondary-light-action {
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.07);
    color: #fff;
}

    .about-secondary-light-action:hover {
        background: rgba(255,255,255,.14);
        color: #fff;
    }

@media (min-width: 640px) {
    .about-shell {
        width: min(1180px, calc(100% - 24px));
    }

    .about-hero-content {
        padding: 30px 24px;
    }

    .about-pillars-grid,
    .about-problem-grid,
    .about-process {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .about-audience-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .about-scouting-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .about-values-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .about-final-cta {
        padding: 28px 24px;
    }
}

@media (min-width: 900px) {
    .gedian-about-page {
        padding-top: 14px;
    }

    .about-hero-content {
        grid-template-columns: minmax(0,1.45fr) minmax(280px,.55fr);
        min-height: 390px;
        align-items: center;
        padding: 38px 36px;
    }

    .about-logo-panel {
        min-height: 250px;
    }

        .about-logo-panel img {
            width: min(260px, 82%);
        }

    .about-section {
        padding: 30px 28px;
    }

    .about-pillars-grid,
    .about-problem-grid {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }

    .about-audience-grid {
        grid-template-columns: repeat(5, minmax(0,1fr));
    }

    .about-awards-section {
        grid-template-columns: minmax(0,1.25fr) minmax(320px,.75fr);
        padding: 34px 30px;
    }

    .about-scouting-grid {
        grid-template-columns: repeat(5, minmax(0,1fr));
    }

        .about-scouting-grid article {
            grid-template-columns: 1fr;
        }

        .about-scouting-grid p {
            grid-column: auto;
        }

    .about-process {
        grid-template-columns: repeat(5, minmax(0,1fr));
    }

    .about-region-section {
        grid-template-columns: minmax(300px,.75fr) minmax(0,1.25fr);
    }

    .about-final-cta {
        grid-template-columns: minmax(0,1fr) auto;
        padding: 34px 30px;
    }

    .about-final-actions {
        justify-content: flex-end;
        margin-top: 0;
    }
}

@media (max-width: 380px) {
    .about-shell {
        width: min(1180px, calc(100% - 8px));
    }

    .about-hero-content {
        padding: 20px 13px;
    }

    .about-section {
        padding: 20px 11px;
    }

    .about-audience-grid,
    .about-values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

    .about-region-map {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}
