:root {
    /* Aligned with homepage palette */
    --color-bg: #fff;
    --color-paper: #ffffff;
    --color-text: #161718;
    --color-text-muted: #5d5e5f;
    --color-accent: #469114;
    --color-accent-light: rgba(70, 145, 20, 0.08);
    --color-accent-muted: #5a9e2e;
    --color-border: #e8e8e9;
    --color-timeline: #469114;
    --max-width: 780px;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body#founder-page {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    /*background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(70, 145, 20, 0.06), transparent),
        radial-gradient(circle at 100% 0%, rgba(70, 145, 20, 0.03), transparent 50%);
    -webkit-font-smoothing: antialiased;*/
}

/*.download-btns {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.pdf-btn,
.jpg-btn {
    padding: 14px 26px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--color-accent) 0%, #3a7a10 100%);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.25s ease;
}



.pdf-btn:hover,
.jpg-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(70, 145, 20, 0.3);
}

.jpg-btn {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
}

.jpg-btn:hover {
    box-shadow: 0 12px 40px rgba(44, 82, 130, 0.3);
}

.pdf-btn::before {
    content: 'â†“ ';
    font-size: 11px;
    opacity: 0.85;
    margin-right: 2px;
}*/

@media (max-width: 640px) {
    .hero {
        padding: 60px 20px 80px;
    }

    .hero-photo {
        width: 180px;
        height: 220px;
    }

    .section-overview {
        padding: 40px 24px 60px;
    }

    .section-overview ,
    .founder-tabbed-section,
    .content-wrapper,
    .timeline-section{

        padding: 40px 24px 30px !important;
    }

    .section {
        padding: 32px 24px!important;
    }

    .section::before {
        width: 3px;
        opacity: 0.5;
    }
    .media-section {
        padding: 48px 24px 72px;
    }

    .founder-quote {
        font-size: 1.35rem;
        padding: 28px 24px;
    }

    /*.download-btns {
        top: 16px;
        right: 16px;
    }

    .pdf-btn,
    .jpg-btn {
        padding: 12px 18px;
        font-size: 13px;
    }*/
}

/* Section 1: Hero */
.hero {
    background: var(--color-paper);
    padding: 31px 24px 42px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--color-accent));
    opacity: 0.3;
}*/

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-photo {
    width: 240px;
    height: 296px;
    /*margin: 0 auto 32px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background: var(--color-border);*/
    margin: 0 auto 8px;
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--color-text);
    line-height: 1.2;
}

.hero-context {
    font-size: 18px;
    color: var(--color-text-muted);
    font-weight: 400;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

.hero-context a {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 2px solid var(--color-accent-light);
    transition: all 0.2s;
}

.hero-context a:hover {
    border-bottom-color: var(--color-accent);
    color: var(--color-accent-muted);
}

/* Section 2: Overview - full section with background */
.section-overview {
    background: #F5F5F530;
    padding: 26px 24px 40px;
    position: relative;
    z-index: 2;
}

.quick-facts {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
}

.quick-facts-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    text-align: center;
}

.quick-facts-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

.quick-facts-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    background: var(--color-paper);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.quick-fact {
    padding: 20px 18px;
    text-align: center;
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.quick-fact:last-child {
    border-right: none;
}

.quick-fact-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-fact-icon {
    width: 18px;
    height: 18px;
    color: #5D5E5F;
}

.quick-fact-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.quick-fact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
    font-weight: 600;
}

.quick-fact-value {
    font-weight: 600;
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.quick-fact:nth-child(5) .quick-fact-value {
    font-weight: 500;
    font-size: 13px;
}

@media (max-width: 900px) {
    .quick-facts-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .quick-fact:nth-child(3n) {
        border-right: none;
    }

    .quick-fact:nth-child(4),
    .quick-fact:nth-child(5) {
        border-bottom: 1px solid var(--color-border);
    }
}

@media (max-width: 640px) {
    .quick-facts-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-fact:nth-child(odd) {
        border-right: 1px solid var(--color-border);
    }

    .quick-fact:nth-child(even) {
        border-right: none;
    }

    .quick-fact:nth-child(1),
    .quick-fact:nth-child(2),
    .quick-fact:nth-child(3),
    .quick-fact:nth-child(4) {
        border-bottom: 1px solid var(--color-border);
    }
}

@media (max-width: 480px) {
    .quick-facts-inner {
        grid-template-columns: 1fr;
    }

    .quick-fact {
        border-right: none !important;
        border-bottom: 1px solid var(--color-border) !important;
    }

    .quick-fact:last-child {
        border-bottom: none !important;
    }
}

/* Founder tabbed section - matches Overview width, white background */
.founder-tabbed-section {
    background: #FFFFFF;
    padding: 42px 24px 24px;
    overflow: hidden;
}

.founder-tabbed-section .quick-facts-title {
    max-width: 920px;
    margin: 0 auto 45px;
}

.founder-tabbed-section .founder-sections {
    max-width: 1062px;
    margin: 0 auto;
}

/* Section 3: Content - different background */
.section-content {
    background: #F5F5F530;
    padding-bottom: 0;
}

/* Content wrapper - narrow reading (matches Overview section width) */
.content-wrapper {
    max-width: 920px;
    margin: 0 auto;
    padding: 50px 24px 30px;
}

.section {
    margin-bottom: 64px;
    padding: 42px 24px 42px;
    background: var(--color-paper);
    border-radius: 16px;
    border: 1px solid #D9D9D9;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.section:last-child {
    margin-bottom: 0;
}

.sections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 0;
}

.sections-grid .section-card {
    margin-bottom: 0;
    padding: 40px 24px 60px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.section-full-width.section-centered {
    max-width: none;
    width: 100%;
    padding: 42px 24px;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
}

.section-full-width.section-centered::before,
.section-full-width.section-two-col::before {
    display: none;
}

.section.section-full-width {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
    background: #FFFFFF;
}

.section.section-full-width.section-alt-bg {
    background: #F5F5F530;
}

.section-mission-philosophy {
    margin-bottom: 0;
    padding-bottom: 24px;
}

.section.section-full-width::before {
    display: none;
}

.section.section-full-width .section-inner {
    max-width: 920px;
    margin: 0 auto;
}

.section-full-width.section-alt-bg {
    background: #F5F5F5;
}

.section-full-width.section-two-col {
    padding: 42px 24px 42px;
    width: 100%;
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.section-two-col .section-two-col-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    max-width: 920px;
    margin: 0 auto;
}

.section-two-col-reverse .section-two-col-inner {
    flex-direction: row-reverse;
}

.section-two-col-text {
    flex: 1;
    min-width: 0;
}

.section-two-col .section-centered-heading {
    margin-bottom: 36px;
}

.section-left-text p {
    text-align: left;
    margin-bottom: 18px;
}

.section-left-text p:last-child {
    margin-bottom: 0;
}

.section-two-col-image {
    flex: 1;
    min-width: 0;
}

.section-two-col-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid var(--color-accent);
    border-radius: 16px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .section-full-width.section-two-col {
        padding: 40px 24px 30px;
    }

    .section-two-col .section-two-col-inner {
        flex-direction: column;
        gap: 32px;
    }

    .section-two-col-reverse .section-two-col-inner {
        flex-direction: column;
    }

    .section-two-col-image {
        order: -1;
    }
}

.section-centered-heading {
    margin-bottom: 36px;
}

.section-centered-text {
    max-width: 800px;
    margin: 0 auto;
}

.section-centered-text p {
    text-align: center;
    margin-bottom: 16px;
}

.section-centered-text p:last-child {
    margin-bottom: 0;
}

.sections-grid .section-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(70, 145, 20, 0.25);
}

.sections-grid .section-card h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 14px;
}

.sections-grid .section-card h2::after {
    width: 48px;
}

.sections-grid .section-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.sections-grid .section-card p:last-child {
    margin-bottom: 0;
}

.sections-grid .section-list {
    list-style: none;
    margin: 20px 0 24px;
    padding: 0;
}

.sections-grid .section-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.sections-grid .section-list li:last-child {
    margin-bottom: 0;
}

.sections-grid .section-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

@media (max-width: 640px) {
    .sections-grid .section-card {
        padding: 40px 24px 60px;
    }
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent), var(--color-accent-muted));
    border-radius: 16px 0 0 16px;
    opacity: 0.6;
}

/* Founder sections - tabbed layout */
/*.founder-sections {
    background: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}*/

/*.founder-text {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
}*/

.founder-text {
    /*padding: 20px 32px;*/
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    position: relative;
}

.founder-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 123px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 0;
}

/*.founder-text:hover {
    color: var(--color-text);
}

.founder-tab.active {
    color: var(--color-text);
    border-bottom-color: var(--color-accent);
    font-weight: 600;
}*/

/*.founder-text-panels {
    background: #FFFFFF;
    border-top: 1px solid #e0e0e0;
}*/

.founder-text-panel {
    padding-bottom: 18px;
}

/*.founder-tab-panel.active {
    display: block;
}*/

#founder-page .founder-text-panel p {
    margin-bottom: 5px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-muted);
    text-align: justify;
    hyphens: auto;
}

#founder-page .founder-text-panel h3 {
    margin: 10px 0 2px;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    font-family: var(--font-body);
}



@media (max-width: 640px) {
    .founder-tab {
        flex: 1;
        min-width: 0;
        padding: 16px 12px;
        font-size: 0.9rem;
        text-align: center;
    }

    .founder-tab-panel {
        padding: 28px 24px 40px;
    }
}

#founder-page h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 36px;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 16px;
    text-align: center;
}

#founder-page h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

#founder-page h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    margin: 36px 0 12px;
    color: var(--color-text);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-mission-philosophy h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

#founder-page p {
    margin-bottom: 20px;
    color: var(--color-text-muted);
    font-size: 17px;
    line-height: 1.75;
}

#founder-page .section p:first-of-type {
    font-size: 18px;
    color: var(--color-text);
    font-weight: 500;
    line-height: 30.6px;
}

#founder-page .section p:last-child {
    margin-bottom: 0;
}

/* Section 6: Timeline - alternating zigzag layout */
.timeline-section {
    background: #F5F5F530;
    padding: 36px 24px 47px;
    margin: 0 auto;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}

.timeline-inner {
    max-width: 920px;
    margin: 0 auto;
}

.timeline-section h2 {
    margin-bottom: 56px;
}

.timeline-section h2::after {
    background-color: var(--color-text);
}

.timeline {
    position: relative;
}

.timeline-spine {
    position: absolute;
    left: 50%;
    top: 28px;
    bottom: 28px;
    width: 4px;
    margin-left: -2px;
    /*background: linear-gradient(to bottom, var(--color-accent) 0%, var(--color-accent-muted) 100%);*/
    background-color: #E0E0E0;
    border-radius: 4px;
    z-index: 0;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 24px 56px 24px 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
    z-index: 1;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item-left .timeline-content {
    grid-column: 1;
    justify-self: end;
}

.timeline-item-left .timeline-connector {
    grid-column: 2;
    justify-self: stretch;
    align-self: center;
}

.timeline-item-left .timeline-marker {
    grid-column: 3;
    justify-self: center;
}

.timeline-item-right .timeline-content {
    grid-column: 5;
    justify-self: start;
}

.timeline-item-right .timeline-connector {
    grid-column: 4;
    justify-self: stretch;
    align-self: center;
}

.timeline-item-right .timeline-marker {
    grid-column: 3;
    justify-self: center;
}

.timeline-content {
    max-width: 100%;
    padding: 24px 28px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.timeline-content:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(70, 145, 20, 0.2);
}

.timeline-connector {
    height: 2px;
    border-top: 2px dotted #E0E0E0;
    opacity: 0.7;
}

.timeline-marker {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 3px solid #E0E0E0;
    border-radius: 50%;
    font-weight: 600;
    font-size: 11px;
    color: #5d5e5f96;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.2;
    padding: 6px;
    box-shadow: 0 2px 12px rgba(70, 145, 20, 0.2);
    overflow: hidden;
}

.timeline-year {
    font-weight: 600;
    color: var(--color-text);
    font-size: 17px;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.timeline-desc {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-spine {
        left: 28px;
        margin-left: -2px;
    }

    .timeline-item {
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto;
        padding-left: 0;
        margin-bottom: 24px;
    }

    .timeline-item-left .timeline-content,
    .timeline-item-right .timeline-content {
        grid-column: 2;
        grid-row: 1;
        justify-self: stretch;
        max-width: 100%;
        padding: 20px 24px;
    }

    .timeline-item-left .timeline-marker,
    .timeline-item-right .timeline-marker {
        grid-column: 1;
        grid-row: 1;
        align-self: start;
        margin-top: 24px;
        width: 48px;
        height: 48px;
        font-size: 9px;
    }

    .timeline-connector {
        display: none;
    }
}

/* Section 10: Media Mentions */
.media-section {
    background: #F5F5F530 !important;
    padding: 42px 24px 42px;
    margin-top: 0;
}

.media-inner {
    max-width: 900px;
    margin: 0 auto;
}

.media-section h2 {
    margin-bottom: 43px;
}

.media-intro {
    max-width: var(--max-width);
    margin: 0 auto 50px;
    padding: 0 5px;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.media-intro p {
    margin-bottom: 16px;
}

.media-intro p:last-child {
    margin-bottom: 0;
}

/* Media article cards â€” mirrors External Profiles (intro + three columns + mobile slider) */
.media-articles-intro {
    font-size: 15px;
    color: var(--color-text-muted);
    margin: -28px auto 32px;
    max-width: var(--max-width);
    padding: 0 20px;
    text-align: center;
    line-height: 1.65;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    padding: 0 16px;
}

.media-grid.media-grid--three {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.media-item-divider {
    width: 1px;
    background: #e8e8e8;
    align-self: stretch;
    min-height: 140px;
}

.media-grid.media-grid--three .media-item {
    padding: 0 12px;
    text-align: start;
    align-items: center;
}

.media-grid.media-grid--three .media-item-body {
    padding-top: 14px;
    width: 100%;
}

.media-grid.media-grid--three .media-item-publication {
    color: var(--color-text-muted);
    font-size: 14px;
}

@media (max-width: 768px) {
    .media-articles-intro {
        margin: -12px auto 24px;
        padding: 0 12px;
    }

    .media-grid.media-grid--three {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        padding: 0 16px 14px;
        margin: 0 -8px;
        scroll-padding: 0 16px;
    }

    .media-grid.media-grid--three .media-item-divider {
        display: none;
    }

    .media-grid.media-grid--three .media-item {
        flex: 0 0 100%;
        min-width: 0;
        max-width: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        padding: 0 8px;
        box-sizing: border-box;
    }

    .media-grid.media-grid--three::-webkit-scrollbar {
        height: 6px;
    }

    .media-grid.media-grid--three::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
    }
}

.media-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    /*border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #FFFFFF;
   
    transition: all 0.25s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);*/
}

a.media-item:focus-visible {
    outline: 2px solid var(--color-accent, #469114);
    outline-offset: 4px;
}

/*.media-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}*/

.media-item-image {
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 180px;
    object-fit: cover;
    display: block;
}

/*.media-item-body {
    padding: 24px 28px 28px;
}*/

.media-item-publication {
    font-size: 15px;
    font-weight: 300;
    color: #000;
}

.media-item-title {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.4;
}

.media-item a,
.media-item-cta {
    color: #5D5E5F;
    text-decoration: none;
    font-weight: 300;
    font-size: 13.57px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/*.media-item a:hover {
    text-decoration: underline;
}

.media-item a::after {
    content: 'â†’';
    font-size: 12px;
}*/

/* Section 13: Operational Principles */
.section-mission-philosophy .section-inner>h3 {
    text-align: center;
    justify-content: center;
}

.principles-block {
    background: #FFFFFF;
    padding: 36px 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    margin: 28px 0;
    box-shadow: var(--shadow-sm);
}

.principles-block ul {
    list-style: none;
}

.principles-block li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.principles-block li:last-child {
    margin-bottom: 0;
}

.principles-block li::before {
    content: 'â—†';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 8px;
    top: 8px;
}

/* Founder quote - compact block with prominent icon */
.founder-quote {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 600;
    color: var(--color-text);
    margin: 40px 0;
    padding: 17px 50px 10px;
    background: #FFFFFF;
    border: 1px solid rgba(70, 145, 20, 0.35);
    border-radius: 8px;
    position: relative;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.01em;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    top: 12px;
    left: 24px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    font-style: normal;
    color: var(--color-accent);
    line-height: 1;
}

.founder-quote::after {
    content: '"';
    position: absolute;
    bottom: 12px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    font-style: normal;
    color: var(--color-accent);
    line-height: 1;
}

/* Section 14: External Profiles - two-column grid with callout */
.section-external-profiles {
    background: #FFFFFF !important;
    padding: 42px 24px 54px;
    margin-bottom: 0;
}

.section-external-profiles .section-inner {
    max-width: 800px;
}

.section-external-profiles .quick-facts-title {
    margin-bottom: 11px;
}

.external-profiles-intro {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    text-align: center;
}

.external-profiles-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 32px;
}

.external-profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    text-decoration: none;
    color: var(--color-text);
    transition: background 0.2s ease;
}

.external-profile-card:hover {
    background: #fafafa;
}

.external-profile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #5D5E5F;
}

.external-profile-card:hover .external-profile-icon {
    color: var(--color-accent);
}

.external-profile-label {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.external-profile-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.external-profiles-divider {
    width: 1px;
    background: #e8e8e8;
    min-height: 60px;
    align-self: center;
}

.external-profiles-callout {
    background: #FFFFFF;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 28px 36px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.external-profiles-callout p {
    margin: 0;
    font-size: 14px;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .external-profiles-grid {
        grid-template-columns: 1fr;
    }

    .external-profiles-divider {
        width: 100%;
        height: 1px;
        min-height: 1px;
    }

    .external-profiles-callout {
        padding: 24px 24px;
    }
    .signature{
      width:70%!important;
    }
}

/* Section 15: Signature Block */
.signature-block {
    margin-top: 0;
    padding: 56px 48px 46px;
    background: var(--color-paper);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

/*.signature-block .signature {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}*/

.signature-block .name {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.signature-block .title {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 8px;
    font-weight: 500;
}

/* Print / PDF styles */
@media print {
    .download-btns {
        display: none !important;
    }

    body {
        background: white;
        background-image: none;
    }

    .hero,
    .quick-facts-inner,
    .timeline-section,
    .media-section,
    .principles-block,
    .signature-block,
    .section,
    .founder-sections,
    .founder-tab-panels {
        box-shadow: none;
    }

    .founder-tabs {
        display: none;
    }

    .founder-tab-panel {
        display: block !important;
        padding-top: 24px;
        border-top: 1px solid #e0e0e0;
    }

    .founder-tab-panel:first-of-type {
        border-top: none;
        padding-top: 0;
    }

    .founder-tab-panel::before {
        content: attr(data-title);
        font-family: var(--font-heading);
        font-size: 1.2rem;
        font-weight: 500;
        display: block;
        margin-bottom: 16px;
        color: var(--color-text);
    }

    .section {
        border: 1px solid #e0e0e0;
    }

    .founder-quote::before,
    .founder-quote::after {
        opacity: 0.6;
    }
}

/* PDF content wrapper */
#pdf-content {
    background: transparent;
}

.page-header,
.page-footer {
    width: 100%;
    display: block;
    line-height: 0;
}

.page-header img,
.page-footer img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.external-profiles-grid {
scroll-behavior: smooth;
}
.external-profiles-grid {
display: flex;
gap: 0px;
}

/* Card Styling */
.external-profile-card {
display: flex;
flex-direction: column;
min-width: 290px;
padding: 20px;
border-radius: 12px;
background: #fff;
text-decoration: none;
color: #333;
transition: 0.3s;
}

.external-profile-card:hover {
transform: translateY(-5px);
}

/* Divider hidden on mobile */
.external-profiles-divider {
width: 1px;
background: #ddd;
}

/* MOBILE SLIDER */
@media (max-width: 768px) {
.external-profiles-grid {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.external-profile-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

.external-profiles-divider {
    display: none;
}

/* Hide scrollbar (optional) */
.external-profiles-grid::-webkit-scrollbar {
    display: none;
}
}