/* ═══════════════════════════════════════════════════════════════
   SITE OFFICIEL — JEAN THIERRY MONSENEPWO
   style.css — Design institutionnel (inspiration paulkagame.rw)
   Palette : bleu royal #0f2b46 · or/bronze #c5a059 · blanc
   ═══════════════════════════════════════════════════════════════ */

:root {
    --blue-deep:   #0f2b46;
    --blue-darker: #0a1f33;
    --blue-block:  #16395c;   /* category header blocks */
    --blue-border: #2c527a;
    --gold:        #c5a059;
    --gold-light:  #d9bc84;
    --white:       #ffffff;
    --off-white:   #f5f7fa;
    --ink:         #1c2733;
    --grey:        #6b7885;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'Jost', 'Segoe UI', sans-serif;

    --topbar-h: 38px;
    --header-h: 86px;
    --maxw: 1240px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
body.menu-open { overflow: hidden; }

/* ═══════════════ TOP BAR — Language toggle ═══════════════ */
.topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
    height: var(--topbar-h);
    background: var(--blue-darker);
    border-bottom: 1px solid rgba(197, 160, 89, .25);
}
.topbar__inner {
    max-width: var(--maxw); margin: 0 auto; height: 100%;
    padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.topbar__note {
    color: var(--gold-light);
    font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lang-toggle { display: flex; align-items: center; gap: 8px; }
.lang-toggle__btn {
    color: rgba(255, 255, 255, .55);
    font-size: .78rem; font-weight: 600; letter-spacing: .12em;
    padding: 3px 8px; border-radius: 3px;
    transition: color .25s, background .25s;
}
.lang-toggle__btn:hover { color: var(--white); }
.lang-toggle__btn.is-active { color: var(--blue-deep); background: var(--gold); }
.lang-toggle__sep { color: rgba(255, 255, 255, .3); font-size: .75rem; }

/* ═══════════════ HEADER ═══════════════ */
.site-header {
    position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 1000;
    height: var(--header-h);
    background: var(--blue-deep);
    box-shadow: 0 2px 18px rgba(10, 31, 51, .35);
}
.site-header__inner {
    max-width: var(--maxw); margin: 0 auto; height: 100%;
    padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    position: relative;
}
.brand { display: flex; flex-direction: column; align-items: center; text-align: center;
         position: absolute; left: 50%; transform: translateX(-50%); }
.brand__name {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 1.65rem; font-weight: 600;
    letter-spacing: .16em; text-transform: uppercase;
    line-height: 1.15;
}
.brand__title {
    color: var(--gold-light);
    font-size: .64rem; letter-spacing: .3em; text-transform: uppercase;
    margin-top: 4px;
}

/* Hamburger */
.menu-trigger {
    margin-left: auto;
    width: 44px; height: 44px;
    background: transparent; border: none; cursor: pointer;
    display: flex; flex-direction: column; justify-content: center; align-items: flex-end;
    gap: 6px; z-index: 2;
}
.menu-trigger__bar {
    display: block; height: 2px; background: var(--white);
    border-radius: 2px;
    transition: width .3s var(--ease), background .3s;
}
.menu-trigger__bar:nth-child(1) { width: 30px; }
.menu-trigger__bar:nth-child(2) { width: 22px; }
.menu-trigger__bar:nth-child(3) { width: 30px; }
.menu-trigger:hover .menu-trigger__bar { width: 30px; background: var(--gold); }

/* ═══════════════ MEGA MENU — full-screen overlay (Kagame style) ═══════════════ */
.mega-menu {
    position: fixed; inset: 0; z-index: 2000;
    background: var(--blue-deep);
    display: flex; flex-direction: column;
    opacity: 0; visibility: hidden;
    transform: translateY(-3%);
    transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
    overflow-y: auto;
}
.mega-menu.is-open {
    opacity: 1; visibility: visible; transform: translateY(0);
}

.mega-menu__head {
    display: flex; align-items: center; justify-content: center;
    position: relative;
    padding: 26px 24px 10px;
    max-width: var(--maxw); margin: 0 auto; width: 100%;
}
.brand--menu { position: static; transform: none; }

.menu-close {
    position: absolute; right: 24px; top: 30px;
    width: 40px; height: 40px;
    background: transparent; border: none; cursor: pointer;
}
.menu-close span {
    position: absolute; left: 50%; top: 50%;
    width: 28px; height: 2px; background: var(--white);
    transition: background .25s;
}
.menu-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.menu-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
.menu-close:hover span { background: var(--gold); }

.mega-menu__body {
    max-width: var(--maxw); margin: 0 auto; width: 100%;
    padding: 28px 24px 60px;
}

/* ── 5 category columns ── */
.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.mega-menu__col { min-width: 0; }

/* Category header block — lighter blue rectangle, Kagame style */
.mega-menu__cat {
    background: var(--blue-block);
    border: 1px solid var(--blue-border);
    color: var(--white);
    font-size: .82rem; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase;
    text-align: center;
    padding: 20px 10px;
    margin-bottom: 14px;
    border-radius: 2px;
    transition: border-color .3s;
}
.mega-menu__col:hover .mega-menu__cat { border-color: var(--gold); }

/* Links — clean white rectangular blocks */
.mega-menu__links { display: flex; flex-direction: column; gap: 8px; }
.mega-menu__link {
    display: block;
    background: var(--white);
    color: var(--ink);
    font-size: .88rem; font-weight: 500;
    padding: 11px 14px;
    border-radius: 2px;
    border-left: 3px solid transparent;
    transition: border-color .25s, background .25s, color .25s, transform .25s var(--ease);
}
.mega-menu__link:hover {
    border-left-color: var(--gold);
    background: var(--off-white);
    transform: translateX(4px);
}
.mega-menu__link.is-current {
    border-left-color: var(--gold);
    background: var(--gold);
    color: var(--blue-deep);
    font-weight: 600;
}

.mega-menu__divider {
    height: 1px; background: rgba(255, 255, 255, .18);
    margin: 34px 0 26px;
}

/* ── Search pill (Kagame style) ── */
.menu-search {
    display: flex; align-items: center;
    margin-left: auto;
    max-width: 320px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
    padding: 4px 6px 4px 18px;
    transition: border-color .3s;
}
.menu-search:focus-within { border-color: var(--gold); }
.menu-search__input {
    flex: 1; min-width: 0;
    background: transparent; border: none; outline: none;
    color: var(--white);
    font-family: var(--font-sans); font-size: .9rem;
    padding: 6px 0;
}
.menu-search__input::placeholder { color: rgba(255, 255, 255, .55); }
.menu-search__btn {
    width: 34px; height: 34px; flex: none;
    border: none; border-radius: 50%; cursor: pointer;
    background: var(--white); color: var(--blue-deep);
    display: flex; align-items: center; justify-content: center;
    transition: background .3s, color .3s;
}
.menu-search__btn:hover { background: var(--gold); color: var(--white); }

.mega-menu__lang {
    display: flex; gap: 22px; justify-content: flex-end;
    margin-top: 22px;
}
.mega-menu__lang a {
    color: rgba(255, 255, 255, .55);
    font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
    padding-bottom: 3px; border-bottom: 1px solid transparent;
    transition: color .25s, border-color .25s;
}
.mega-menu__lang a:hover { color: var(--white); }
.mega-menu__lang a.is-active { color: var(--gold); border-bottom-color: var(--gold); }

/* ═══════════════ PAGE LAYOUT ═══════════════ */
main { padding-top: calc(var(--topbar-h) + var(--header-h)); }

/* ── Hero slider ── */
.hero {
    position: relative;
    height: min(calc(100vh - var(--topbar-h) - var(--header-h)), 680px);
    min-height: 480px;
    overflow: hidden;
    background: var(--blue-darker);
}
.hero__slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1s var(--ease);
}
/* Blurred cover backdrop fills the frame edges */
.hero__slide-bg {
    position: absolute; inset: -30px;
    background-size: cover; background-position: center;
    filter: blur(26px) brightness(.55) saturate(1.05);
}
/* Full photo, entirely visible, centered */
.hero__slide-img {
    position: absolute; inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.hero__slide.is-active { opacity: 1; z-index: 1; }
.hero__slide::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10, 31, 51, .9) 0%, rgba(10, 31, 51, .32) 42%, rgba(10, 31, 51, .08) 100%);
}
.hero__caption {
    position: absolute; z-index: 2;
    left: 0; right: 0; bottom: 72px;
    max-width: var(--maxw); margin: 0 auto;
    padding: 0 88px;
    color: var(--white);
}
.hero__accent {
    display: block; width: 54px; height: 4px;
    background: var(--gold); margin-bottom: 18px;
}
.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3.6vw, 2.9rem);
    font-weight: 600; line-height: 1.18;
    max-width: 820px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .4);
}
.hero__sub {
    margin-top: 10px;
    font-size: clamp(.85rem, 1.4vw, 1.05rem);
    color: rgba(255, 255, 255, .85);
    letter-spacing: .06em;
}
.hero__cta {
    display: inline-block; margin-top: 22px;
    padding: 11px 30px;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: .8rem; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase;
    transition: background .3s, color .3s;
}
.hero__cta:hover { background: var(--gold); color: var(--blue-deep); }

/* slider arrows */
.hero__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 3;
    width: 52px; height: 52px;
    background: rgba(15, 43, 70, .45);
    border: 1px solid rgba(255, 255, 255, .3);
    color: var(--white);
    cursor: pointer; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background .3s, border-color .3s;
}
.hero__nav:hover { background: var(--gold); border-color: var(--gold); }
.hero__nav--prev { left: 22px; }
.hero__nav--next { right: 22px; }

/* slider dots */
.hero__dots {
    position: absolute; z-index: 3;
    bottom: 26px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px;
}
.hero__dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    border: none; cursor: pointer;
    transition: background .3s, transform .3s;
}
.hero__dot.is-active { background: var(--gold); transform: scale(1.25); }

/* ── Generic sections ── */
.section { padding: 84px 24px; }
.section--tint { background: var(--off-white); }
.section--blue { background: var(--blue-deep); color: var(--white); }
.section__inner { max-width: var(--maxw); margin: 0 auto; }

.section__eyebrow {
    color: var(--gold);
    font-size: .74rem; font-weight: 600;
    letter-spacing: .3em; text-transform: uppercase;
    margin-bottom: 12px;
}
.section__title {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 600; color: var(--blue-deep);
    line-height: 1.2; margin-bottom: 26px;
}
.section--blue .section__title { color: var(--white); }

/* About split */
.about-split {
    display: grid; grid-template-columns: 380px 1fr;
    gap: 60px; align-items: center;
}
.about-split__photo {
    border-radius: 4px; overflow: hidden;
    box-shadow: 18px 18px 0 rgba(197, 160, 89, .35);
}
.about-split__text p { color: var(--grey); font-size: 1.02rem; margin-bottom: 20px; }
.link-gold {
    color: var(--gold); font-weight: 600;
    font-size: .84rem; letter-spacing: .16em; text-transform: uppercase;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 3px;
    transition: color .3s, border-color .3s;
}
.link-gold:hover { color: var(--blue-deep); border-color: var(--blue-deep); }

/* News cards */
.news-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.news-card {
    background: var(--white);
    border: 1px solid #e3e8ee; border-radius: 4px;
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(15, 43, 70, .14); }
.news-card__img { height: 190px; background-size: cover; background-position: center; }
.news-card__body { padding: 22px; }
.news-card__date {
    color: var(--gold); font-size: .72rem; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase;
}
.news-card__title {
    font-family: var(--font-serif);
    font-size: 1.2rem; font-weight: 600; color: var(--blue-deep);
    margin: 10px 0 8px; line-height: 1.3;
}
.news-card__excerpt { color: var(--grey); font-size: .9rem; }
.news-card__more {
    display: inline-block; margin-top: 14px;
    color: var(--blue-deep); font-size: .78rem; font-weight: 600;
    letter-spacing: .16em; text-transform: uppercase;
}
.news-card__more:hover { color: var(--gold); }

/* Vision pillars */
.pillar-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.pillar {
    background: var(--blue-block);
    border: 1px solid var(--blue-border);
    border-radius: 3px;
    padding: 30px 20px;
    text-align: center;
    transition: border-color .3s, transform .35s var(--ease);
}
.pillar:hover { border-color: var(--gold); transform: translateY(-5px); }
.pillar__num {
    font-family: var(--font-serif);
    color: var(--gold); font-size: 1.9rem; font-weight: 700;
}
.pillar__name {
    color: var(--white); font-size: .86rem; font-weight: 500;
    letter-spacing: .08em; margin-top: 10px; line-height: 1.4;
}

/* ── Inner page hero (small banner) ── */
.page-hero {
    background: linear-gradient(rgba(15, 43, 70, .82), rgba(15, 43, 70, .82)),
                var(--blue-deep) center/cover;
    padding: 84px 24px 70px;
    text-align: center; color: var(--white);
}
.page-hero__eyebrow {
    color: var(--gold); font-size: .74rem; font-weight: 600;
    letter-spacing: .3em; text-transform: uppercase;
}
.page-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 600; margin-top: 12px;
}

/* Under construction block */
.construction {
    text-align: center;
    padding: 110px 24px 130px;
}
.construction__icon {
    width: 74px; height: 74px; margin: 0 auto 28px;
    border: 2px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.construction__title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--blue-deep); font-weight: 600;
}
.construction__sub { color: var(--grey); margin-top: 12px; font-size: 1rem; }
.construction .link-gold { display: inline-block; margin-top: 30px; }

/* ═══════════════ FOOTER ═══════════════ */
.site-footer { background: var(--blue-darker); color: rgba(255, 255, 255, .8); }
.site-footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 70px 24px 0; }
.site-footer__grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 56px; padding-bottom: 54px;
}
.site-footer__brand {
    font-family: var(--font-serif);
    color: var(--white); font-size: 1.35rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 16px;
}
.site-footer__text { font-size: .9rem; color: rgba(255, 255, 255, .65); margin-bottom: 14px; }
.site-footer__text--small { font-size: .82rem; }
.site-footer__more { color: var(--gold-light); font-size: .82rem; letter-spacing: .08em; }
.site-footer__more:hover { color: var(--gold); }
.site-footer__heading {
    color: var(--gold); font-size: .76rem; font-weight: 600;
    letter-spacing: .26em; text-transform: uppercase;
    margin-bottom: 18px;
}
.site-footer__heading--follow { margin-top: 28px; }
.site-footer__nav li { margin-bottom: 9px; }
.site-footer__nav a {
    font-size: .9rem; color: rgba(255, 255, 255, .7);
    transition: color .25s, padding-left .25s;
}
.site-footer__nav a:hover { color: var(--gold-light); padding-left: 5px; }

.footer-subscribe { display: flex; margin-bottom: 8px; }
.footer-subscribe__input {
    flex: 1; min-width: 0;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .25); border-right: none;
    border-radius: 3px 0 0 3px;
    color: var(--white); font-family: var(--font-sans); font-size: .86rem;
    padding: 11px 14px; outline: none;
}
.footer-subscribe__input::placeholder { color: rgba(255, 255, 255, .45); }
.footer-subscribe__input:focus { border-color: var(--gold); }
.footer-subscribe__btn {
    background: var(--gold); color: var(--blue-deep);
    border: none; border-radius: 0 3px 3px 0;
    font-family: var(--font-sans); font-size: .78rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 0 18px; cursor: pointer;
    transition: background .3s;
}
.footer-subscribe__btn:hover { background: var(--gold-light); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255, 255, 255, .8);
    transition: border-color .3s, color .3s, background .3s;
}
.footer-social a:hover { border-color: var(--gold); background: var(--gold); color: var(--blue-deep); }

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 22px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: .8rem; color: rgba(255, 255, 255, .5);
}
.site-footer__bottom a:hover { color: var(--gold-light); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1100px) {
    .mega-menu__grid { grid-template-columns: repeat(3, 1fr); }
    .pillar-grid { grid-template-columns: repeat(3, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .brand__name { font-size: 1.15rem; }
    .brand__title { font-size: .55rem; letter-spacing: .2em; }
    .about-split { grid-template-columns: 1fr; gap: 36px; }
    .about-split__photo { max-width: 340px; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 40px; }
    .hero__caption { padding: 0 24px; bottom: 88px; }
    .hero__nav { width: 42px; height: 42px; }
    .hero__nav--prev { left: 10px; }
    .hero__nav--next { right: 10px; }
}

@media (max-width: 640px) {
    .topbar__inner { padding: 0 14px; }
    .topbar__note { font-size: .6rem; }
    .site-header__inner { padding: 0 14px; }
    .brand { position: static; transform: none; align-items: flex-start; text-align: left; }
    .brand--menu { align-items: center; text-align: center; }

    .mega-menu__grid { grid-template-columns: 1fr; gap: 26px; }
    .mega-menu__cat { padding: 14px 10px; }
    .mega-menu__body { padding: 18px 16px 70px; }
    .menu-search { max-width: 100%; margin-left: 0; }
    .mega-menu__lang { justify-content: center; }

    .section { padding: 60px 16px; }
    .news-grid { grid-template-columns: 1fr; }
    .pillar-grid { grid-template-columns: 1fr 1fr; }
    .hero { min-height: 420px; }
    .hero__dots { bottom: 16px; }
    .site-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ═══════════════ RICH CONTENT PAGES ═══════════════ */
.article {
    max-width: 860px; margin: 0 auto;
    padding: 70px 24px 90px;
}
.article p {
    color: #3d4a58; font-size: 1.04rem; line-height: 1.85;
    margin-bottom: 22px;
}
.article h2 {
    font-family: var(--font-serif);
    font-size: 1.65rem; font-weight: 600; color: var(--blue-deep);
    margin: 46px 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(197, 160, 89, .45);
}
.article h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem; font-weight: 600; color: var(--blue-deep);
    margin: 34px 0 14px;
}
.article blockquote {
    border-left: 3px solid var(--gold);
    background: var(--off-white);
    padding: 24px 28px;
    margin: 30px 0;
    font-family: var(--font-serif);
    font-size: 1.12rem; font-style: italic; color: var(--blue-deep);
    line-height: 1.7;
}
.article blockquote cite {
    display: block; margin-top: 12px;
    font-family: var(--font-sans); font-style: normal;
    font-size: .78rem; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}
.article ul { margin: 0 0 22px 22px; }
.article ul li {
    color: #3d4a58; font-size: 1.02rem; line-height: 1.8;
    list-style: none; position: relative; padding-left: 22px; margin-bottom: 10px;
}
.article ul li::before {
    content: ""; position: absolute; left: 0; top: .62em;
    width: 9px; height: 9px;
    background: var(--gold); border-radius: 1px;
}
.article .article__lead {
    font-family: var(--font-serif);
    font-size: 1.28rem; color: var(--blue-deep); line-height: 1.7;
    margin-bottom: 34px;
}

/* Timeline */
.timeline { margin: 40px 0; position: relative; padding-left: 34px; }
.timeline::before {
    content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px;
    width: 2px; background: rgba(197, 160, 89, .5);
}
.timeline__item { position: relative; margin-bottom: 34px; }
.timeline__item::before {
    content: ""; position: absolute; left: -32px; top: 6px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--white); border: 3px solid var(--gold);
}
.timeline__date {
    color: var(--gold); font-size: .78rem; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
}
.timeline__title {
    font-family: var(--font-serif);
    font-size: 1.18rem; font-weight: 600; color: var(--blue-deep);
    margin: 6px 0 8px;
}
.timeline__text { color: #3d4a58; font-size: .98rem; line-height: 1.75; }

/* Fact grid */
.fact-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin: 38px 0;
}
.fact-card {
    background: var(--blue-deep);
    border-radius: 4px; padding: 28px 22px; text-align: center;
}
.fact-card__value {
    font-family: var(--font-serif);
    color: var(--gold); font-size: 2rem; font-weight: 700; line-height: 1.1;
}
.fact-card__label {
    color: rgba(255, 255, 255, .85); font-size: .84rem;
    letter-spacing: .06em; margin-top: 10px; line-height: 1.5;
}

/* Article list (news/tribunes index) */
.article-list { max-width: 900px; margin: 0 auto; padding: 60px 24px 90px; }
.article-item {
    display: grid; grid-template-columns: 150px 1fr;
    gap: 26px; padding: 30px 0;
    border-bottom: 1px solid #e3e8ee;
}
.article-item__date {
    color: var(--gold); font-size: .78rem; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase; padding-top: 5px;
}
.article-item__title {
    font-family: var(--font-serif);
    font-size: 1.3rem; font-weight: 600; color: var(--blue-deep);
    line-height: 1.35; margin-bottom: 8px;
}
.article-item__excerpt { color: #3d4a58; font-size: .96rem; line-height: 1.75; }
.article-item__source {
    display: inline-block; margin-top: 10px;
    color: var(--gold); font-size: .74rem; font-weight: 600;
    letter-spacing: .14em; text-transform: uppercase;
}

@media (max-width: 760px) {
    .fact-grid { grid-template-columns: 1fr; }
    .article-item { grid-template-columns: 1fr; gap: 8px; }
}
