  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --green: #007A5E; --green-dark: #005A44; --green-light: #e6f4f0;
    --red: #CE1126; --red-light: #fdeaec;
    --yellow: #FCD116; --yellow-dark: #b8960e;
    --night: #0B1F14; --ink: #132A1E; --ink2: #1e3d2a;
    --white: #ffffff; --off-white: #f8f7f4;
    --gray-100: #f2f1ee; --gray-200: #e4e3df;
    --gray-400: #9e9c96; --gray-600: #5c5b56; --gray-800: #2c2b28;
    --text: #1a1a18; --text-muted: #5c5b56;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }

  /* NAV */
  .nav {
    position: sticky; top: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 3rem; height: 64px;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s;
  }
  .nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .logo-flag { width: 34px; height: 24px;  overflow: hidden; display: flex; }
  .flag-v { flex: 1; height: 100%; }
  .flag-v.g { background: var(--green); }
  .flag-v.r { background: var(--red); }
  .flag-v.y { background: var(--yellow); display: flex; align-items: center; justify-content: center; }
  .flag-star { font-size: 9px; color: var(--red); line-height: 1; }
  .logo-wordmark { display: flex; flex-direction: column; }
  .logo-main { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: 0.03em; line-height: 1; }
  .logo-main span { color: var(--green); }
  .logo-sub { font-size: 9px; font-weight: 500; color: var(--gray-400); letter-spacing: 0.08em; text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 2rem; }
  .nav-links a { font-size: 13px; font-weight: 500; color: var(--text-muted); text-decoration: none; transition: color 0.2s; position: relative; }
  .nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--green); transform: scaleX(0); transition: transform 0.2s; }
  .nav-links a:hover { color: var(--green); }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
  .nav-links a.active { color: var(--green); }
  .nav-cta { font-size: 13px; font-weight: 600; padding: 9px 22px; background: var(--green); color: #fff; border-radius: 5px; text-decoration: none; transition: background 0.2s; }
  .nav-cta:hover { background: var(--green-dark); }

  /* PAGE HEADER */
  .page-header {
    background: var(--night);
    padding: 3.5rem 3rem 2.5rem;
    position: relative;
    overflow: hidden;
  }
  .page-header::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--green) 33%, var(--red) 33% 66%, var(--yellow) 66%);
  }
  .page-header-orb {
    position: absolute; right: -80px; top: -80px;
    width: 320px; height: 320px; border-radius: 50%;
    border: 1px solid rgba(0,122,94,0.12);
    pointer-events: none;
  }
  .breadcrumb { font-size: 11px; color: rgba(255,255,255,0.3); margin-bottom: 0.75rem; }
  .breadcrumb a { color: inherit; text-decoration: none; }
  .breadcrumb a:hover { color: rgba(255,255,255,0.6); }
  .page-header h1 { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 700; color: #fff; margin-bottom: 0.5rem; animation: fadeUp 0.5s ease both; }
  .page-header h1 em { color: var(--yellow); font-style: normal; }
  .page-header-sub { font-size: 15px; color: rgba(255,255,255,0.45); animation: fadeUp 0.5s 0.1s ease both; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

  /* FILTER BAR */
  .filter-bar {
    display: flex; align-items: center; gap: 10px;
    padding: 1.25rem 3rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-label { font-size: 11px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; margin-right: 6px; }
  .filter-pill {
    font-size: 12px; font-weight: 600;
    padding: 6px 16px; border-radius: 20px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    color: var(--text-muted);
    cursor: pointer; white-space: nowrap;
    transition: all 0.2s;
  }
  .filter-pill:hover { border-color: var(--green); color: var(--green); }
  .filter-pill.active { background: var(--green); color: #fff; border-color: var(--green); }

  /* MAIN LAYOUT */
  .content-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 0; max-width: 100%; }
  .main-col { padding: 2.5rem 3rem 3rem; border-right: 1px solid var(--gray-200); }
  .side-col { padding: 2rem 2rem 3rem; background: var(--off-white); }

  /* FEATURED */
  .featured-article {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
    border: 1px solid var(--gray-200); border-radius: 12px;
    overflow: hidden; margin-bottom: 2.5rem;
    text-decoration: none; color: inherit;
    transition: box-shadow 0.25s;
  }
  .featured-article:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
  .featured-img-col {
    background: linear-gradient(160deg, var(--night), var(--ink2));
    display: flex; align-items: center; justify-content: center;
    font-size: 64px; min-height: 280px;
    position: relative;
  }
  .featured-badge-top {
    position: absolute; top: 14px; left: 14px;
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    background: var(--yellow); color: var(--night);
    padding: 4px 10px; border-radius: 3px;
  }
  .featured-body-col { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
  .featured-cat { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); margin-bottom: 10px; }
  .featured-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; line-height: 1.25; color: var(--ink); margin-bottom: 12px; }
  .featured-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
  .featured-author-row { font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: 8px; }
  .avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #fff; }
  .read-more-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--green); margin-top: 12px; text-decoration: none; transition: gap 0.2s; }
  .read-more-link:hover { gap: 10px; }

  /* ARTICLES GRID */
  .articles-section-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--yellow); display: inline-block; }

  .articles-list { display: flex; flex-direction: column; gap: 0; }
  .article-item {
    display: flex; gap: 1.25rem; padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    text-decoration: none; color: inherit;
    transition: background 0.2s;
  }
  .article-item:last-child { border-bottom: none; }
  .article-item:hover { background: none; }
  .article-thumb {
    width: 100px; height: 80px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; flex-shrink: 0;
    transition: transform 0.2s;
  }
  .article-item:hover .article-thumb { transform: scale(1.03); }
  .article-thumb.g { background: linear-gradient(135deg, var(--green), #009d7a); }
  .article-thumb.r { background: linear-gradient(135deg, var(--red), #e8314a); }
  .article-thumb.y { background: linear-gradient(135deg, var(--yellow-dark), #d4a814); }
  .article-thumb.d { background: linear-gradient(135deg, var(--ink), var(--ink2)); }
  .article-info { flex: 1; }
  .article-cat { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); margin-bottom: 5px; }
  .article-cat.r { color: var(--red); }
  .article-cat.y { color: var(--yellow-dark); }
  .article-title { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 6px; transition: color 0.2s; }
  .article-item:hover .article-title { color: var(--green); }
  .article-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 8px; }
  .article-meta { font-size: 11px; color: var(--gray-400); display: flex; align-items: center; gap: 8px; }
  .meta-sep { color: var(--gray-200); }

  /* DEBATS CALENDRIER */
  .debates-section { margin-top: 3rem; }
  .debates-section-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--red); display: inline-block; }

  .debate-card {
    display: flex; gap: 1.25rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-200); border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--green);
    text-decoration: none; color: inherit;
    background: var(--white);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .debate-card:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
  .debate-card.r { border-left-color: var(--red); }
  .debate-card.y { border-left-color: var(--yellow-dark); }
  .debate-date-col { text-align: center; min-width: 48px; }
  .d-day { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 700; color: var(--green); line-height: 1; }
  .d-day.r { color: var(--red); }
  .d-month { font-size: 10px; font-weight: 600; text-transform: uppercase; color: var(--gray-400); letter-spacing: 0.05em; }
  .debate-info { flex: 1; }
  .debate-title-d { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 5px; line-height: 1.35; }
  .debate-details { font-size: 12px; color: var(--gray-400); margin-bottom: 8px; }
  .debate-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
  .debate-tag-d {
    display: inline-flex; align-items: center;
    font-size: 11px; padding: 4px 11px; border-radius: 4px; font-weight: 600; white-space: nowrap; flex-shrink: 0; align-self: flex-start;
  }
  .tag-live { background: rgba(206,17,38,0.08); color: var(--red); border: 1px solid rgba(206,17,38,0.2); }
  .tag-open { background: rgba(0,122,94,0.08); color: var(--green); border: 1px solid rgba(0,122,94,0.2); }
  .tag-soon { background: var(--gray-100); color: var(--gray-600); border: 1px solid var(--gray-200); }

  /* SIDEBAR */
  .sidebar-widget { margin-bottom: 2rem; }
  .sidebar-widget-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 1rem; }
  .topic-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 12px;
    border: 1px solid var(--gray-200); border-radius: 6px;
    margin-bottom: 6px; background: var(--white);
    font-size: 13px; cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
  .topic-item:hover { border-color: var(--green); color: var(--green); }
  .topic-count { font-size: 11px; color: var(--gray-400); }
  .next-debate-box {
    background: var(--night);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid var(--yellow);
    margin-bottom: 1.5rem;
  }
  .ndb-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--yellow); margin-bottom: 6px; }
  .ndb-title { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.3; }
  .ndb-date { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
  .ndb-btn {
    display: block; text-align: center;
    padding: 10px; background: var(--green); color: #fff;
    border-radius: 6px; font-size: 13px; font-weight: 600;
    text-decoration: none; transition: background 0.2s;
  }
  .ndb-btn:hover { background: var(--green-dark); }

  .newsletter-box {
    background: var(--green-light);
    border-radius: 10px; padding: 1.5rem;
    border: 1px solid rgba(0,122,94,0.15);
  }
  .newsletter-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
  .newsletter-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
  .newsletter-input { display: flex; gap: 8px; }
  .newsletter-input input { flex: 1; padding: 9px 12px; border: 1px solid rgba(0,122,94,0.2); border-radius: 5px; font-size: 13px; font-family: 'DM Sans', sans-serif; outline: none; background: var(--white); }
  .newsletter-input button { padding: 9px 14px; background: var(--green); color: #fff; border: none; border-radius: 5px; font-size: 12px; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
  .newsletter-input button:hover { background: var(--green-dark); }

  /* PAGINATION */
  .pagination { display: flex; gap: 6px; margin-top: 2rem; justify-content: center; }
  .page-btn { width: 36px; height: 36px; border-radius: 6px; border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--text-muted); transition: all 0.2s; text-decoration: none; }
  .page-btn:hover { border-color: var(--green); color: var(--green); }
  .page-btn.active { background: var(--green); color: #fff; border-color: var(--green); }

  /* FOOTER */
  .footer { background: var(--night); padding: 3.5rem 3rem 0; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
  .footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
  .footer-brand-name span { color: var(--yellow); }
  .footer-brand-sub { font-size: 10px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
  .footer-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.65; }
  .footer-col-title { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
  .footer-link { font-size: 13px; color: rgba(255,255,255,0.5); display: block; margin-bottom: 8px; text-decoration: none; transition: color 0.2s; }
  .footer-link:hover { color: rgba(255,255,255,0.85); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
  .footer-stripes { display: flex; gap: 3px; }
  .fstripe { width: 20px; height: 3px; border-radius: 2px; }
  .fstripe.g { background: var(--green); }
  .fstripe.r { background: var(--red); }
  .fstripe.y { background: var(--yellow); }

  @media (max-width: 1000px) {
    .content-wrap { grid-template-columns: 1fr; }
    .side-col { border-top: 1px solid var(--gray-200); }
    .featured-article { grid-template-columns: 1fr; }
    .featured-img-col { min-height: 180px; }
  }
  @media (max-width: 700px) {
    .main-col { padding: 2rem 1.5rem; }
    .side-col { padding: 2rem 1.5rem; }
    .page-header { padding: 2.5rem 1.5rem 2rem; }
    .page-header h1 { font-size: 30px; }
    .filter-bar { padding: 1rem 1.5rem; }
    .nav { padding: 0 1.25rem; }
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

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

  :root {
    --green: #007A5E;
    --green-dark: #005A44;
    --green-light: #e6f4f0;
    --red: #CE1126;
    --red-light: #fdeaec;
    --yellow: #FCD116;
    --yellow-dark: #b8960e;
    --night: #0B1F14;
    --ink: #132A1E;
    --ink2: #1e3d2a;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --gray-100: #f2f1ee;
    --gray-200: #e4e3df;
    --gray-400: #9e9c96;
    --gray-600: #5c5b56;
    --gray-800: #2c2b28;
    --text: #1a1a18;
    --text-muted: #5c5b56;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* âÂÂâÂÂ NAV âÂÂâÂÂ */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 64px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s;
  }
  .nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .flag-v { flex: 1; height: 100%; }
  .flag-v.g { background: var(--green); }
  .flag-v.r { background: var(--red); }
  .flag-v.y { background: var(--yellow); display: flex; align-items: center; justify-content: center; }
  .flag-star { font-size: 9px; color: var(--red); line-height: 1; }
  .logo-wordmark { display: flex; flex-direction: column; }
  .logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.03em;
    line-height: 1;
  }
  .logo-main span { color: var(--green); }
  .logo-sub { font-size: 9px; font-weight: 500; color: var(--gray-400); letter-spacing: 0.08em; text-transform: uppercase; }

  .nav-links { display: flex; align-items: center; gap: 2rem; }
  .nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform 0.2s;
  }
  .nav-links a:hover { color: var(--green); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-links a.active { color: var(--green); }
  .nav-links a.active::after { transform: scaleX(1); }

  .nav-cta {
    font-size: 13px;
    font-weight: 600;
    padding: 9px 22px;
    background: var(--green);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

  .nav-mobile-btn { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .nav-mobile-btn span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }

  /* âÂÂâÂÂ HERO âÂÂâÂÂ */
  .hero {
    background: var(--night);
    position: relative;
    overflow: hidden;
    padding: 5rem 3rem 4rem;
    min-height: 580px;
    display: flex;
    align-items: center;
  }
  .hero-stripe {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    display: flex;
  }
  .stripe { flex: 1; }
  .stripe.g { background: var(--green); }
  .stripe.r { background: var(--red); }
  .stripe.y { background: var(--yellow); }

  .hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-orb-1 {
    width: 500px; height: 500px;
    right: -100px; top: -150px;
    border: 1px solid rgba(0,122,94,0.15);
    animation: orbit 20s linear infinite;
  }
  .hero-orb-2 {
    width: 300px; height: 300px;
    right: 50px; top: -50px;
    border: 1px solid rgba(252,209,22,0.1);
    animation: orbit 14s linear infinite reverse;
  }
  .hero-orb-3 {
    width: 180px; height: 180px;
    right: 140px; top: 40px;
    background: radial-gradient(circle, rgba(0,122,94,0.07) 0%, transparent 70%);
  }
  .hero-dots {
    position: absolute;
    right: 3rem; bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(8, 6px);
    grid-template-rows: repeat(5, 6px);
    gap: 8px;
    opacity: 0.12;
  }
  .hero-dots span { width: 3px; height: 3px; border-radius: 50%; background: var(--yellow); display: block; }

  @keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .hero-content { position: relative; z-index: 1; max-width: 620px; }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(0,122,94,0.18);
    color: #5eceb5;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,122,94,0.3);
    animation: fadeUp 0.6s ease both;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  .hero h1 em { color: var(--yellow); font-style: normal; }
  .hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s 0.2s ease both;
  }
  .hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
  }
  .btn-primary {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    background: var(--green);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
  .btn-ghost {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

  .hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    animation: fadeUp 0.6s 0.4s ease both;
  }
  .stat-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
  }
  .stat-l { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 4px; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* âÂÂâÂÂ VALUES BAND âÂÂâÂÂ */
  .values-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--green);
  }
  .value-item {
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: background 0.2s;
  }
  .value-item:last-child { border-right: none; }
  .value-item:hover { background: var(--green-dark); }
  .value-icon { font-size: 22px; margin-bottom: 6px; }
  .value-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); }

  /* âÂÂâÂÂ SECTIONS âÂÂâÂÂ */
  .section { padding: 4rem 3rem; }
  .section-alt { background: var(--off-white); }
  .section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; }
  .section-heading { }
  .section-accent { display: inline-block; width: 32px; height: 3px; background: var(--yellow); border-radius: 2px; margin-bottom: 8px; }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
  }
  .see-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
    white-space: nowrap;
  }
  .see-more:hover { gap: 10px; }

  /* âÂÂâÂÂ CARDS ACTU âÂÂâÂÂ */
  .cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .card {
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); }
  .card-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
  }
  .card-img.g { background: linear-gradient(135deg, var(--green), #009d7a); }
  .card-img.r { background: linear-gradient(135deg, var(--red), #e8314a); }
  .card-img.y { background: linear-gradient(135deg, var(--yellow-dark), #d4a814); }
  .card-body { padding: 1.25rem; }
  .card-cat {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 6px;
  }
  .card-cat.r { color: var(--red); }
  .card-cat.y { color: var(--yellow-dark); }
  .card-title { font-size: 15px; font-weight: 600; line-height: 1.4; color: var(--text); margin-bottom: 8px; }
  .card-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 10px; }
  .card-meta { font-size: 11px; color: var(--gray-400); display: flex; align-items: center; gap: 6px; }
  .meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-400); }

  /* âÂÂâÂÂ FEATURED + SIDEBAR âÂÂâÂÂ */
  .two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
  .featured-card {
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .featured-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
  .featured-img {
    height: 260px;
    background: linear-gradient(160deg, var(--night) 0%, var(--ink2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    position: relative;
  }
  .featured-tag {
    position: absolute;
    bottom: 14px; left: 14px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--yellow);
    color: var(--night);
    padding: 4px 10px;
    border-radius: 3px;
  }
  .featured-body { padding: 1.75rem; }
  .featured-cat { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); margin-bottom: 8px; }
  .featured-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; line-height: 1.25; color: var(--ink); margin-bottom: 10px; }
  .featured-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
  .featured-author { font-size: 12px; color: var(--gray-400); }

  .sidebar-box {
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
  }
  .sidebar-head { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--gray-200); }
  .sidebar-title { font-size: 13px; font-weight: 600; color: var(--ink); }
  .sidebar-body { padding: 1rem; }
  .debate-mini {
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 3px solid var(--green);
    transition: background 0.2s;
  }
  .debate-mini:last-child { margin-bottom: 0; }
  .debate-mini:hover { background: var(--gray-100); }
  .debate-mini.r { border-left-color: var(--red); }
  .debate-mini-date { font-size: 10px; font-weight: 600; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
  .debate-mini-date.r { color: var(--red); }
  .debate-mini-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.35; margin-bottom: 6px; }
  .debate-mini-loc { font-size: 11px; color: var(--gray-400); }
  .register-btn {
    display: block;
    text-align: center;
    margin: 1rem 1rem 1rem;
    padding: 10px;
    background: var(--green);
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
  }
  .register-btn:hover { background: var(--green-dark); }

  /* âÂÂâÂÂ DEBATS LISTE âÂÂâÂÂ */
  .debate-list { display: flex; flex-direction: column; gap: 12px; }
  .debate-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
    border-left: 4px solid var(--green);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .debate-item:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
  .debate-item.r { border-left-color: var(--red); }
  .debate-date-box { text-align: center; min-width: 44px; }
  .dday {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
  }
  .dday.r { color: var(--red); }
  .dmonth { font-size: 10px; font-weight: 600; text-transform: uppercase; color: var(--gray-400); letter-spacing: 0.05em; }
  .debate-info { flex: 1; }
  .debate-title-main { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; line-height: 1.35; }
  .debate-meta-info { font-size: 12px; color: var(--gray-400); }
  .debate-tag {
    font-size: 11px;
    padding: 4px 11px;
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .tag-live { background: rgba(206,17,38,0.08); color: var(--red); border: 1px solid rgba(206,17,38,0.2); }
  .tag-open { background: rgba(0,122,94,0.08); color: var(--green); border: 1px solid rgba(0,122,94,0.2); }
  .tag-soon { background: var(--gray-100); color: var(--gray-600); border: 1px solid var(--gray-200); }

  /* âÂÂâÂÂ PUBLICATIONS âÂÂâÂÂ */
  .pub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .pub-card {
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .pub-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .pub-icon {
    width: 52px; height: 64px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
  }
  .pub-icon.g { background: linear-gradient(135deg, var(--green), #009d7a); }
  .pub-icon.r { background: linear-gradient(135deg, var(--red), #e8314a); }
  .pub-icon.y { background: linear-gradient(135deg, var(--yellow-dark), #d4a814); }
  .pub-icon.d { background: linear-gradient(135deg, var(--ink), var(--ink2)); }
  .pub-type-lbl { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 5px; }
  .pub-name { font-size: 14px; font-weight: 600; line-height: 1.35; color: var(--text); margin-bottom: 8px; }
  .pub-dl { font-size: 12px; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 5px; }

  /* âÂÂâÂÂ CTA BAND âÂÂâÂÂ */
  .cta-band {
    background: linear-gradient(135deg, var(--night) 0%, var(--ink2) 100%);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green) 33%, var(--red) 33% 66%, var(--yellow) 66%);
  }
  .cta-band h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
  }
  .cta-band h2 em { color: var(--yellow); font-style: normal; }
  .cta-band p { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 2rem; }
  .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-yellow {
    font-size: 14px;
    font-weight: 700;
    padding: 13px 32px;
    background: var(--yellow);
    color: var(--night);
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-yellow:hover { background: #e6be10; transform: translateY(-2px); }

  /* âÂÂâÂÂ FOOTER âÂÂâÂÂ */
  .footer {
    background: var(--night);
    padding: 3.5rem 3rem 0;
  }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
  .footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
  .footer-brand-name span { color: var(--yellow); }
  .footer-brand-sub { font-size: 10px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
  .footer-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.65; }
  .footer-socials { display: flex; gap: 10px; margin-top: 1.25rem; }
  .social-btn {
    width: 32px; height: 32px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .social-btn:hover { border-color: var(--green); background: rgba(0,122,94,0.15); }
  .footer-col-title { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
  .footer-link { font-size: 13px; color: rgba(255,255,255,0.5); display: block; margin-bottom: 8px; text-decoration: none; transition: color 0.2s; }
  .footer-link:hover { color: rgba(255,255,255,0.85); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
  .footer-stripes { display: flex; gap: 3px; }
  .fstripe { width: 20px; height: 3px; border-radius: 2px; }
  .fstripe.g { background: var(--green); }
  .fstripe.r { background: var(--red); }
  .fstripe.y { background: var(--yellow); }

  /* âÂÂâÂÂ RESPONSIVE âÂÂâÂÂ */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-mobile-btn { display: flex; }
    .hero { padding: 4rem 1.5rem 3rem; }
    .hero h1 { font-size: 36px; }
    .section { padding: 3rem 1.5rem; }
    .cards-grid { grid-template-columns: 1fr 1fr; }
    .pub-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .values-band { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  }
  @media (max-width: 600px) {
    .nav { padding: 0 1.25rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-band h2 { font-size: 28px; }
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --green: #007A5E; --green-dark: #005A44; --green-light: #e6f4f0;
    --red: #CE1126; --red-light: #fdeaec;
    --yellow: #FCD116; --yellow-dark: #b8960e;
    --night: #0B1F14; --ink: #132A1E; --ink2: #1e3d2a;
    --white: #ffffff; --off-white: #f8f7f4;
    --gray-100: #f2f1ee; --gray-200: #e4e3df;
    --gray-400: #9e9c96; --gray-600: #5c5b56;
    --text: #1a1a18; --text-muted: #5c5b56;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }

  /* NAV */
  .nav { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 3rem; height: 64px; background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--gray-200); transition: box-shadow 0.3s; }
  .nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }.flag-v { flex: 1; height: 100%; }
  .flag-v.g { background: var(--green); }
  .flag-v.r { background: var(--red); }
  .flag-v.y { background: var(--yellow); display: flex; align-items: center; justify-content: center; }
  .flag-star { font-size: 9px; color: var(--red); line-height: 1; }
  .logo-main { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: 0.03em; line-height: 1; }
  .logo-main span { color: var(--green); }
  .logo-sub { font-size: 9px; font-weight: 500; color: var(--gray-400); letter-spacing: 0.08em; text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 2rem; }
  .nav-links a { font-size: 13px; font-weight: 500; color: var(--text-muted); text-decoration: none; transition: color 0.2s; position: relative; }
  .nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--green); transform: scaleX(0); transition: transform 0.2s; }
  .nav-links a:hover { color: var(--green); }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
  .nav-links a.active { color: var(--green); }
  .nav-cta { font-size: 13px; font-weight: 600; padding: 9px 22px; background: var(--green); color: #fff; border-radius: 5px; text-decoration: none; transition: background 0.2s; }
  .nav-cta:hover { background: var(--green-dark); }

  /* PAGE HEADER */
  .page-header {
    background: var(--night); padding: 3.5rem 3rem 3rem;
    position: relative; overflow: hidden;
  }
  .page-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--green) 33%, var(--red) 33% 66%, var(--yellow) 66%); }
  .header-inner { display: flex; align-items: flex-end; justify-content: space-between; position: relative; z-index: 1; }
  .header-orb { position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(0,122,94,0.1); pointer-events: none; }
  .breadcrumb { font-size: 11px; color: rgba(255,255,255,0.3); margin-bottom: 0.75rem; }
  .breadcrumb a { color: inherit; text-decoration: none; }
  .page-title-h { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 700; color: #fff; margin-bottom: 0.5rem; animation: fadeUp 0.5s ease both; }
  .page-title-h em { color: var(--yellow); font-style: normal; }
  .page-header-sub { font-size: 15px; color: rgba(255,255,255,0.45); max-width: 540px; line-height: 1.6; animation: fadeUp 0.5s 0.1s ease both; }
  .header-search {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; padding: 10px 16px; min-width: 260px;
    animation: fadeUp 0.5s 0.15s ease both;
  }
  .header-search input { background: none; border: none; outline: none; font-size: 14px; color: #fff; font-family: 'DM Sans', sans-serif; width: 100%; }
  .header-search input::placeholder { color: rgba(255,255,255,0.35); }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

  /* STATS ROW */
  .stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--green);
  }
  .stat-box {
    padding: 1.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.12);
    cursor: pointer;
    transition: background 0.2s;
  }
  .stat-box:last-child { border-right: none; }
  .stat-box:hover, .stat-box.active-filter { background: var(--green-dark); }
  .stat-box-icon { font-size: 24px; margin-bottom: 6px; }
  .stat-box-num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 2px; }
  .stat-box-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); }

  /* TABS */
  .tabs-bar {
    display: flex; align-items: center;
    padding: 0 3rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
    overflow-x: auto; scrollbar-width: none;
  }
  .tabs-bar::-webkit-scrollbar { display: none; }
  .tab {
    font-size: 13px; font-weight: 600;
    padding: 1rem 1.5rem;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    cursor: pointer; white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
  }
  .tab:hover { color: var(--green); }
  .tab.active { color: var(--green); border-bottom-color: var(--green); }
  .tab-count { font-size: 10px; background: var(--gray-100); color: var(--gray-600); padding: 1px 6px; border-radius: 10px; margin-left: 5px; }
  .tab.active .tab-count { background: var(--green-light); color: var(--green); }

  /* MAIN CONTENT */
  .publications-wrap { display: grid; grid-template-columns: 1fr 300px; }
  .pub-main { padding: 2.5rem 3rem; }
  .pub-aside { padding: 2rem; background: var(--off-white); border-left: 1px solid var(--gray-200); }

  /* SORT / VIEW BAR */
  .sort-bar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  .sort-bar-left { font-size: 13px; color: var(--text-muted); }
  .sort-bar-left strong { color: var(--text); font-weight: 600; }
  .sort-bar-right { display: flex; align-items: center; gap: 12px; }
  .sort-select { font-size: 12px; font-family: 'DM Sans', sans-serif; padding: 6px 12px; border: 1px solid var(--gray-200); border-radius: 5px; color: var(--text); background: var(--white); outline: none; cursor: pointer; }
  .view-btns { display: flex; gap: 4px; }
  .view-btn { width: 30px; height: 30px; border: 1px solid var(--gray-200); border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; transition: all 0.2s; }
  .view-btn.active, .view-btn:hover { border-color: var(--green); background: var(--green-light); }

  /* PUB LIST VIEW */
  .pub-list { display: flex; flex-direction: column; gap: 0; }
  .pub-row {
    display: flex; align-items: flex-start; gap: 1.5rem;
    padding: 1.75rem 0; border-bottom: 1px solid var(--gray-200);
    text-decoration: none; color: inherit;
    transition: background 0.15s;
  }
  .pub-row:last-child { border-bottom: none; }
  .pub-row:hover { background: none; }
  .pub-row:hover .pub-row-title { color: var(--green); }
  .pub-row-icon {
    width: 52px; height: 64px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
    transition: transform 0.2s;
  }
  .pub-row:hover .pub-row-icon { transform: scale(1.05); }
  .pub-row-icon.g { background: linear-gradient(135deg, var(--green), #009d7a); }
  .pub-row-icon.r { background: linear-gradient(135deg, var(--red), #e8314a); }
  .pub-row-icon.y { background: linear-gradient(135deg, var(--yellow-dark), #d4a814); }
  .pub-row-icon.d { background: linear-gradient(135deg, var(--ink), var(--ink2)); }
  .pub-row-body { flex: 1; }
  .pub-row-top { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; flex-wrap: wrap; }
  .pub-type-badge {
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
    padding: 3px 9px; border-radius: 3px;
  }
  .badge-g { background: rgba(0,122,94,0.1); color: var(--green); }
  .badge-r { background: rgba(206,17,38,0.08); color: var(--red); }
  .badge-y { background: rgba(184,150,14,0.12); color: var(--yellow-dark); }
  .badge-d { background: var(--gray-100); color: var(--gray-600); }
  .pub-row-date { font-size: 11px; color: var(--gray-400); }
  .pub-row-title { font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 6px; transition: color 0.2s; }
  .pub-row-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
  .pub-row-tags { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
  .ptag { font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 3px; background: var(--gray-100); color: var(--gray-600); border: 1px solid var(--gray-200); }
  .pub-row-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; padding-left: 1rem; }
  .dl-btn {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: var(--green);
    padding: 8px 18px; border: 1.5px solid var(--green);
    border-radius: 6px; text-decoration: none; white-space: nowrap;
    transition: background 0.2s, color 0.2s;
  }
  .dl-btn:hover { background: var(--green); color: #fff; }
  .pub-pages { font-size: 11px; color: var(--gray-400); }

  /* GRID VIEW */
  .pub-grid-view { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .pub-grid-card {
    border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden;
    text-decoration: none; color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex; flex-direction: column;
  }
  .pub-grid-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); }
  .pub-grid-img { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 36px; }
  .pub-grid-img.g { background: linear-gradient(135deg, var(--green), #009d7a); }
  .pub-grid-img.r { background: linear-gradient(135deg, var(--red), #e8314a); }
  .pub-grid-img.y { background: linear-gradient(135deg, var(--yellow-dark), #d4a814); }
  .pub-grid-img.d { background: linear-gradient(135deg, var(--ink), var(--ink2)); }
  .pub-grid-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
  .pub-grid-type { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; }
  .pub-grid-title { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 10px; flex: 1; }
  .pub-grid-footer { display: flex; align-items: center; justify-content: space-between; }
  .pub-grid-date { font-size: 11px; color: var(--gray-400); }
  .pub-grid-dl { font-size: 12px; font-weight: 600; color: var(--green); }

  /* ASIDE */
  .aside-widget { margin-bottom: 2rem; }
  .aside-widget-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 1rem; }

  .theme-filter-list { display: flex; flex-direction: column; gap: 6px; }
  .theme-filter-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 12px; border: 1px solid var(--gray-200);
    border-radius: 6px; background: var(--white); cursor: pointer;
    font-size: 13px; transition: all 0.2s;
  }
  .theme-filter-item:hover { border-color: var(--green); color: var(--green); }
  .theme-filter-item.active { background: var(--green-light); border-color: var(--green); color: var(--green); font-weight: 600; }
  .theme-count { font-size: 11px; color: var(--gray-400); background: var(--gray-100); padding: 1px 7px; border-radius: 10px; }

  .featured-pub-box {
    border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; margin-bottom: 1.5rem;
    text-decoration: none; color: inherit; display: block;
    transition: box-shadow 0.2s;
  }
  .featured-pub-box:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.09); }
  .featured-pub-img { height: 100px; background: linear-gradient(135deg, var(--night), var(--ink2)); display: flex; align-items: center; justify-content: center; font-size: 32px; }
  .featured-pub-body { padding: 1rem; }
  .featured-pub-badge { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--yellow-dark); margin-bottom: 5px; }
  .featured-pub-title { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 8px; }
  .featured-pub-dl { font-size: 12px; font-weight: 600; color: var(--green); }

  .suggest-box {
    background: var(--night); border-radius: 10px; padding: 1.5rem;
    text-align: center;
  }
  .suggest-box p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 1rem; line-height: 1.5; }
  .suggest-btn {
    display: block; padding: 10px; background: var(--yellow); color: var(--night);
    border-radius: 6px; font-size: 13px; font-weight: 700;
    text-decoration: none; transition: background 0.2s;
  }
  .suggest-btn:hover { background: #e6be10; }

  /* PAGINATION */
  .pagination { display: flex; gap: 6px; margin-top: 2.5rem; justify-content: center; }
  .page-btn { width: 36px; height: 36px; border-radius: 6px; border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--text-muted); text-decoration: none; transition: all 0.2s; }
  .page-btn:hover { border-color: var(--green); color: var(--green); }
  .page-btn.active { background: var(--green); color: #fff; border-color: var(--green); }

  /* FOOTER */
  .footer { background: var(--night); padding: 3.5rem 3rem 0; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
  .footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
  .footer-brand-name span { color: var(--yellow); }
  .footer-brand-sub { font-size: 10px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
  .footer-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.65; }
  .footer-col-title { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
  .footer-link { font-size: 13px; color: rgba(255,255,255,0.5); display: block; margin-bottom: 8px; text-decoration: none; transition: color 0.2s; }
  .footer-link:hover { color: rgba(255,255,255,0.85); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
  .footer-stripes { display: flex; gap: 3px; }
  .fstripe { width: 20px; height: 3px; border-radius: 2px; }
  .fstripe.g { background: var(--green); }
  .fstripe.r { background: var(--red); }
  .fstripe.y { background: var(--yellow); }

  @media (max-width: 1000px) {
    .publications-wrap { grid-template-columns: 1fr; }
    .pub-aside { border-left: none; border-top: 1px solid var(--gray-200); }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 700px) {
    .nav { padding: 0 1.25rem; }
    .nav-links { display: none; }
    .page-header { padding: 2.5rem 1.5rem; }
    .page-title-h { font-size: 30px; }
    .header-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .header-search { width: 100%; }
    .tabs-bar { padding: 0 1.5rem; }
    .pub-main { padding: 2rem 1.5rem; }
    .pub-row { flex-wrap: wrap; }
    .pub-row-actions { width: 100%; flex-direction: row; padding-left: 0; padding-top: 0.5rem; }
    .pub-grid-view { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
  }
