/* ===================================================
   RAJDHANI YUVA SANSAD — ABOUT PAGE (v2)
   =================================================== */

:root {
    --primary-bg: #FFFFFF;
    --text-dark: #111111;
    --text-blue: #0B1F3A;
    --accent-gold: #C8A96E;
    --gray-light: #F7F7F7;
    --border-color: #EAEAEA;
    --nav-height: 84px;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
    width: 100%;
    background: var(--primary-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    transition: box-shadow 0.25s ease;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--nav-height);
    padding: 1.5rem 0;
    transition: padding 0.25s ease;
}

.nav-brand {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 0.9rem;
    border: 1px solid transparent;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-bg);
    background-color: var(--text-blue);
    border-color: var(--text-blue);
}

.btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}
.btn-outline {
    border: 1px solid var(--text-blue);
    color: var(--text-blue);
    background: transparent;
}
.btn-outline:hover { background: var(--gray-light); }
.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
}
.btn-gold:hover { background-color: #b59862; }

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 200;
}
.mobile-menu-toggle span {
    width: 24px; height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--text-blue);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }
.mobile-nav-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.mobile-nav-links a {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.3s ease;
}
.mobile-nav-links a:hover { color: var(--accent-gold); }

/* ===================================================
   HERO — centered, full-width banner style
   =================================================== */
.about-hero {
    position: relative;
    padding: 6rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,31,58,0.04) 0%, rgba(200,169,110,0.06) 100%);
    z-index: 0;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.about-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #666;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.eyebrow-line {
    display: inline-block;
    width: 30px; height: 1px;
    background-color: var(--accent-gold);
}

.about-hero-heading {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
}
.about-hero-heading .highlight { color: var(--accent-gold); }

.about-hero-sub {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.75;
    max-width: 640px;
}

/* Hero stat badges — horizontal row */
.hero-badges {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 1.5rem;
    background: var(--text-blue);
    border-radius: 14px;
    padding: 1.5rem 2.5rem;
    box-shadow: 0 12px 40px rgba(11,31,58,0.15);
}

.hero-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0 2rem;
}
.hero-badge-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.hero-badge-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero-badge-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* ===================================================
   SECTION HEADINGS
   =================================================== */
.section-heading-block {
    text-align: center;
    padding: 4.5rem 1.25rem 2.5rem;
    line-height: 1;
}
.section-heading-block h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.15;
}
.section-heading-block .heading-accent {
    color: var(--accent-gold);
    font-style: italic;
}

/* ===================================================
   WHO ARE WE — centered two-column
   =================================================== */
.who-section {
    display: flex;
    align-items: stretch;
    gap: 3.5rem;
    padding-bottom: 5rem;
}

.who-card--vision {
    flex: 0 0 340px;
    background: linear-gradient(135deg, var(--text-blue) 0%, #1B3A5C 100%);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.75rem;
    box-shadow: 0 16px 48px rgba(11,31,58,0.15);
}
.who-card-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    background: rgba(255,255,255,0.08);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    width: fit-content;
}
.who-card-quote {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: #fff;
    line-height: 1.3;
}
.who-card-translation {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.who-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}
.who-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}
.who-text p:first-child {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* ===================================================
   VALUES GRID
   =================================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-bottom: 5rem;
}
.value-card {
    background-color: var(--gray-light);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 2.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}
.value-icon { font-size: 1.75rem; line-height: 1; }
.value-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-blue);
}
.value-body {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
}

/* ===================================================
   FOUNDERS
   =================================================== */
.founders-section {
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.founder-card {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    padding: 2.5rem;
    background: var(--gray-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: box-shadow 0.3s ease;
}
.founder-card:hover { box-shadow: 0 15px 45px rgba(0,0,0,0.06); }
.founder-card--reverse { flex-direction: row-reverse; }

.founder-avatar {
    width: 200px; height: 240px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; }

.founder-info { flex: 1; display: flex; flex-direction: column; gap: 0.65rem; }
.founder-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-blue);
}
.founder-role {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
}
.founder-bio {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.75;
}
.founder-bio strong { color: var(--text-dark); }
.founder-bio em { color: var(--text-blue); }

/* ===================================================
   DIGNITARIES — with image slots
   =================================================== */
.dignitaries-section {
    background-color: var(--gray-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0 4rem;
}

.dignitary-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.dignitary-category-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dignitary-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
}

/* Photo slot on the left */
.dcc-photo-slot {
    width: 160px;
    flex-shrink: 0;
    overflow: hidden;
    background: #edf1f6;
}
.dcc-photo-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dcc-body {
    padding: 1.5rem;
    flex: 1;
}

.dcc-icon {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.dcc-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-blue);
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--accent-gold);
}
.dcc-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.dcc-list li {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.45;
    padding-left: 0.85rem;
    position: relative;
}
.dcc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px; height: 4px;
    border-radius: 50%;
    background-color: var(--accent-gold);
}
.dcc-list li span {
    font-weight: 400;
    color: #888;
    font-size: 0.78rem;
}

/* Additional distinguished guests row */
.dcc-extra-row {
    margin-top: 1.5rem;
}
.dcc-extra-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem 2rem;
}
.dcc-extra-card .dcc-title { margin-bottom: 1rem; }
.dcc-list--inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}
.dcc-list--inline li {
    font-size: 0.82rem;
    padding-left: 0.85rem;
}

/* ===================================================
   MEDIA MARQUEE
   =================================================== */
.media-marquee-section {
    overflow: hidden;
    background: var(--text-blue);
    padding: 2rem 0;
}

.media-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
    gap: 0;
}
.media-marquee-section:hover .media-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.media-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    white-space: nowrap;
    flex-shrink: 0;
}
.media-item-icon {
    font-size: 1.4rem;
    line-height: 1;
}
.media-item-name {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}
.media-item-detail {
    font-size: 0.78rem;
    color: var(--accent-gold);
    font-weight: 400;
}

/* ===================================================
   LOGO TICKER
   =================================================== */
.media-logo-ticker {
    background: var(--text-blue);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: tickerScroll 40s linear infinite;
}
.media-logo-ticker:hover .ticker-track {
    animation-play-state: paused;
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-item {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    padding: 0 2rem;
    transition: color 0.3s ease;
    cursor: default;
}
.ticker-item:hover {
    color: var(--accent-gold);
}
.ticker-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    margin: 0 1rem;
    flex-shrink: 0;
}

/* ===================================================
   TEAM
   =================================================== */
.team-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
    padding-bottom: 5rem;
    justify-items: center;
}
.team-card-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    text-align: center;
}
.team-avatar {
    width: 150px; height: 180px;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.team-card-about:hover .team-avatar {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.16);
}
.team-name-about {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}
.team-role-about {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================================
   TIMELINE
   =================================================== */
.timeline-section { padding-bottom: 5rem; }
.timeline {
    position: relative;
    padding-left: 3rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-gold), var(--text-blue));
}
.timeline-item {
    display: flex;
    gap: 2rem;
    padding-bottom: 2.5rem;
    position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 0.3rem;
    width: 14px; height: 14px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    border: 3px solid var(--primary-bg);
    box-shadow: 0 0 0 2px var(--accent-gold);
    z-index: 2;
}
.timeline-year {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-blue);
    min-width: 85px;
    flex-shrink: 0;
}
.timeline-content {
    background: var(--gray-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-content:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.timeline-content h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-blue);
    margin-bottom: 0.5rem;
}
.timeline-content p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.65;
}

/* ===================================================
   CTA
   =================================================== */
.cta-strip {
    background-color: var(--text-blue);
    padding: 6rem 5%;
    text-align: center;
}
.cta-strip-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}
.cta-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}
.cta-heading {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
}
.cta-btn {
    font-size: 1.05rem;
    padding: 1rem 2rem;
    display: inline-block;
    margin-top: 0.5rem;
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
    background-color: var(--text-dark);
    color: #fff;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3.5rem;
    padding: 4rem 0 3rem;
}
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}
.footer-tagline {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 280px;
}
.footer-col-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links li a {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: inline-block;
}
.footer-links li a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.28);
}

/* ===================================================
   MEDIA PRESENCE (Spotlight)
   =================================================== */
.media-presence-section {
    padding-bottom: 5rem;
}

/* Stats Strip */
.media-stats-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem auto 4rem;
    padding: 2rem;
    background: var(--gray-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    max-width: 900px;
}
.media-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}
.media-stat-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-blue);
}
.media-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-gold);
}
.media-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-color);
}

/* Tabs */
.media-year-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.media-tab {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}
.media-tab:hover {
    border-color: var(--text-blue);
    background: var(--gray-light);
}
.media-tab.active {
    background: var(--text-blue);
    color: #fff;
    border-color: var(--text-blue);
    box-shadow: 0 4px 15px rgba(11,31,58,0.2);
}

/* Content Container */
.media-year-content {
    display: none;
    animation: fadeIn 0.5s ease;
}
.media-year-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Press Grid */
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}
@media (min-width: 1025px) {
    .press-card--featured {
        grid-column: span 2;
        grid-row: span 2;
    }
}
.press-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: var(--text-blue);
}
.press-card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-gold);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}
.press-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.press-logo {
    font-size: 1.2rem;
}
.press-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}
.press-headline {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    line-height: 1.35;
    color: var(--text-blue);
    margin-bottom: 1rem;
}
.press-card--featured .press-headline {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.press-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.press-card--featured .press-excerpt {
    font-size: 1.1rem;
}
.press-read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}
.press-card:hover .press-read-more .arrow {
    transform: translateX(4px) translateY(-4px);
}
.press-read-more .arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Videos */
.media-videos-header {
    margin: 0 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}
.media-videos-header h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-blue);
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.video-grid--single {
    grid-template-columns: minmax(auto, 800px);
    justify-content: center;
}
.video-card {
    background: var(--gray-light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}
.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}
.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video-info {
    padding: 1.5rem;
}
.video-channel {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.5rem;
}
.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-blue);
    line-height: 1.4;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
    .about-hero-heading { font-size: 3.5rem; }
    .hero-badges { padding: 1.25rem 1.5rem; }
    .hero-badge { padding: 0 1.5rem; }
    .hero-badge-num { font-size: 1.6rem; }

    .section-heading-block h2 { font-size: 2.8rem; }
    .who-card--vision { flex: 0 0 280px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .dignitary-category-grid { grid-template-columns: 1fr; }
    .team-section { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    
    .press-grid { grid-template-columns: repeat(2, 1fr); }
    .press-card--featured { grid-column: auto; grid-row: auto; }
    .press-card--featured .press-headline { font-size: 1.5rem; margin-bottom: 1rem; }
    .press-card--featured .press-excerpt { font-size: 1rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-toggle { display: flex; }

    .about-hero { padding: 4rem 0 3rem; }
    .about-hero-heading { font-size: 2.8rem; }
    .about-hero-sub { font-size: 1rem; }

    .hero-badges {
        flex-wrap: wrap;
        justify-content: center;
        padding: 1.25rem;
        gap: 1rem;
    }
    .hero-badge { padding: 0 1.5rem; }
    .hero-badge-divider { display: none; }

    .section-heading-block h2 { font-size: 2.2rem; }

    .who-section {
        flex-direction: column;
        gap: 2rem;
        padding-bottom: 4rem;
    }
    .who-card--vision { flex: none; width: 100%; }

    .founder-card, .founder-card--reverse {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    .founder-avatar { width: 160px; height: 200px; margin: 0 auto; }

    .dignitary-category-card { flex-direction: column; }
    .dcc-photo-slot { width: 100%; height: 160px; }

    .team-section { grid-template-columns: repeat(2, 1fr); }
    .cta-heading { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .media-stats-strip { flex-wrap: wrap; gap: 1.5rem; padding: 1.5rem; }
    .media-stat { width: calc(50% - 1rem); }
    .media-stat-divider { display: none; }
    
    .press-grid { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .media-year-tabs { flex-direction: column; padding: 0 1.5rem; }
    .media-tab { text-align: center; }
}

@media (max-width: 480px) {
    .about-hero-heading { font-size: 2.2rem; }
    .hero-badges { flex-direction: column; gap: 0.75rem; }
    .hero-badge { padding: 0; }

    .section-heading-block h2 { font-size: 1.8rem; }
    .values-grid { grid-template-columns: 1fr; }
    .team-section { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .team-avatar { width: 120px; height: 150px; }

    .timeline { padding-left: 2rem; }
    .timeline-year { font-size: 1.1rem; min-width: 60px; }
    .cta-heading { font-size: 1.6rem; }
    .dcc-list--inline { flex-direction: column; gap: 0.4rem; }
}
