/* ===================================================================
   ACTUALITÉS DE MOPTI — Design system
   Palette inspirée du fleuve Niger/Bani, de l'architecture en banco
   et des couleurs du Mali.
=================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,500&family=Work+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Couleurs — mode clair */
  --riviere: #0E5C7A;
  --riviere-fonce: #0A3F54;
  --riviere-clair: #3E94B5;
  --vert-mali: #17753F;
  --vert-clair: #4FAE72;
  --banco: #C97B3D;
  --banco-clair: #E8C79A;
  --encre: #10242C;
  --papier: #FBFAF6;
  --papier-alt: #F1EEE3;
  --ligne: #E1DCCB;
  --texte-doux: #52625F;

  --bg: var(--papier);
  --bg-alt: var(--papier-alt);
  --surface: #FFFFFF;
  --texte: var(--encre);
  --texte-att: var(--texte-doux);
  --ligne-c: var(--ligne);
  --accent: var(--riviere);
  --accent-2: var(--vert-mali);

  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 4px;
  --shadow: 0 10px 30px -12px rgba(14, 36, 44, 0.18);
}

html.dark {
  --bg: #0A1A20;
  --bg-alt: #0E222A;
  --surface: #122A33;
  --texte: #EFF3EE;
  --texte-att: #A9BCB9;
  --ligne-c: #1E3A42;
  --accent: #5BB6D8;
  --accent-2: #6BC98B;
  --banco: #E3A567;
  --banco-clair: #7A5A3A;
  --shadow: 0 10px 30px -12px rgba(0,0,0,0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--texte);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background .3s ease, color .3s ease;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Eyebrow / labels type agence de presse ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--banco);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--texte);
  letter-spacing: -.01em;
}

/* ---------- Diviseur signature : ligne du fleuve ---------- */
.riviere-divider {
  width: 100%;
  height: 22px;
  margin: 4px 0;
}
.riviere-divider svg { width: 100%; height: 100%; }
.riviere-divider path { stroke: var(--accent); opacity: .55; }

/* ================= TOPBAR ================= */
.topbar {
  background: var(--riviere-fonce);
  color: #EAF3F1;
  font-family: var(--font-mono);
  font-size: 12.5px;
}
html.dark .topbar { background: #071319; }
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 34px;
}
.topbar-social { display: flex; gap: 14px; align-items: center; }
.topbar-social a { opacity: .85; display: flex; align-items: center; justify-content: center; }
.topbar-social a:hover { opacity: 1; color: var(--banco-clair); }

/* ================= MASTHEAD ================= */
.masthead {
  background: var(--surface);
  border-bottom: 1px solid var(--ligne-c);
}
.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark { width: 46px; height: 46px; flex-shrink: 0; }
.logo-text .top {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -.01em;
}
.logo-text .top span { color: var(--vert-mali); }
.logo-text .sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--texte-att);
  margin-top: 3px;
}

.masthead-tools { display: flex; align-items: center; gap: 14px; }

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--ligne-c);
  border-radius: 999px;
  padding: 7px 14px;
  gap: 8px;
  background: var(--bg-alt);
  min-width: 220px;
}
.search-box input {
  border: none; background: transparent; outline: none;
  font-family: var(--font-body); font-size: 13.5px; width: 100%;
  color: var(--texte);
}
.icon-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--ligne-c);
  background: var(--surface);
  cursor: pointer;
  transition: background .2s, transform .2s;
  color: var(--texte);
}
.icon-btn:hover { background: var(--bg-alt); transform: translateY(-1px); }

/* ================= NAV ================= */
.mainnav {
  background: var(--riviere);
  position: sticky; top: 0; z-index: 60;
  box-shadow: 0 2px 0 rgba(0,0,0,.05);
}
html.dark .mainnav { background: #0C2530; }
.mainnav .container { display: flex; align-items: center; justify-content: space-between; }
.navlinks {
  display: flex;
  list-style: none; margin: 0; padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.navlinks::-webkit-scrollbar { display: none; }
.navlinks li a {
  display: block;
  padding: 13px 15px;
  color: #EAF3F1;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, background .2s;
}
.navlinks li a:hover, .navlinks li a.active {
  border-color: var(--banco);
  background: rgba(255,255,255,.06);
}
.nav-toggle { display: none; }

/* ================= HERO ================= */
.hero {
  padding: 34px 0 10px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}
.hero-feature {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
}
.hero-feature .illus { position: absolute; inset: 0; }
.hero-feature .illus svg { width: 100%; height: 100%; }
.hero-feature .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,26,32,0) 30%, rgba(8,20,25,.92) 100%);
}
.hero-feature-content {
  position: relative; z-index: 2;
  padding: 30px 34px;
  color: #fff;
}
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  font-weight: 700;
}
.tag-politique { background: #B23A48; color: #fff; }
.tag-societe { background: var(--vert-mali); color: #fff; }
.tag-economie { background: var(--banco); color: #fff; }
.tag-securite { background: #6C4A9C; color: #fff; }
.tag-culture { background: #C9782E; color: #fff; }
.tag-sport { background: var(--riviere); color: #fff; }
.tag-sante { background: #2E9E8E; color: #fff; }
.tag-education { background: #3468A8; color: #fff; }
.tag-environnement { background: #4FAE72; color: #fff; }
.tag-histoire { background: #7A5A3A; color: #fff; }
.tag-avis { background: #B23A48; color: #fff; }
.tag-emploi { background: #2E6E9E; color: #fff; }

.hero-feature h1 {
  font-size: 34px;
  color: #fff;
  margin: 12px 0 10px;
  max-width: 22ch;
}
.hero-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #D8E6E2;
  display: flex; gap: 14px; flex-wrap: wrap;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mini-article {
  display: flex;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ligne-c);
}
.mini-article:last-child { border-bottom: none; }
.mini-thumb {
  width: 92px; height: 68px; border-radius: 3px; overflow: hidden; flex-shrink: 0;
}
.mini-thumb svg, .mini-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mini-article h4 { font-size: 15px; line-height: 1.3; margin-bottom: 6px; }
.mini-article .eyebrow { font-size: 10.5px; }

/* ================= SECTION HEADERS ================= */
.section { padding: 44px 0; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px;
}
.section-head h2 { font-size: 25px; }
.section-head .voir-tout { font-family: var(--font-mono); font-size: 12px; color: var(--accent); font-weight: 600; }

/* ================= CARDS / GRID ================= */
.grid-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--ligne-c);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-thumb { height: 170px; }
.card-thumb svg, .card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 16px; }
.card-body h3 { font-size: 18px; line-height: 1.32; margin: 10px 0 8px; }
.card-excerpt { font-size: 13.5px; color: var(--texte-att); margin-bottom: 10px; }
.card-meta {
  font-family: var(--font-mono); font-size: 11px; color: var(--texte-att);
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}

/* ================= 2-column: dernières / plus lus ================= */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.liste-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--ligne-c);
}
.liste-item:first-child { padding-top: 0; }
.rang {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 700;
  color: var(--banco-clair);
  width: 40px; flex-shrink: 0;
  -webkit-text-stroke: 1px var(--banco);
}
html.dark .rang { -webkit-text-stroke: 1px var(--banco); color: transparent; }
.liste-item h4 { font-size: 15.5px; margin-bottom: 5px; }

.plus-lus-box, .sidebar-box {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px;
}

/* ================= CATEGORY TABS ================= */
.tabs {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 22px;
}
.tab-btn {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .03em;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--ligne-c);
  background: var(--surface);
  cursor: pointer;
  color: var(--texte-att);
  font-weight: 600;
  transition: all .2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--riviere); color: #fff; border-color: var(--riviere);
}

/* ================= CAROUSEL ================= */
.carousel-wrap { position: relative; }
.carousel-track {
  display: flex; gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  scroll-snap-align: start;
  flex: 0 0 340px;
}
.carousel-nav {
  position: absolute; top: 40%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--ligne-c);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow); z-index: 5;
}
.carousel-prev { left: -18px; }
.carousel-next { right: -18px; }

/* ================= VIDEOS ================= */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.video-card svg, .video-card img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.play-btn span {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  color: var(--riviere);
  transition: transform .2s;
}
.video-card:hover .play-btn span { transform: scale(1.1); }
.video-title {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.75));
  font-size: 13.5px; font-weight: 600;
}

/* ================= NEWSLETTER ================= */
.newsletter {
  background: var(--riviere-fonce);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.newsletter::after {
  content: '';
  position: absolute; right: -60px; bottom: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,174,114,.35), transparent 70%);
}
.newsletter h2 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.newsletter p { color: #C9DEDA; font-size: 14px; margin: 0; }
.newsletter-form { display: flex; gap: 10px; position: relative; z-index: 2; }
.newsletter-form input {
  flex: 1; padding: 13px 16px; border-radius: 3px; border: none;
  font-family: var(--font-body); font-size: 14px; outline: none;
}
.btn {
  padding: 13px 20px; border-radius: 3px; border: none;
  font-family: var(--font-body); font-weight: 700; font-size: 13.5px;
  cursor: pointer; transition: opacity .2s, transform .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn:hover { opacity: .92; transform: translateY(-1px); }
.btn-primary { background: var(--vert-mali); color: #fff; }
.btn-outline { background: transparent; border: 1px solid var(--ligne-c); color: var(--texte); }
.btn-banco { background: var(--banco); color: #fff; }

/* ================= FOOTER ================= */
footer {
  background: var(--encre); color: #CBD8D5;
  padding: 56px 0 0;
}
html.dark footer { background: #061117; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-grid h5 {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: #fff; margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; font-size: 13.5px; }
.footer-grid a:hover { color: var(--banco-clair); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--vert-mali); border-color: var(--vert-mali); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 12.5px; color: #8FA3A0; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { margin-left: 16px; }
.footer-bottom a:hover { color: #fff; }

/* ================= BACK TO TOP ================= */
#backtotop {
  position: fixed; right: 22px; bottom: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--riviere); color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all .3s; z-index: 90;
}
#backtotop.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ================= MOBILE MENU ================= */
.mobile-menu-btn { display: none; }

/* ================= ANIMATIONS ================= */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ================= ARTICLE PAGE ================= */
.article-header { padding: 40px 0 20px; max-width: 820px; margin: 0 auto; }
.article-header h1 { font-size: 38px; line-height: 1.15; margin: 14px 0 12px; }
.article-subtitle { font-size: 18px; color: var(--texte-att); font-family: var(--font-display); font-style: italic; margin-bottom: 18px; }
.article-byline {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 12.5px; color: var(--texte-att);
  padding: 14px 0; border-top: 1px solid var(--ligne-c); border-bottom: 1px solid var(--ligne-c);
}
.avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--riviere); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; }
.article-cover { max-width: 980px; margin: 26px auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 460px; }
.article-cover svg, .article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-body { max-width: 720px; margin: 0 auto; font-size: 17.5px; }
.article-body p { margin: 0 0 20px; }
.article-body h2 { font-size: 24px; margin: 34px 0 14px; }
.article-body blockquote {
  border-left: 3px solid var(--banco);
  padding: 4px 0 4px 20px; margin: 26px 0;
  font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--texte);
}
.share-bar { display: flex; gap: 10px; margin: 30px 0; }
.share-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ligne-c); color: var(--texte);
  transition: all .2s;
}
.share-btn:hover { background: var(--riviere); color: #fff; border-color: var(--riviere); }
.article-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0; }
.article-gallery > div { border-radius: 3px; overflow: hidden; aspect-ratio: 4/3; }
.article-gallery svg, .article-gallery img { width: 100%; height: 100%; object-fit: cover; }

.comments-section { max-width: 720px; margin: 50px auto 0; padding-top: 30px; border-top: 1px solid var(--ligne-c); }
.comment-form textarea {
  width: 100%; padding: 14px; border-radius: var(--radius);
  border: 1px solid var(--ligne-c); font-family: var(--font-body); font-size: 14px;
  resize: vertical; min-height: 90px; background: var(--surface); color: var(--texte);
}
.comment {
  display: flex; gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--ligne-c);
}
.comment-body { font-size: 14px; }
.comment-name { font-weight: 700; font-size: 14px; }
.comment-date { font-family: var(--font-mono); font-size: 11px; color: var(--texte-att); }

/* ================= ADMIN ================= */
.admin-shell { display: flex; min-height: 100vh; }
.admin-side {
  width: 240px; background: var(--riviere-fonce); color: #EAF3F1; flex-shrink: 0;
  padding: 22px 16px;
}
html.dark .admin-side { background: #071319; }
.admin-side .logo-text .top { color: #fff; font-size: 20px; }
.admin-side nav { margin-top: 30px; display: flex; flex-direction: column; gap: 4px; }
.admin-side nav a {
  padding: 11px 12px; border-radius: 6px; font-size: 13.5px; font-weight: 600;
  display: flex; align-items: center; gap: 10px; color: #D8E6E2;
}
.admin-side nav a.active, .admin-side nav a:hover { background: rgba(255,255,255,.1); color: #fff; }
.admin-main { flex: 1; background: var(--bg-alt); padding: 28px 34px; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 28px; }
.stat-card {
  background: var(--surface); border: 1px solid var(--ligne-c); border-radius: var(--radius);
  padding: 18px;
}
.stat-card .num { font-family: var(--font-display); font-size: 30px; font-weight: 700; }
.stat-card .label { font-family: var(--font-mono); font-size: 11px; color: var(--texte-att); text-transform: uppercase; letter-spacing: .05em; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; }
.admin-table th, .admin-table td { padding: 12px 14px; text-align: left; font-size: 13.5px; border-bottom: 1px solid var(--ligne-c); }
.admin-table th { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; color: var(--texte-att); background: var(--bg-alt); }
.status-pill { padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.status-publie { background: #DCF3E4; color: var(--vert-mali); }
.status-brouillon { background: #F3E6D2; color: var(--banco); }
html.dark .status-publie { background: #16352279; color: #6BC98B; }
html.dark .status-brouillon { background: #3a2a1479; color: #E3A567; }
.login-shell {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--riviere-fonce);
}
.login-card {
  background: var(--surface); width: 380px; padding: 36px; border-radius: 6px; box-shadow: var(--shadow);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; color: var(--texte-att); }
.field input, .field select {
  width: 100%; padding: 11px 12px; border-radius: 4px; border: 1px solid var(--ligne-c);
  font-family: var(--font-body); font-size: 14px; background: var(--bg); color: var(--texte);
}

/* ================= EMPLACEMENTS PUBLICITAIRES ================= */
.ad-slot {
  border: 1.5px dashed var(--ligne-c);
  border-radius: var(--radius);
  background: var(--bg-alt);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 4px;
  color: var(--texte-att);
}
.ad-label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.ad-cta { font-size: 13px; }
.ad-cta a { color: var(--accent); font-weight: 700; }
.ad-leaderboard { height: 90px; margin: 20px 0; }
.ad-rectangle { height: 250px; }
.ad-inline { height: 100px; margin: 26px 0; }

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .grid-articles { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-side { display: none; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  .search-box { display: none; }
  .navlinks { display: none; flex-direction: column; }
  .navlinks.open { display: flex; }
  .mainnav .container { flex-wrap: wrap; }
  .mobile-menu-btn {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; color: #fff; cursor: pointer;
  }
  .grid-articles { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; padding: 26px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-feature { min-height: 360px; }
  .hero-feature h1 { font-size: 26px; }
  .article-header h1 { font-size: 27px; }
  .article-gallery { grid-template-columns: 1fr 1fr; }
  .article-body { font-size: 16px; }
}
