/* ==========================================================
   AFDES ABOUT PAGE
   Clean institutional / think-tank style
========================================================== */

.about-page {
    background: #f8fafc;
}

/* ==========================================================
   HERO
========================================================== */

.about-hero {
    position: relative;
    padding: clamp(54px, 8vw, 92px) 0;
    background:
        radial-gradient(circle at top right, rgba(4, 155, 206, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.about-hero::after {
    content: "";
    position: absolute;
    right: -160px;
    top: -160px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(4, 155, 206, 0.14);
    box-shadow:
        0 0 0 38px rgba(4, 155, 206, 0.035),
        0 0 0 78px rgba(4, 155, 206, 0.022);
    pointer-events: none;
}

.about-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-hero h1,
.about-section h2,
.about-heading h2,
.about-founder h2,
.about-contact h2 {
    margin: 0;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.06;
}

.about-hero h1 {
    max-width: 980px;
    font-size: clamp(2.55rem, 5.8vw, 5.15rem);
    letter-spacing: -0.045em;
}

.about-hero p {
    max-width: 820px;
    margin: 22px 0 0;
    color: #475569;
    font-size: 1.12rem;
    line-height: 1.75;
}

/* ==========================================================
   STATS
========================================================== */

.about-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: -32px;
}

.about-stat {
    background: #ffffff;
    border: 1px solid var(--border);
    border-top: 4px solid var(--primary);
    padding: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.about-stat strong {
    display: block;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    line-height: 1;
}

.about-stat span {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ==========================================================
   GENERAL SECTIONS
========================================================== */

.about-section {
    padding: 68px 0;
}

.about-split {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 42px;
    align-items: start;
}

.about-split h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.about-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    padding: clamp(28px, 5vw, 44px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
}

.about-card::before,
.value-card::before,
.team-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), rgba(4, 155, 206, 0.25));
}

.about-card p {
    margin: 0 0 16px;
    color: #475569;
    line-height: 1.75;
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* ==========================================================
   SECTION HEADINGS
========================================================== */

.about-heading {
    max-width: 820px;
    margin-bottom: 32px;
}

.about-heading.center {
    margin: 0 auto 38px;
    text-align: center;
}

.about-heading h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: -0.03em;
}

.about-heading h2::after {
    content: "";
    display: block;
    width: 68px;
    height: 4px;
    margin-top: 16px;
    background: var(--primary);
}

.about-heading.center h2::after {
    margin-left: auto;
    margin-right: auto;
}

.about-heading p {
    max-width: 740px;
    margin: 14px auto 0;
    color: #64748b;
    line-height: 1.7;
}

/* ==========================================================
   VALUES
========================================================== */

.about-values {
    padding: 68px 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.value-card {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid var(--border);
    padding: 28px 24px;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: rgba(4, 155, 206, 0.22);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(4, 155, 206, 0.1);
    color: var(--primary);
    font-weight: 900;
}

.value-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.34rem;
    line-height: 1.18;
}

.value-card p {
    margin: 0;
    color: #475569;
    line-height: 1.62;
}

/* ==========================================================
   FOUNDER
========================================================== */

.about-founder {
    padding: 68px 0;
}

.founder-card {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 34px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border);
    padding: clamp(28px, 5vw, 46px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
}

.founder-photo {
    width: 178px;
    height: 178px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, var(--primary), #8fd7ff);
    box-shadow: 0 15px 35px rgba(4, 155, 206, 0.18);
}

.founder-photo img {
    display: block;
    width: 100%;
    height: 100%;
    border: 5px solid #ffffff;
    border-radius: 50%;
    object-fit: cover;
}

.founder-card h2 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 4vw, 3.05rem);
}

.founder-card span {
    display: block;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.founder-card p {
    margin: 0;
    color: #475569;
    line-height: 1.75;
}

/* ==========================================================
   TEAM SECTION - CLEAN VERSION
========================================================== */

.about-team-section {
    padding: 72px 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.team-grid,
.clean-team-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 0.9fr;
    gap: 22px;
    align-items: stretch;
}

.team-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 30px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(4, 155, 206, 0.22);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.team-card-featured {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 26px;
    align-items: center;
    text-align: left;
}

.team-photo {
    width: 140px;
    height: 140px;
    margin: 0;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--primary), #8fd7ff);
    box-shadow: 0 14px 32px rgba(4, 155, 206, 0.16);
}

.team-photo img {
    display: block;
    width: 100%;
    height: 100%;
    border: 4px solid #ffffff;
    border-radius: 50%;
    object-fit: cover;
}

.team-card-content {
    min-width: 0;
}

.team-kicker {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.team-card h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    line-height: 1.1;
}

.team-card-featured h3 {
    font-size: 1.85rem;
}

.team-card strong {
    display: block;
    margin-bottom: 14px;
    color: #334155;
    font-size: 0.86rem;
    font-weight: 900;
}

.team-card p {
    margin: 0;
    color: #475569;
    line-height: 1.65;
}

.team-card-minimal {
    text-align: left;
}

.team-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: rgba(4, 155, 206, 0.1);
    color: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 900;
}

/* ==========================================================
   CONTACT CTA
========================================================== */

.about-contact {
    margin: 70px auto;
    padding: clamp(34px, 5vw, 52px);
    background:
        radial-gradient(circle at top right, rgba(4, 155, 206, 0.24), transparent 35%),
        linear-gradient(135deg, var(--navy), #0f2f47);
    color: #ffffff;
}

.about-contact h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
}

.about-contact p {
    max-width: 760px;
    margin: 16px 0 26px;
    color: #dbeafe;
    line-height: 1.7;
}

.about-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 13px 18px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.about-contact a:hover {
    background: var(--primary-dark);
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 980px) {
    .about-stats,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-split,
    .founder-card,
    .team-grid,
    .clean-team-grid {
        grid-template-columns: 1fr;
    }

    .team-card-featured {
        grid-template-columns: 130px 1fr;
    }

    .team-photo {
        width: 125px;
        height: 125px;
    }
}

@media (max-width: 720px) {
    .about-hero {
        padding: 48px 0 66px;
    }

    .about-section,
    .about-values,
    .about-founder,
    .about-team-section {
        padding: 54px 0;
    }

    .about-stats {
        margin-top: -22px;
    }

    .founder-photo {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 620px) {
    .about-stats,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 2.35rem;
    }

    .about-hero p {
        font-size: 1.02rem;
    }

    .about-card,
    .founder-card,
    .team-card {
        padding: 24px;
    }

    .founder-card {
        text-align: center;
        justify-items: center;
    }

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

    .team-card-featured {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .team-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .about-contact {
        margin: 54px auto;
    }
}

/* ==========================================================
   EXPERT CONTRIBUTORS STRIP
========================================================== */

.experts-strip {
    margin-top: 42px;
    padding-top: 34px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.experts-heading {
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: center;
}

.experts-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.experts-heading h3 {
    margin: 0;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.experts-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    align-items: start;
}

.expert-mini-card {
    text-align: center;
}

.expert-mini-card img {
    display: block;
    width: 108px;
    height: 108px;
    margin: 0 auto 14px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow:
        0 0 0 1px rgba(4, 155, 206, 0.18),
        0 12px 28px rgba(15, 23, 42, 0.08);
}

.expert-mini-card h4 {
    margin: 0 0 5px;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
}

.expert-mini-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.35;
}

@media (max-width: 980px) {
    .experts-row {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 28px;
    }
}

@media (max-width: 620px) {
    .experts-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 18px;
    }

    .expert-mini-card img {
        width: 96px;
        height: 96px;
    }
}

@media (max-width: 420px) {
    .experts-row {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================
   SIMPLE ABOUT CLOSING
========================================================== */

.about-closing {
    padding: 42px 0 70px;
    background: #ffffff;
}

.about-closing p {
    max-width: 860px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.7;
    text-align: center;
}

.about-closing a {
    color: var(--primary);
    font-weight: 900;
    text-decoration: none;
}

.about-closing a:hover {
    color: var(--navy);
    text-decoration: underline;
}

/* ==========================================================
   BOARD OF DIRECTORS — LIVE RECORDS + OPEN SEATS
========================================================== */
.board-member-card .people-card-link {
    min-height: 156px;
}

.board-photo-placeholder {
    align-items: center;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.96), rgba(236, 245, 249, 0.94) 58%, rgba(218, 233, 240, 0.96) 100%);
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow:
        0 0 0 1px rgba(4, 155, 206, 0.2),
        0 12px 28px rgba(15, 23, 42, 0.08);
    color: rgba(13, 44, 70, 0.28);
    display: flex;
    font-size: 2rem;
    height: 108px;
    justify-content: center;
    margin: 0 auto 14px;
    width: 108px;
}

.board-seat-placeholder {
    opacity: 0.78;
}

.board-seat-placeholder .board-photo-placeholder {
    background: transparent;
    border: 2px dashed rgba(4, 155, 206, 0.32);
    box-shadow: none;
    color: rgba(13, 44, 70, 0.18);
}

.board-seat-placeholder h4 {
    color: #64748b;
}

.board-progress-note {
    color: #718096;
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 22px auto 0;
    max-width: 620px;
    text-align: center;
}

@media (max-width: 620px) {
    .board-photo-placeholder {
        height: 96px;
        width: 96px;
    }
}

