/* ============================================================
   HOKINI GHOST THEME — screen.css
   Design system aligné sur julienhokini.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=JetBrains+Mono:wght@300;400;500&display=swap');

/* ── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d1117;
  --surface:   #161b22;
  --surface2:  #21262d;
  --border:    #30363d;
  --accent:    #58a6ff;
  --accent2:   #7ee787;
  --text:      #f0f6fc;
  --muted:     #8b949e;
  --font-display: 'Syne', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --max-width: 1200px;
  --content-width: 740px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grid de fond */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(88,166,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88,166,255,0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none; z-index: 0;
}

/* Glow blob animé */
.glow-blob {
  position: fixed;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88,166,255,0.025) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  top: -200px; left: -200px;
  animation: blobMove 20s ease-in-out infinite alternate;
}

@keyframes blobMove {
  0%   { transform: translate(0, 0); }
  33%  { transform: translate(60vw, 30vh); }
  66%  { transform: translate(20vw, 70vh); }
  100% { transform: translate(50vw, 10vh); }
}

/* ── CURSOR CUSTOM ────────────────────────────────────────── */
body { cursor: none; }

.cursor {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.18s ease;
  opacity: 0.5;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.gh-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 4rem;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.gh-head.scrolled {
  background: rgba(22, 27, 34, 0.9);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.gh-head-brand a {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.1rem;
  color: var(--text); text-decoration: none;
  letter-spacing: -0.02em;
}

.gh-head-brand a span { color: var(--accent); }

.gh-head-menu { display: flex; align-items: center; }

.nav {
  display: flex; gap: 2rem; list-style: none;
}

.nav li a {
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}

.nav li a:hover { color: var(--accent); }

/* ── HERO — PAGE D'ACCUEIL ────────────────────────────────── */
.gh-canvas {
  position: relative; z-index: 1;
}

/* ── LISTE DES ARTICLES (index) ───────────────────────────── */
.gh-feed {
  padding: 8rem 4rem 6rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.feed-header {
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3rem;
}

.feed-label {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.feed-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.feed-description {
  font-size: 0.85rem; color: var(--muted);
  max-width: 560px; line-height: 1.8;
}

/* Grille des posts */
.post-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* Featured post — pleine largeur */
.post-card-featured {
  grid-column: 1 / -1;
}

/* ── CARD ARTICLE ─────────────────────────────────────────── */
.post-card {
  background: var(--surface);
  transition: background 0.2s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}

.post-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--accent);
  transition: height 0.3s ease;
}

.post-card:hover { background: var(--surface2); }
.post-card:hover::after { height: 100%; }

.post-card a {
  display: flex; flex-direction: column;
  height: 100%; text-decoration: none; color: inherit;
  padding: 2rem;
}

/* Image de la card */
.post-card-image-link {
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.post-card-image {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.post-card:hover .post-card-image {
  filter: brightness(1) saturate(1);
  transform: scale(1.02);
}

/* Meta tags / catégories */
.post-card-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.post-card-primary-tag {
  font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
}

/* Titre */
.post-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.25;
  margin-bottom: 0.75rem;
  color: var(--text);
  transition: color 0.2s;
}

.post-card:hover .post-card-title { color: var(--accent); }

/* Excerpt */
.post-card-excerpt {
  font-size: 0.78rem; color: var(--muted);
  line-height: 1.75; flex: 1;
  margin-bottom: 1.5rem;
}

/* Footer de la card */
.post-card-meta {
  display: flex; align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem; color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}

.post-card-reading-time {
  margin-left: auto;
  color: var(--accent); opacity: 0.7;
}

/* ── FEATURED CARD (grande) ───────────────────────────────── */
.post-card-featured .post-card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.post-card-featured .post-card-image-link {
  margin-bottom: 0;
}

.post-card-featured .post-card-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.post-card-featured .post-card-excerpt {
  font-size: 0.82rem;
}

/* Badge "featured" */
.post-card-featured .post-card-primary-tag::before {
  content: '★ ';
  color: var(--accent2);
}

/* ── ARTICLE (single post) ────────────────────────────────── */
.gh-article {
  padding-top: 7rem;
  position: relative; z-index: 1;
}

/* Header de l'article */
.gh-article-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 4rem 0;
}

.gh-article-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(88,166,255,0.3);
  padding: 0.35rem 0.9rem; border-radius: 2px; margin-bottom: 2rem;
}

.gh-article-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.gh-article-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 1.5rem;
  color: var(--text);
}

.gh-article-title em {
  color: var(--accent); font-style: normal;
}

.gh-article-excerpt {
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.8; max-width: 600px;
  margin-bottom: 2.5rem;
}

/* Meta de l'article */
.gh-article-meta {
  display: flex; align-items: center; gap: 1.5rem;
  font-size: 0.7rem; color: var(--muted);
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gh-article-meta .sep { color: var(--border); }

.gh-article-meta .reading-time { color: var(--accent); }

/* Image hero de l'article */
.gh-article-image {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  padding: 0 4rem;
}

.gh-article-image img {
  width: 100%; max-height: 480px;
  object-fit: cover; display: block;
  filter: brightness(0.9) saturate(0.85);
  border: 1px solid var(--border);
}

/* ── CONTENU DE L'ARTICLE ─────────────────────────────────── */
.gh-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 4rem 6rem;
}

.gh-content p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: #cdd6e0;
  margin-bottom: 1.6rem;
}

.gh-content h1,
.gh-content h2,
.gh-content h3,
.gh-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gh-content h2 { font-size: 1.6rem; }
.gh-content h3 { font-size: 1.25rem; }
.gh-content h4 { font-size: 1rem; color: var(--accent); }

/* Ligne décorative avant h2 */
.gh-content h2::before {
  content: '// ';
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* Liens */
.gh-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(88,166,255,0.3);
  transition: border-color 0.2s;
}

.gh-content a:hover {
  border-bottom-color: var(--accent);
}

/* Code inline */
.gh-content code {
  font-family: var(--font-mono);
  font-size: 0.8em;
  background: var(--surface2);
  color: var(--accent2);
  border: 1px solid var(--border);
  padding: 0.1em 0.4em;
  border-radius: 2px;
}

/* Blocs de code */
.gh-content pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
  position: relative;
}

.gh-content pre::before {
  content: attr(data-lang);
  position: absolute; top: 0.5rem; right: 0.75rem;
  font-size: 0.6rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}

.gh-content pre code {
  background: none; border: none; padding: 0;
  font-size: 0.78rem; color: var(--text);
  line-height: 1.7;
}

/* Blockquote */
.gh-content blockquote {
  border-left: 3px solid var(--accent);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--surface);
  color: var(--muted);
  font-style: italic;
  font-size: 0.85rem;
}

/* Listes */
.gh-content ul, .gh-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.6rem;
}

.gh-content li {
  font-size: 0.87rem;
  color: #cdd6e0;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.gh-content ul li::marker { color: var(--accent); }
.gh-content ol li::marker { color: var(--accent); font-family: var(--font-mono); }

/* Images dans le contenu */
.gh-content img {
  max-width: 100%; height: auto;
  border: 1px solid var(--border);
  display: block; margin: 2rem auto;
  filter: brightness(0.9);
}

.gh-content figure { margin: 2.5rem 0; }
.gh-content figcaption {
  text-align: center; font-size: 0.7rem;
  color: var(--muted); margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

/* Séparateur */
.gh-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 3rem 0;
  opacity: 0.3;
}

/* Tables */
.gh-content table {
  width: 100%; border-collapse: collapse;
  font-size: 0.8rem; margin: 2rem 0;
}

.gh-content thead th {
  font-family: var(--font-display);
  font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 0.75rem 1rem; text-align: left;
}

.gh-content tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.gh-content tbody tr:hover td {
  background: var(--surface);
  color: var(--text);
}

/* ── TAGS DE L'ARTICLE ────────────────────────────────────── */
.gh-article-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 3rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.gh-article-tag-link {
  font-size: 0.65rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--border); padding: 0.3rem 0.7rem;
  border-radius: 2px; text-decoration: none;
  transition: all 0.2s;
}

.gh-article-tag-link:hover {
  border-color: var(--accent); color: var(--accent);
}

/* ── NAVIGATION PREV/NEXT ─────────────────────────────────── */
.gh-navigation {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 4rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.gh-navigation-link {
  background: var(--surface);
  padding: 2rem;
  text-decoration: none; color: inherit;
  transition: background 0.2s;
  display: flex; flex-direction: column; gap: 0.5rem;
}

.gh-navigation-link:hover { background: var(--surface2); }

.gh-navigation-link .nav-dir {
  font-size: 0.6rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent);
}

.gh-navigation-link .nav-title {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--text);
}

.gh-navigation-link.next { text-align: right; }

/* ── PAGINATION ───────────────────────────────────────────── */
.gh-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem;
  padding: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.gh-pagination a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--border); color: var(--muted);
  font-size: 0.75rem; letter-spacing: 0.08em;
  padding: 0.7rem 1.4rem; text-decoration: none;
  border-radius: 2px; transition: all 0.2s;
}

.gh-pagination a:hover {
  border-color: var(--accent); color: var(--accent);
  transform: translateY(-2px);
}

.gh-pagination .page-number {
  font-size: 0.7rem; color: var(--muted);
}

/* ── PAGE TAG / AUTEUR ────────────────────────────────────── */
.gh-tag-header, .gh-author-header {
  padding: 8rem 4rem 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4rem;
}

.gh-tag-name, .gh-author-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.gh-tag-description, .gh-author-bio {
  font-size: 0.85rem; color: var(--muted);
  max-width: 500px; line-height: 1.8;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.gh-foot {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 100%;
}

.gh-foot p, .gh-foot-copyright {
  font-size: 0.7rem; color: var(--muted);
}

.gh-foot span, .gh-foot a {
  color: var(--accent);
  text-decoration: none;
}

.gh-foot-nav {
  display: flex; gap: 1.5rem; list-style: none;
}

.gh-foot-nav a {
  font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}

.gh-foot-nav a:hover { color: var(--accent); }

/* ── REVEAL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── DIVIDER ──────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: 4rem; opacity: 0.3;
}

/* ── BOUTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--accent); color: var(--bg);
  font-family: var(--font-mono); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.05em;
  padding: 0.85rem 2rem; text-decoration: none;
  border-radius: 2px; transition: all 0.2s ease;
}

.btn-primary:hover {
  background: #7cc8ff; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88,166,255,0.3);
}

/* ── KG CARD ASSETS (Ghost cards) ─────────────────────────── */
.kg-width-wide {
  margin-left: calc(50% - 45vw);
  margin-right: calc(50% - 45vw);
  max-width: 90vw;
}

.kg-width-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

.kg-image-card img {
  width: 100%; height: auto;
  border: 1px solid var(--border);
  display: block;
}

.kg-image-card figcaption {
  text-align: center; font-size: 0.7rem;
  color: var(--muted); margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

.kg-gallery-container { display: flex; flex-direction: column; gap: 0.5rem; }
.kg-gallery-row { display: flex; gap: 0.5rem; }
.kg-gallery-image { flex: 1; min-width: 0; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; border: 1px solid var(--border); }

.kg-bookmark-card {
  border: 1px solid var(--border);
  background: var(--surface);
  margin: 1.5rem 0;
  transition: border-color 0.2s;
}
.kg-bookmark-card:hover { border-color: rgba(88,166,255,0.4); }
.kg-bookmark-container { display: flex; text-decoration: none; color: inherit; }
.kg-bookmark-content { padding: 1.25rem; flex: 1; }
.kg-bookmark-title { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.kg-bookmark-description { font-size: 0.75rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.75rem; }
.kg-bookmark-metadata { display: flex; align-items: center; gap: 0.5rem; font-size: 0.65rem; color: var(--muted); }
.kg-bookmark-icon { width: 14px; height: 14px; }
.kg-bookmark-thumbnail { width: 140px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.kg-callout-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; margin: 1.5rem 0;
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  font-size: 0.85rem; color: var(--muted); line-height: 1.7;
}
.kg-callout-emoji { font-size: 1.2rem; flex-shrink: 0; }

.kg-toggle-card { border: 1px solid var(--border); margin: 1.5rem 0; }
.kg-toggle-heading { display: flex; align-items: center; justify-content: space-between; padding: 1rem; cursor: pointer; }
.kg-toggle-heading-text { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.kg-toggle-content { padding: 0 1rem 1rem; font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

.kg-video-card { margin: 1.5rem 0; }
.kg-video-card video { width: 100%; border: 1px solid var(--border); }

.kg-audio-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; margin: 1.5rem 0;
  background: var(--surface); border: 1px solid var(--border);
}

.kg-product-card {
  border: 1px solid var(--border); background: var(--surface);
  padding: 1.5rem; margin: 1.5rem 0; display: flex; gap: 1.5rem;
}
.kg-product-card-image { width: 120px; flex-shrink: 0; }
.kg-product-card-image img { width: 100%; border: 1px solid var(--border); }
.kg-product-card-title { font-family: var(--font-display); font-weight: 700; margin-bottom: 0.5rem; }
.kg-product-card-description { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }
.kg-product-card-button { display: inline-block; margin-top: 1rem; padding: 0.6rem 1.4rem; background: var(--accent); color: var(--bg); font-size: 0.78rem; text-decoration: none; border-radius: 2px; }

.kg-header-card { padding: 4rem 2rem; text-align: center; background: var(--surface); border: 1px solid var(--border); margin: 1.5rem 0; }
.kg-header-card h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; }
.kg-header-card p { color: var(--muted); margin-top: 0.75rem; }

.kg-button-card { text-align: center; margin: 1.5rem 0; }
.kg-btn { display: inline-block; padding: 0.85rem 2rem; background: var(--accent); color: var(--bg); font-family: var(--font-mono); font-size: 0.8rem; text-decoration: none; border-radius: 2px; }

/* ── UNDER CONSTRUCTION ───────────────────────────────────── */
.under-construction {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 7rem;
  text-align: center;
}

.uc-barrier {
  width: 100%;
  max-width: 520px;
  margin-bottom: 3.5rem;
  animation: uc-float 4s ease-in-out infinite;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.5));
}

@keyframes uc-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.uc-barrier svg { width: 100%; height: auto; display: block; }

.uc-content { max-width: 480px; }

.uc-label {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem;
}

.uc-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800; letter-spacing: -0.04em;
  color: var(--text); margin-bottom: 1.25rem;
  line-height: 1;
}

.uc-desc {
  font-size: 0.85rem; color: var(--muted);
  line-height: 1.85; margin-bottom: 2.5rem;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .post-card-featured .post-card-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gh-head { padding: 1.2rem 2rem; }
  .gh-head-menu { display: none; }

  .gh-feed { padding: 6rem 2rem 4rem; }

  .post-feed {
    grid-template-columns: 1fr;
  }

  .gh-article-header { padding: 3rem 2rem 0; }
  .gh-article-image { padding: 0 2rem; }
  .gh-content { padding: 0 2rem 4rem; }

  .gh-navigation { grid-template-columns: 1fr; }
  .gh-navigation-link.next { text-align: left; }

  .gh-foot {
    flex-direction: column; gap: 1rem;
    padding: 2rem; text-align: center;
  }

  .gh-foot-nav { justify-content: center; }
}
