/* ============================================================
   AFFILIATE THEME — MAIN CSS
   Buchhaltung Test
   ============================================================ */

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --primary:       #5850EC;
  --primary-dark:  #423CB1;
  --primary-light: #F1F1FD;
  --secondary:     #131625;
  --accent:        #38BDF8;
  --accent-light:  #EFF9FE;
  --success:       #10B981;
  --warning:       #F59E0B;
  --danger:        #EF4444;
  --background:    #FFFFFF;
  --surface:       #F8FAFC;
  --surface-2:     #F1F5F9;
  --border:        #E2E8F0;
  --text:          #1E293B;
  --text-light:    #64748B;
  --text-muted:    #94A3B8;

  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.10), 0 8px 10px -6px rgba(0,0,0,.05);

  --max-width:      1200px;
  --content-width:  760px;
  --sidebar-width:  300px;
  --gap:            clamp(1rem, 3vw, 2rem);
  --section-py:     clamp(2rem, 6vw, 4rem);

  --transition: 0.2s ease;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--background);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--secondary);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.875rem); margin-top: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.375rem); margin-top: 2rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
p  { margin-bottom: 1.25rem; }
ul,ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }
strong { font-weight: 600; color: var(--secondary); }
blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  background: var(--primary-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-light);
}

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gap);
}
.site-layout {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: 3rem;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem var(--gap);
}
@media (max-width: 1024px) {
  .site-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

/* ─── PROGRESS BAR ───────────────────────────────────────────── */
#reading-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  height: 64px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gap);
}
.site-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-logo:hover { color: var(--primary); }
.site-logo .logo-icon { font-size: 1.5rem; }

.site-nav { display: flex; align-items: center; gap: 0.5rem; }
.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.site-nav a:hover { color: var(--primary); background: var(--primary-light); }

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .menu-toggle { display: block; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1rem var(--gap);
    gap: 0.25rem;
  }
}

/* ─── HERO (Homepage) ────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e3a5f 100%);
  color: #fff;
  padding: clamp(3rem, 8vw, 5rem) var(--gap);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(79,70,229,.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(6,182,212,.2) 0%, transparent 40%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  max-width: 800px;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.03em;
}
.hero-subtitle {
  color: rgba(255,255,255,.8);
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent);
  color: var(--secondary);
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(6,182,212,.4);
}
.btn-primary:hover { background: #0891b2; color: #fff; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  transition: all var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,.2); color: #fff; }

.trust-signals {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  color: rgba(255,255,255,.7);
  font-size: 0.875rem;
}
.trust-signals span::before { content: '✓ '; color: var(--success); font-weight: 700; }

/* ─── TOP 3 TOOLS ────────────────────────────────────────────── */
.top3-section {
  padding: var(--section-py) var(--gap);
  background: var(--surface);
}
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title h2 { margin-top: 0; }
.section-title p { color: var(--text-light); font-size: 1.0625rem; }

.top3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (max-width: 768px) { .top3-grid { grid-template-columns: 1fr; } }

.tool-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.tool-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.tool-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-light), var(--shadow-lg);
}
.tool-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.tool-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.tool-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.stars { color: var(--warning); letter-spacing: -1px; }
.rating-num { font-weight: 600; font-size: 0.875rem; }
.tool-price {
  font-size: 0.8125rem;
  color: var(--text-light);
  background: var(--surface);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius);
  display: inline-block;
  margin-bottom: 0.875rem;
}
.tool-verdict { font-size: 0.9375rem; color: var(--text-light); margin-bottom: 1.25rem; }
.tool-cta {
  display: block;
  text-align: center;
  background: var(--primary);
  color: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition);
}
.tool-cta:hover { background: var(--primary-dark); color: #fff; }

/* ─── ARTICLE GRID ───────────────────────────────────────────── */
.articles-section {
  padding: var(--section-py) var(--gap);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.article-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.article-card-img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}
.article-card-img-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.article-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.article-card-cat {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.article-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.625rem;
  line-height: 1.35;
}
.article-card-excerpt { font-size: 0.875rem; color: var(--text-light); flex: 1; }
.article-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ─── SINGLE ARTICLE ─────────────────────────────────────────── */
.post-hero {
  padding: 3rem var(--gap) 0;
  max-width: var(--max-width);
  margin: 0 auto;
}
.post-meta {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}
.post-category {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}
.post-title {
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.post-excerpt {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}
.post-featured-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ─── TABLE OF CONTENTS ──────────────────────────────────────── */
.toc-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
}
.toc-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.toc-list { list-style: none; padding: 0; margin: 0; }
.toc-list li { margin-bottom: 0.375rem; }
.toc-list a {
  font-size: 0.9375rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}
.toc-list a:hover { color: var(--primary); }
.toc-list a::before { content: ''; width: 6px; height: 6px; background: var(--border); border-radius: 50%; flex-shrink: 0; transition: background var(--transition); }
.toc-list a:hover::before { background: var(--primary); }
.toc-list .toc-h3 { padding-left: 1.25rem; }

/* ─── ARTICLE CONTENT ────────────────────────────────────────── */
.entry-content {
  font-size: 1.0625rem;
  line-height: 1.8;
}
.entry-content h2 {
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--surface-2);
}
.entry-content h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1em;
  background: var(--primary);
  margin-right: 0.75rem;
  vertical-align: middle;
  border-radius: 2px;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.entry-content th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 0.875rem 1rem;
  text-align: left;
}
.entry-content td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}
.entry-content tr:nth-child(even) td { background: var(--surface); }
.entry-content tr:hover td { background: var(--primary-light); }

/* CTA interne article */
.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}
.cta-box h3 { color: #fff; font-size: 1.375rem; margin-bottom: 0.75rem; margin-top: 0; }
.cta-box p  { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }
.cta-box .btn-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent);
  color: var(--secondary);
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  transition: all var(--transition);
}
.cta-box .btn-cta:hover { background: #0891b2; color: #fff; }

/* Note étoiles CSS */
.star-rating { display: inline-flex; gap: 2px; }
.star { color: #CBD5E1; font-size: 1.125rem; }
.star.filled { color: var(--warning); }
.star.half { background: linear-gradient(90deg, var(--warning) 50%, #CBD5E1 50%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Pros/Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }
.pros, .cons {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
}
.pros { background: #F0FDF4; border: 1px solid #BBF7D0; }
.cons { background: #FFF1F2; border: 1px solid #FECDD3; }
.pros h4 { color: #166534; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; margin-top: 0; }
.cons h4 { color: #9F1239; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; margin-top: 0; }
.pros ul, .cons ul { padding-left: 1.25rem; margin-bottom: 0; }
.pros li { color: #166534; font-size: 0.9375rem; }
.cons li { color: #9F1239; font-size: 0.9375rem; }

/* ─── AUTHOR BOX ─────────────────────────────────────────────── */
.author-box {
  display: flex;
  gap: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-top: 3rem;
  border: 1px solid var(--border);
}
.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; font-weight: 700;
}
.author-info { flex: 1; }
.author-name { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.125rem; }
.author-title { font-size: 0.875rem; color: var(--text-light); margin-bottom: 0.625rem; }
.author-bio  { font-size: 0.9375rem; color: var(--text-light); margin-bottom: 0.75rem; }
.author-stats { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-section { margin-top: 3rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  background: #fff;
  transition: background var(--transition);
  user-select: none;
}
.faq-question:hover { background: var(--surface); }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ─── SIDEBAR ────────────────────────────────────────────────── */
.sidebar { position: sticky; top: 80px; }
.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
}
.sidebar-cta .sidebar-widget-title { color: rgba(255,255,255,.75); }
.sidebar-cta h3 { color: #fff; font-size: 1.125rem; margin-bottom: 0.5rem; }
.sidebar-cta p  { font-size: 0.875rem; color: rgba(255,255,255,.85); margin-bottom: 1.25rem; }
.sidebar-cta-btn {
  display: block;
  text-align: center;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  padding: 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  transition: all var(--transition);
}
.sidebar-cta-btn:hover { background: rgba(255,255,255,.9); }

/* Affiliate disclosure */
.affiliate-notice {
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  border-left: 3px solid var(--border);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--secondary);
  color: rgba(255,255,255,.7);
  padding: 3rem var(--gap) 2rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand .site-logo { color: #fff; margin-bottom: 1rem; }
.footer-desc { font-size: 0.9375rem; line-height: 1.7; }
.footer-disclosure {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.4);
  margin-top: 0.875rem;
  line-height: 1.6;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 0.9375rem; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.4);
}

/* ─── UTILITIES ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── PAGINATION ─────────────────────────────────────────────── */
.pagination {
  display: flex; gap: 0.5rem; justify-content: center;
  padding: 2rem 0;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text-light);
  transition: all var(--transition);
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 600px) {
  .author-box { flex-direction: column; }
  .hero-ctas { flex-direction: column; align-items: center; }
}
