/* betpuannet v3 — Swiss Editorial Magazine */

:root {
  --paper: #ebe8df;
  --sheet: #faf8f4;
  --ink: #131210;
  --ink-muted: #5c5952;
  --ink-faint: #8a8680;
  --line: #131210;
  --line-soft: rgba(19, 18, 16, 0.11);
  --accent: #c4121a;
  --accent-soft: rgba(196, 18, 26, 0.08);
  --transition: 0.2s ease;
  --header-h: 108px;
  /* legacy aliases */
  --bg: var(--paper);
  --white: var(--sheet);
  --black: var(--ink);
  --muted: var(--ink-muted);
  --gray: var(--ink-faint);
  --gray-bar: #e4e1d8;
  --border: var(--line);
  --border-light: var(--line-soft);
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-ui: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Sans', ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body.net-v3 {
  font-family: var(--font-ui);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: none; transition: opacity var(--transition), color var(--transition); }
a:hover { opacity: 0.58; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  padding: 10px 16px; background: var(--ink); color: var(--sheet); font-size: 13px; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* —— Edition bar —— */
.net-edition-bar {
  background: var(--ink);
  color: var(--sheet);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.net-edition-bar span { opacity: 0.72; }
.net-edition-bar strong { color: var(--sheet); opacity: 1; font-weight: 600; }

/* —— Promo —— */
#top-banner { background: var(--sheet); position: relative; z-index: 1000; }
#top-banner.promo-banner--editorial {
  border-bottom: 1px solid var(--line);
  font-family: var(--font-ui);
}
#top-banner.promo-banner--editorial .promo-banner-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  column-gap: 20px; min-height: 44px;
}
#top-banner.promo-banner--editorial .promo-index {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; color: var(--accent); text-transform: uppercase;
  padding-right: 16px; border-right: 1px solid var(--line-soft); white-space: nowrap;
}
#top-banner.promo-banner--editorial .promo-text {
  margin: 0; padding: 10px 0; font-size: 13px; font-weight: 400;
  color: var(--ink); text-align: center; line-height: 1.4;
}
#top-banner.promo-banner--editorial .promo-text strong { font-weight: 600; }
#top-banner.promo-banner--editorial .promo-cta {
  font-size: 12px; font-weight: 600; color: var(--ink);
  text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; opacity: 1;
}
#top-banner.promo-banner--editorial .promo-cta:hover { opacity: 0.55; }

/* —— Index strip —— */
.ticker-strip, .editorial-strip {
  background: var(--sheet);
  border-bottom: 1px solid var(--line);
  padding: 9px 24px;
  font-size: 11px;
  color: var(--ink-muted);
}
.ticker-inner {
  display: flex; flex-wrap: nowrap; align-items: center; gap: 24px;
  max-width: 1180px; margin: 0 auto; overflow-x: auto; white-space: nowrap;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent);
}
.ticker-inner::-webkit-scrollbar { display: none; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; }
.ticker-index {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  color: var(--ink); letter-spacing: 0.04em; flex-shrink: 0;
}
.ticker-label, .ticker-track, .live-dot { display: none; }

/* —— Masthead —— */
#main-header {
  position: sticky; top: 0; z-index: 999;
  background: var(--sheet);
  border-bottom: 2px solid var(--line);
}
.header-top {
  max-width: 1180px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.header-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-muted);
}
.logo-wrap { display: flex; align-items: center; gap: 12px; color: var(--ink); opacity: 1; }
.logo-wrap:hover { opacity: 0.65; }
.logo-icon {
  width: 38px; height: 38px; background: var(--ink); color: var(--sheet);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  border: 1px solid var(--line);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-display); font-size: 19px; font-weight: 700;
  letter-spacing: -0.03em;
}
.logo-name span { font-weight: 500; font-style: italic; }
.logo-sub {
  font-size: 9px; font-weight: 500; color: var(--ink-muted);
  letter-spacing: 0.16em; text-transform: uppercase; margin-top: 2px;
}
.header-nav-row { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; }
.main-nav ul {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0; padding: 11px 0;
}
.main-nav li { display: flex; align-items: center; }
.main-nav li + li::before {
  content: '·'; padding: 0 9px; color: var(--ink-faint); font-size: 14px; pointer-events: none;
}
.main-nav a {
  display: inline; padding: 4px 0; color: var(--ink); font-size: 13px; font-weight: 500;
  white-space: nowrap; border-bottom: 1px solid transparent; opacity: 1;
}
.main-nav a:hover, .main-nav a.active { border-bottom-color: var(--ink); opacity: 1; }
.main-nav a.nav-cta {
  font-weight: 600; text-decoration: underline; text-underline-offset: 3px;
  color: var(--accent);
}
.main-nav a.nav-cta:hover { opacity: 0.65; border-bottom-color: transparent; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: transparent; border: 1px solid var(--line); padding: 8px;
}
.hamburger span {
  display: block; width: 20px; height: 1px; background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* —— Sections —— */
.section {
  padding: 56px 0; border-bottom: 1px solid var(--line-soft); position: relative;
}
.section.alt { background: var(--sheet); }
.section-header { text-align: left; margin-bottom: 28px; }
.section-header h2 {
  font-size: clamp(1.45rem, 3vw, 2rem); margin-bottom: 8px;
}
.section-header p { color: var(--ink-muted); max-width: 560px; margin: 0; font-size: 15px; }
.section-tag, .hero-badge {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 14px; padding-bottom: 7px; border-bottom: 1px solid var(--line);
}
.section-num {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--ink); letter-spacing: 0.06em; display: inline-block; margin-right: 10px;
}
.section-num--ghost {
  position: absolute; top: 48px; right: 24px;
  font-size: clamp(2.8rem, 8vw, 5rem); font-weight: 700;
  color: rgba(19, 18, 16, 0.06); line-height: 1; margin: 0; pointer-events: none; z-index: 0;
}
.numbered-section .section-num { position: static; font-size: 11px; }
.section-note { margin-top: 18px; color: var(--ink-muted); font-size: 14px; max-width: 640px; }
.section:has(.guide-hub) { overflow: hidden; }

/* —— Hero —— */
.hero {
  padding: 64px 0 52px; text-align: left;
  border-bottom: 1px solid var(--line); background: var(--paper);
  position: relative;
}
.hero--compact {
  padding: 28px 0 22px;
}
.hero--compact .hero-badge {
  margin-bottom: 8px;
  padding-bottom: 4px;
  font-size: 10px;
}
.hero--compact h1 {
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  margin: 0 0 10px;
  line-height: 1.15;
}
.hero--compact p {
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 640px;
  margin: 0 0 16px;
}
.hero--compact .hero-buttons {
  gap: 8px;
}
.hero--compact .btn-primary,
.hero--compact .btn-secondary {
  padding: 10px 16px;
  font-size: 13px;
}
.hero--left.hero--compact {
  padding: 24px 0 14px;
  border-bottom: none;
}
.hero--left.hero--compact p {
  font-size: 0.92rem;
  margin: 0;
  max-width: none;
}
.stats-list--compact .trust-item {
  padding: 10px 14px;
  font-size: 11px;
}
.hero::before, .hero::after, .hero-orb, .hero-orbs { display: none !important; }
.hero .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.hero-content { max-width: 780px; position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 600;
  margin: 0 0 18px; line-height: 1.08;
}
.hero p { font-size: 1.05rem; color: var(--ink-muted); max-width: 560px; margin: 0 0 26px; }
.hero-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.hero--center { text-align: center; }
.hero--center .container, .hero--center .hero-content,
.hero--center h1, .hero--center p, .hero--center .hero-badge,
.hero--center .hero-buttons { text-align: center; margin-left: auto; margin-right: auto; }
.hero--center .hero-buttons { justify-content: center; }
.hero--center .hero-split-inner {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 720px;
  margin: 0 auto;
  gap: 32px;
}
.hero--center .hero-content { max-width: none; width: 100%; }
.hero--center .hero p { margin-left: auto; margin-right: auto; }
.hero--center .hero-card {
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.hero--center .hero-card .btn-primary { display: inline-flex; margin: 0 auto; }
.hero--center .hero-card-links { align-items: center; }
.hero--center .hero-card-links a { text-align: center; }
.hero--left { text-align: left; }
.hero--left .container, .hero--left .hero-content,
.hero--left h1, .hero--left p, .hero--left .hero-badge,
.hero--left .hero-buttons { text-align: left; margin-left: 0; margin-right: 0; }
.hero--left .hero-buttons { justify-content: flex-start; }

.hero-split-inner {
  display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  gap: 36px; align-items: center;
}
.hero-card {
  background: var(--sheet); border: 1px solid var(--line); padding: 26px 22px;
}
.hero-card-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--line-soft);
}
.hero-card-domain {
  font-family: var(--font-display); font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700; margin-bottom: 6px;
}
.hero-card-status {
  font-size: 11px; color: var(--ink-muted); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 16px;
}
.hero-card-links {
  display: flex; flex-direction: column; gap: 6px; margin-top: 14px;
  padding-top: 14px; border-top: 1px solid var(--line-soft);
}
.hero-card-links a {
  font-size: 13px; font-weight: 500; padding: 3px 0;
  border-bottom: 1px solid transparent; opacity: 1;
}
.hero-card-links a:hover { border-bottom-color: var(--ink); opacity: 1; }

.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 13px; padding: 11px 22px;
  transition: background var(--transition), color var(--transition); border-radius: 0;
}
.btn-primary { background: var(--ink); color: var(--sheet); border: 1px solid var(--ink); opacity: 1; }
.btn-primary:hover { background: var(--sheet); color: var(--ink); opacity: 1; }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--line); opacity: 1; }
.btn-secondary:hover { background: var(--ink); color: var(--sheet); opacity: 1; }

/* —— Stats / trust —— */
.stats-list, .trust-bar {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--sheet);
}
.stats-list {
  display: flex; flex-wrap: wrap; max-width: 1180px; margin: 0 auto;
}
.stats-list .trust-item, .trust-bar-inner .trust-item, .trust-item {
  font-size: 12px; color: var(--ink-muted); font-weight: 500;
  padding: 14px 18px; border-right: 1px solid var(--line-soft); flex: 1; min-width: 140px;
}
.stats-list .trust-item:last-child, .trust-bar-inner .trust-item:last-child { border-right: none; }
.trust-bar { padding: 0; }
.trust-bar-inner {
  display: flex; flex-wrap: wrap; max-width: 1180px; margin: 0 auto; padding: 0;
}

/* —— Page layout —— */
.page-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 220px;
  gap: 44px; max-width: 1180px; margin: 0 auto; padding: 0 24px;
}
.page-layout--full { grid-template-columns: 1fr; }
.content-main { min-width: 0; }
.sidebar-nav {
  position: sticky; top: calc(var(--header-h) + 12px); align-self: start;
  padding: 18px 0 36px; border-left: 1px solid var(--line); padding-left: 22px;
}
.sidebar-nav-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-muted); margin-bottom: 14px;
}
.sidebar-nav ul { display: flex; flex-direction: column; gap: 2px; }
.sidebar-nav a {
  display: block; padding: 5px 0; font-size: 13px; font-weight: 500;
  border-bottom: 1px solid transparent; opacity: 1;
}
.sidebar-nav a:hover, .sidebar-nav a.active { border-bottom-color: var(--ink); opacity: 1; }

/* —— Cards & content —— */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.card, .info-box, .address-box, .warning-box {
  background: var(--sheet); border: 1px solid var(--line); padding: 24px;
}
.card:hover { border-color: var(--ink); }
.card-icon {
  width: 46px; height: 46px; border: 1px solid var(--line); background: var(--paper);
  display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 12px;
}
.card h3 { font-size: 1.05rem; margin-bottom: 8px; font-family: var(--font-ui); font-weight: 600; }
.card p, .article-body p, .prose p, .info-box p, .warning-box p {
  color: var(--ink-muted); font-size: 14.5px; line-height: 1.75;
}
.article-body, .prose {
  max-width: none; margin: 0;
  background: transparent; border: none; padding: 0;
}
.article-body h2, .prose h2, .prose h3 {
  font-size: 1.15rem; margin: 22px 0 10px; padding-bottom: 0;
  border-bottom: none; font-family: var(--font-ui); font-weight: 600;
}
.article-body h2:first-child, .prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.article-body h3, .prose h3 { font-size: 1.05rem; margin: 18px 0 8px; }
.article-body ul, .prose ul { margin: 10px 0; }
.article-body li, .prose li, .warning-list li {
  color: var(--ink-muted); padding: 6px 0 6px 20px; position: relative; font-size: 14.5px;
}
.article-body li::before, .prose li::before, .warning-list li::before {
  content: '—'; position: absolute; left: 0; color: var(--ink);
}
.guide-stream-block.article-body {
  background: transparent; border: none;
}
.page-layout .section-header h2 {
  display: block;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  margin: 8px 0 10px;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}
.numbered-section .section-header {
  margin-bottom: 20px;
}
.numbered-section .section-num {
  display: block;
  margin: 0 0 8px;
}
.article-content code, .article-body code {
  font-family: var(--font-mono); font-size: 0.88em;
  background: var(--paper); border: 1px solid var(--line-soft); padding: 2px 7px;
}
.address-box { text-align: left; }
.address-domain {
  font-family: var(--font-display); font-size: clamp(1.55rem, 4vw, 2.15rem);
  font-weight: 700; margin-bottom: 4px;
}
.address-status {
  font-size: 11px; color: var(--ink-muted); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; margin: 8px 0 18px;
}

/* —— Social directory —— */
.social-directory { border-top: 1px solid var(--line); }
.social-row {
  display: grid; grid-template-columns: minmax(120px, 1.2fr) minmax(80px, 1fr) minmax(140px, 1.4fr) auto;
  gap: 14px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line-soft);
}
.social-row:last-child { border-bottom: none; }
.social-row-platform { font-weight: 600; font-size: 14px; }
.social-row-handle { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); }
.social-row-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.5; }
.social-row-link { font-size: 14px; font-weight: 600; opacity: 1; }
.social-row-link:hover { text-decoration: underline; opacity: 1; }

.social-stats-bar {
  display: flex; flex-wrap: wrap; border: 1px solid var(--line);
  background: var(--sheet); margin-bottom: 24px;
}
.social-stats-bar .stat-chip {
  flex: 1; min-width: 140px; padding: 14px 16px; font-size: 12px;
  color: var(--ink-muted); border-right: 1px solid var(--line-soft);
}
.social-stats-bar .stat-chip:last-child { border-right: none; }
.social-stats-bar .stat-chip strong {
  display: block; font-family: var(--font-display); font-size: 1.15rem;
  color: var(--ink); font-weight: 700; margin-bottom: 2px;
}
.social-channel-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px;
}
.social-channel-card {
  background: var(--sheet); border: 1px solid var(--line); padding: 20px 18px;
  display: flex; flex-direction: column; gap: 5px; min-height: 164px;
  transition: border-color var(--transition), background var(--transition);
  color: inherit; opacity: 1;
}
.social-channel-card:hover { border-color: var(--ink); background: var(--paper); opacity: 1; }
.social-channel-icon { font-size: 22px; line-height: 1; margin-bottom: 4px; }
.social-channel-tag {
  font-size: 9px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-muted);
}
.social-channel-name { font-family: var(--font-mono); font-size: 15px; font-weight: 600; }
.social-channel-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.6; margin: 0; flex: 1; }
.social-channel-go {
  font-size: 12px; font-weight: 600; margin-top: 8px;
  text-decoration: underline; text-underline-offset: 3px; opacity: 1;
}
.social-directory-wrap { border: 1px solid var(--line); background: var(--sheet); overflow-x: auto; }
.social-directory-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.social-directory-table thead th {
  text-align: left; padding: 11px 16px; font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted);
  background: var(--paper); border-bottom: 1px solid var(--line);
}
.social-directory-table tbody td {
  padding: 13px 16px; border-bottom: 1px solid var(--line-soft);
  vertical-align: top; color: var(--ink-muted); line-height: 1.55;
}
.social-directory-table tbody tr:last-child td { border-bottom: none; }
.social-directory-table tbody tr:hover td { background: var(--paper); }
.social-directory-table tbody td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }
.social-directory-table tbody td:nth-child(2) { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); }
.social-directory-table tbody td a { font-weight: 600; text-decoration: underline; text-underline-offset: 2px; opacity: 1; }
.social-directory-note { font-size: 13px; color: var(--ink-muted); margin-top: 14px; max-width: 560px; }

/* —— FAQ —— */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item details {
  background: var(--sheet); border: 1px solid var(--line); margin-bottom: -1px;
}
.faq-item summary {
  padding: 15px 18px; cursor: pointer; font-weight: 600; font-size: 14px;
  list-style: none; display: flex; justify-content: space-between; gap: 12px;
}
.faq-item summary h3 {
  font-size: 14px; font-weight: 600; font-family: var(--font-ui);
  letter-spacing: 0; line-height: 1.4; margin: 0; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 18px; font-weight: 400; }
.faq-item details[open] summary::after { content: '−'; }
.faq-answer {
  padding: 0 18px 16px; color: var(--ink-muted); font-size: 14px;
  line-height: 1.75; border-top: 1px solid var(--line-soft);
}
.warning-box { max-width: none; }
.warning-title { font-weight: 700; margin-bottom: 10px; font-family: var(--font-ui); }
.cta-band .hero-buttons { padding: 36px 0; }

/* —— Homepage guide dossier —— */
.guide-hub { max-width: none; }
.guide-lead {
  background: var(--sheet); border: 1px solid var(--line); padding: 26px 30px; margin-bottom: 26px;
}
.guide-lead p { color: var(--ink-muted); font-size: 15px; line-height: 1.82; margin-bottom: 12px; }
.guide-lead p:last-child { margin-bottom: 0; }
.guide-dossier {
  display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 30px; align-items: start;
}
.guide-checklist {
  position: sticky; top: calc(var(--header-h) + 16px); background: var(--sheet);
  border: 1px solid var(--line); padding: 18px 16px; align-self: start;
}
.guide-checklist h4 {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-muted); margin: 0 0 12px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-ui);
}
.guide-checklist ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.guide-checklist li { border-bottom: 1px solid var(--line-soft); counter-increment: toc; }
.guide-checklist li:last-child { border-bottom: none; }
.guide-checklist a {
  display: block; padding: 9px 0 9px 26px; font-size: 12.5px; line-height: 1.45;
  color: var(--ink); position: relative; opacity: 1;
}
.guide-checklist a::before {
  content: counter(toc, decimal-leading-zero); position: absolute; left: 0; top: 9px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600; color: var(--ink-muted);
}
.guide-checklist a:hover, .guide-checklist a.is-active { font-weight: 600; opacity: 1; }
.guide-checklist a.is-active::before { color: var(--accent); }
.guide-checklist-cta { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.guide-checklist-cta .btn-secondary { width: 100%; justify-content: center; font-size: 13px; }
.guide-stream { min-width: 0; }
.guide-stream-block { scroll-margin-top: 110px; padding: 40px !important; border-bottom: 1px solid var(--line-soft); }
.guide-stream-block:first-child { padding-top: 0; }
.guide-stream-block:last-of-type { border-bottom: none; }
.guide-stream-block h3 {
  font-size: 1.12rem; margin: 0 0 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--line); font-family: var(--font-display);
}
.guide-stream-block p, .guide-stream-block li { color: var(--ink-muted); font-size: 14.5px; line-height: 1.75; }
.guide-stream-block li { padding: 5px 0 5px 20px; position: relative; }
.guide-stream-block li::before { content: '—'; position: absolute; left: 0; color: var(--ink); }
.guide-link-bar {
  display: block; margin-top: 26px; padding: 22px; background: var(--paper);
  border: 1px solid var(--line);
}
.guide-link-bar > p { color: var(--ink-muted); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.guide-link-bar ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 12px; padding: 0; }
.guide-link-bar li { margin: 0; padding: 0; }
.guide-link-bar li::before { display: none !important; }
.guide-link-bar li a, .guide-link-bar > a {
  display: inline-block; padding: 7px 13px; font-size: 12px; font-weight: 600;
  background: var(--sheet); border: 1px solid var(--line); opacity: 1;
}
.guide-link-bar li a:hover { background: var(--ink); color: var(--sheet); opacity: 1; }

/* —— About / editorial column —— */
.editorial-column { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.editorial-column > .section, .editorial-column .section { border-bottom: none; padding: 36px 0; }
.editorial-column > .section .container, .editorial-column .section .container { padding: 0; max-width: none; }
.editorial-column > .section:not(:has(.about-layout)) .container { max-width: 680px; margin: 0 auto; }
.editorial-column .cta-band .container { max-width: 680px; margin: 0 auto; }
.about-breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
  font-size: 12px; color: var(--ink-muted); margin-bottom: 16px; letter-spacing: 0.04em;
}
.about-breadcrumb a { color: var(--ink-muted); opacity: 1; }
.about-breadcrumb a:hover { color: var(--ink); opacity: 1; }
.about-breadcrumb span[aria-current="page"] { color: var(--ink); font-weight: 600; }
.hero .about-lead { font-size: 1.05rem; color: var(--ink-muted); max-width: 680px; margin: 0 auto 26px; line-height: 1.85; text-align: center; }
.editorial-column .about-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 36px; align-items: start;
}
.about-main { background: var(--sheet); border: 1px solid var(--line); padding: 34px 30px; }
.about-sec-title {
  font-family: var(--font-display); font-size: 1.32rem; margin: 28px 0 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.about-sec-title:first-child { margin-top: 0; }
.editorial-about-masthead {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--line); margin-bottom: 28px; background: var(--sheet);
}
.editorial-about-masthead .masthead-cell {
  padding: 16px 18px; border-right: 1px solid var(--line-soft); font-size: 12px; color: var(--ink-muted);
}
.editorial-about-masthead .masthead-cell:last-child { border-right: none; }
.editorial-about-masthead .masthead-cell strong {
  display: block; font-family: var(--font-display); font-size: 1.1rem;
  color: var(--ink); font-weight: 700; margin-bottom: 2px;
}
.editorial-fact-sheet {
  background: var(--sheet); border: 1px solid var(--line); position: sticky; top: calc(var(--header-h) + 12px);
}
.editorial-fact-sheet-head { padding: 18px 18px 14px; border-bottom: 1px solid var(--line); }
.editorial-fact-sheet-head h3 {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-muted); margin: 0; font-family: var(--font-ui);
}
.editorial-fact-sheet-head .fact-brand {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin: 4px 0 0;
}
.fact-row {
  display: flex; justify-content: space-between; gap: 12px; padding: 11px 18px;
  border-bottom: 1px solid var(--line-soft); font-size: 13px;
}
.fact-row:last-child { border-bottom: none; }
.fact-row dt { color: var(--ink-muted); }
.fact-row dd { font-weight: 600; text-align: right; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 12px; }
.service-item { border: 1px solid var(--line-soft); padding: 14px; font-size: 13px; color: var(--ink-muted); }
.service-item strong { display: block; color: var(--ink); margin-bottom: 4px; font-weight: 600; }
/* —— Editorial UI formats —— */
.editorial-fact-box { background: var(--paper); border: 1px solid var(--line); padding: 20px 22px; margin: 22px 0; }
.editorial-fact-box .fact-box-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px; }
.editorial-fact-box p { font-size: 14px; color: var(--ink-muted); line-height: 1.75; margin: 0 0 8px; }
.editorial-fact-box p:last-child { margin-bottom: 0; }
.margin-note { display: grid; grid-template-columns: 36px 1fr; gap: 14px; margin: 22px 0; padding: 16px 18px; border-left: 2px solid var(--ink); background: var(--paper); }
.margin-note-num { font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--ink-muted); padding-top: 2px; }
.margin-note-body { font-size: 14px; color: var(--ink-muted); line-height: 1.72; }
.pull-quote { margin: 26px 0; padding: 22px 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 1.12rem; line-height: 1.55; color: var(--ink); }
.pull-quote cite { display: block; margin-top: 10px; font-family: var(--font-ui); font-size: 11px; font-style: normal; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }
.comparison-table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 13px; border: 1px solid var(--line); }
.comparison-table th, .comparison-table td { padding: 11px 14px; border-bottom: 1px solid var(--line-soft); text-align: left; vertical-align: top; }
.comparison-table thead th { background: var(--paper); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.spec-table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 13px; border: 1px solid var(--line); }
.spec-table th, .spec-table td { padding: 10px 14px; border-bottom: 1px solid var(--line-soft); text-align: left; vertical-align: top; }
.spec-table thead th { background: var(--ink); color: var(--sheet); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.spec-table tbody tr:last-child td { border-bottom: none; }
.spec-table tbody td:first-child { font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted); width: 36%; }
.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); margin: 22px 0; }
.do-dont-col { padding: 18px 20px; font-size: 14px; }
.do-dont-col:first-child { border-right: 1px solid var(--line); background: var(--paper); }
.do-dont-col:last-child { background: var(--sheet); }
.do-dont-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; font-family: var(--font-ui); }
.do-dont-col h4.do-label { color: var(--ink); }
.do-dont-col h4.dont-label { color: var(--accent); }
.do-dont-col ul { margin: 0; list-style: none; }
.do-dont-col li { font-size: 13px; color: var(--ink-muted); padding: 4px 0 4px 16px; position: relative; }
.do-dont-col li::before { content: '·'; position: absolute; left: 0; color: var(--ink); }
.editorial-inset { margin: 24px 0; padding: 24px 28px; border: 2px solid var(--ink); background: var(--sheet); }
.editorial-inset-label { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.editorial-inset p { font-size: 14.5px; color: var(--ink-muted); line-height: 1.78; margin: 0 0 10px; }
.editorial-inset p:last-child { margin-bottom: 0; }
.caption-box { margin: 22px 0; padding: 16px 20px 16px 24px; border-left: 3px solid var(--accent); background: var(--paper); }
.caption-box-label { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 6px; }
.caption-box p { font-size: 14px; color: var(--ink-muted); line-height: 1.72; margin: 0; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.chip-row .chip { display: inline-block; padding: 6px 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; border: 1px solid var(--line); background: var(--sheet); color: var(--ink-muted); }
.chip-row .chip.is-accent { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.article-content .editorial-block.guide-stream-block { margin: 28px 0; padding: 22px 24px; border: 1px solid var(--line); background: var(--paper); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); margin: 20px 0; }
.stat-box { padding: 18px 14px; border-right: 1px solid var(--line-soft); text-align: center; min-width: 0; }
.stat-box:last-child { border-right: none; }
.stat-number { font-size: clamp(0.75rem, 2.2vw, 1.05rem); font-weight: 700; word-break: break-word; }
.stat-label { font-size: 11px; color: var(--ink-muted); margin-top: 4px; }
.identity-card { background: var(--paper); border: 1px solid var(--line); padding: 22px; margin-top: 20px; }
.id-row { display: grid; grid-template-columns: 120px 1fr; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--line-soft); font-size: 13px; }
.id-row:last-child { border-bottom: none; }
.id-row dt { color: var(--ink-muted); }
.id-row dd { font-weight: 500; }

/* —— Blog —— */
.blog-hero {
  padding: 64px 0 48px; text-align: center; border-bottom: 1px solid var(--line); background: var(--paper);
}
.blog-hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); margin-bottom: 14px; }
.blog-hero p { font-size: 1rem; color: var(--ink-muted); max-width: 560px; margin: 0 auto; }
.blog-layout {
  max-width: 1180px; margin: 0 auto; padding: 44px 24px 56px;
  display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 40px; align-items: start;
}
.featured-card {
  background: var(--sheet); border: 1px solid var(--line); overflow: hidden;
  margin-bottom: 28px; display: grid; grid-template-columns: 1.1fr 1fr;
}
.featured-card:hover { border-color: var(--ink); }
.featured-img-wrap { min-height: 250px; background: var(--gray-bar); border-right: 1px solid var(--line); }
.featured-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.12); }
.featured-body { padding: 26px 28px; display: flex; flex-direction: column; justify-content: center; }
.featured-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 10px; }
.featured-body h2 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-bottom: 10px; line-height: 1.2; }
.featured-body p { font-size: 14px; color: var(--ink-muted); line-height: 1.7; margin-bottom: 14px; }
.featured-meta { display: flex; gap: 14px; font-size: 11px; color: var(--ink-faint); margin-bottom: 14px; }
.card-read { font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: underline; text-underline-offset: 3px; opacity: 1; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.filter-btn {
  font-size: 12px; font-weight: 500; color: var(--ink-muted); background: var(--sheet);
  border: 1px solid var(--line); padding: 6px 13px; cursor: pointer; font-family: inherit;
}
.filter-btn:hover, .filter-btn.active { background: var(--ink); color: var(--sheet); border-color: var(--ink); opacity: 1; }
.card-grid-blog { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.blog-card { background: var(--sheet); border: 1px solid var(--line); display: flex; flex-direction: column; overflow: hidden; opacity: 1; }
.blog-card:hover { border-color: var(--ink); opacity: 1; }
.blog-card-img { height: 156px; background: var(--gray-bar); border-bottom: 1px solid var(--line); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.08); }
.blog-card-body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat { font-size: 10px; font-weight: 600; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 7px; }
.blog-card-body h3 { font-size: 15px; font-weight: 600; line-height: 1.35; margin-bottom: 8px; flex: 1; font-family: var(--font-ui); }
.blog-card-body p { font-size: 12px; color: var(--ink-muted); line-height: 1.6; margin-bottom: 10px; }
.blog-card-meta { font-size: 11px; color: var(--ink-faint); display: flex; justify-content: space-between; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line-soft); }
.posts-list { display: flex; flex-direction: column; }
.list-post { background: var(--sheet); border: 1px solid var(--line); padding: 15px 18px; display: flex; gap: 14px; margin-bottom: -1px; opacity: 1; }
.list-post:hover { border-color: var(--ink); opacity: 1; }
.list-num { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: rgba(19, 18, 16, 0.1); min-width: 36px; }
.list-content h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; line-height: 1.4; font-family: var(--font-ui); }
.list-content p { font-size: 12px; color: var(--ink-muted); line-height: 1.6; margin-bottom: 6px; }
.list-meta { font-size: 11px; color: var(--ink-faint); }
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 36px; }
.page-btn {
  width: 38px; height: 38px; border: 1px solid var(--line); background: var(--sheet);
  color: var(--ink); font-size: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.page-btn:hover, .page-btn.active { background: var(--ink); color: var(--sheet); border-color: var(--ink); }
.blog-article-wrap { max-width: 740px; margin: 0 auto; padding: 0 24px 56px; }
.article-byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px;
  padding: 0 0 22px; border-bottom: 1px solid var(--line); margin-bottom: 28px;
  font-size: 13px; color: var(--ink-muted);
}
.article-byline .author-name { font-weight: 600; color: var(--ink); }
.article-hero { height: 280px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.15); }
.article-hero-meta {
  position: absolute; left: 24px; right: 24px; bottom: 18px; color: var(--sheet);
}
.breadcrumb { max-width: 740px; margin: 0 auto; padding: 14px 24px; font-size: 12px; color: var(--ink-muted); }
.content-card, .info-panel { background: var(--sheet) !important; border: 1px solid var(--line) !important; padding: 22px !important; }
.widget-search { display: flex; gap: 8px; }
.widget-search input {
  background: var(--paper); border: 1px solid var(--line); padding: 9px 13px;
  font-size: 13px; color: var(--ink); font-family: inherit; flex: 1;
}
.widget-search button {
  background: var(--ink); border: 1px solid var(--ink); padding: 0 14px;
  cursor: pointer; font-size: 13px; font-weight: 600; color: var(--sheet); font-family: inherit;
}

/* —— Gir redirect —— */
.gir-redirect {
  display: flex; align-items: center; justify-content: center;
  padding: 56px 20px 72px; min-height: calc(100vh - 180px);
}
.redirect-card {
  background: var(--sheet); border: 1px solid var(--line); padding: 44px 36px;
  text-align: center; max-width: 460px; width: calc(100% - 40px);
}
.card-logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px; color: var(--ink); opacity: 1; }
.card-logo-icon {
  width: 42px; height: 42px; background: var(--ink); color: var(--sheet);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 19px; border: 1px solid var(--line);
}
.card-logo-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; }
.card-logo-sub { font-size: 9px; color: var(--ink-muted); letter-spacing: 0.16em; text-transform: uppercase; }
.spinner-wrap {
  position: relative; width: 76px; height: 76px; margin: 0 auto 22px;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
}
.spinner-svg, .spinner-track, .spinner-fill { display: none; }
.spinner-num { font-family: var(--font-display); font-size: 30px; font-weight: 700; }
.redirect-card h1 { font-size: 21px; margin-bottom: 10px; }
.redirect-card p { font-size: 14px; color: var(--ink-muted); margin-bottom: 22px; }
.dest-pill {
  display: inline-flex; align-items: center; background: var(--paper);
  border: 1px solid var(--line); padding: 7px 14px; margin-bottom: 22px; font-size: 12px; font-weight: 500;
}
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--ink); color: var(--sheet); font-weight: 600; font-size: 14px;
  padding: 13px 28px; border: 1px solid var(--ink); width: 100%; opacity: 1;
}
.cta-btn:hover { background: var(--sheet); color: var(--ink); opacity: 1; }
.back-link { margin-top: 18px; font-size: 12px; color: var(--ink-muted); }
.back-link a { text-decoration: underline; text-underline-offset: 2px; opacity: 1; }
.gir-redirect .trust-bar {
  display: flex; justify-content: center; gap: 14px; margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--line-soft); flex-wrap: wrap; background: none; border-bottom: none;
}
.gir-redirect .trust-item { font-size: 11px; color: var(--ink-muted); padding: 0; border: none; flex: none; min-width: 0; }

/* —— Footer —— */
footer { background: var(--sheet); border-top: 2px solid var(--line); padding: 44px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px;
  padding-bottom: 36px; border-bottom: 1px solid var(--line-soft);
}
.footer-brand p { font-size: 13px; color: var(--ink-muted); line-height: 1.75; max-width: 320px; margin: 14px 0 0; }
.footer-col h4 {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 14px; color: var(--ink-muted); font-weight: 600;
}
.footer-col li { margin-bottom: 7px; }
.footer-col a { font-size: 13px; opacity: 1; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  flex-wrap: wrap; padding: 18px 0;
}
.footer-bottom p, .footer-disclaimer p { font-size: 11px; color: var(--ink-faint); letter-spacing: 0.02em; }
.footer-disclaimer { background: var(--paper); border-top: 1px solid var(--line-soft); padding: 14px 0; }
.footer-disclaimer p { max-width: 860px; margin: 0; line-height: 1.7; }

/* —— Scroll top —— */
#scroll-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 900;
  width: 42px; height: 42px; border: 1px solid var(--line); background: var(--sheet);
  color: var(--ink); font-size: 18px; cursor: pointer; opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
#scroll-top.visible { opacity: 1; visibility: visible; }
#scroll-top:hover { background: var(--ink); color: var(--sheet); opacity: 1; }

/* —— Responsive —— */
@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-img-wrap { min-height: 200px; border-right: none; border-bottom: 1px solid var(--line); }
}

@media (max-width: 900px) {
  :root { --header-h: 96px; }
  .header-label { display: none; }
  .header-top { padding: 12px 20px; }
  .header-nav-row { padding: 0 16px; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--sheet); border-bottom: 1px solid var(--line); padding: 8px 16px 14px; z-index: 998;
  }
  .main-nav.open { display: block; max-height: 70vh; overflow-y: auto; }
  .main-nav ul { flex-direction: column; align-items: stretch; }
  .main-nav li + li::before { display: none; }
  .main-nav li { width: 100%; border-bottom: 1px solid var(--line-soft); }
  .main-nav a { width: 100%; padding: 10px 0; display: block; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .page-layout { grid-template-columns: 1fr; gap: 0; }
  .page-layout .content-main { border-right: none; padding-right: 0; }
  .sidebar-nav { position: static; border-left: none; padding-left: 0; border-top: 1px solid var(--line); margin-top: 20px; }
  .hero-split-inner { grid-template-columns: 1fr; gap: 24px; }
  .guide-dossier { grid-template-columns: 1fr; gap: 18px; }
  .guide-checklist { position: static; }
  .guide-checklist ol { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
  .editorial-column .about-layout { grid-template-columns: 1fr; }
  .editorial-fact-sheet { position: static; }
  .editorial-about-masthead { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .social-channel-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-list .trust-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid var(--line-soft); }
}

@media (max-width: 720px) {
  #top-banner.promo-banner--editorial .promo-banner-inner {
    grid-template-columns: 1fr; row-gap: 4px; padding: 10px 16px; text-align: center; min-height: 0;
  }
  #top-banner.promo-banner--editorial .promo-index { border-right: none; padding: 0; }
  #top-banner.promo-banner--editorial .promo-text { padding: 0; }
}

@media (max-width: 520px) {
  .hero { padding: 44px 0 36px; }
  .hero--compact { padding: 22px 0 18px; }
  .guide-checklist ol { grid-template-columns: 1fr; }
  .guide-lead { padding: 20px 18px; }
  .hero-card { padding: 20px 16px; }
  .social-row { grid-template-columns: 1fr; gap: 4px; }
  .stats-list .trust-item { width: 100%; }
  .social-stats-bar .stat-chip { min-width: 100%; border-right: none; border-bottom: 1px solid var(--line-soft); }
  .social-channel-grid { grid-template-columns: 1fr; }
  .social-directory-table thead { display: none; }
  .social-directory-table tbody tr { display: block; padding: 14px; border-bottom: 1px solid var(--line-soft); }
  .social-directory-table tbody td { display: block; padding: 3px 0; border: none; }
  .article-hero { height: 220px; }
  .article-hero-meta { left: 16px; right: 16px; bottom: 14px; }
  .stat-number { font-size: 0.72rem; }
  .id-row { grid-template-columns: 1fr; gap: 2px; }
  .identity-card { padding: 18px 14px; }
  .card-grid-blog { grid-template-columns: 1fr; }
  .editorial-about-masthead { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TASARIM STANDARDI (net-v3) — İç sayfa içerik panelleri
   ------------------------------------------------------------
   Panel   : zemin var(--sheet) · 1px solid var(--line) · padding 26px 28px
   Aralık  : paneller arası 20px
   Başlık  : üst satırda numara + etiket → altında h2 (Newsreader 600,
             ince ayırıcı çizgili)
   Gövde   : 14.5px · var(--ink-muted) · line-height 1.75 · liste işareti "—"
   Sıralama: hero(compact) → numaralı paneller → Resmi Domain paneli →
             CTA paneli → sidebar (İçindekiler)
   ============================================================ */
.hero .section-note {
  max-width: 1180px;
  margin: 10px auto 0;
  padding: 0 24px;
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
}
.page-layout { padding-bottom: 8px; }

/* içerik sütunu: paneller dikey, aralarında eşit boşluk */
.page-layout .content-main {
  border-right: none;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* section kabuğu nötr; panel görünümünü .container verir */
.page-layout .section {
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
}
.page-layout .section + .section { border-top: none; }
.page-layout .content-main > .section:first-child { padding-top: 0; }

/* —— PANEL —— */
.page-layout .section > .container {
  max-width: none;
  margin: 0;
  padding: 26px 28px;
  background: var(--sheet);
  border: 1px solid var(--line);
}

/* —— PANEL BAŞLIĞI —— */
.page-layout .section-header { text-align: left; margin-bottom: 16px; }
.page-layout .section-num {
  display: inline-block;
  margin: 0 8px 0 0;
  vertical-align: middle;
}
.page-layout .section-tag {
  display: inline-block;
  margin: 0;
  padding: 0;
  border-bottom: none;
  vertical-align: middle;
}
.page-layout .section-header h2 {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  font-weight: 600;
  line-height: 1.18;
  margin: 10px 0 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.page-layout .section-header p { margin-top: 14px; }

/* —— PANEL GÖVDESİ —— */
.page-layout .prose > :first-child,
.page-layout .article-body > :first-child { margin-top: 0; }
.page-layout .section .info-box { margin-top: 18px; }

/* Resmi Domain: panel içinde çift çerçeve olmaması için sade */
.page-layout .address-box {
  border: none;
  background: transparent;
  padding: 0;
  margin-top: 16px;
}
.page-layout .section-header + .address-box,
.page-layout .section-header + .social-stats-bar,
.page-layout .section-header + .card-grid { margin-top: 4px; }

/* CTA paneli: ortalı butonlar */
.page-layout .cta-band > .container { text-align: center; }
.page-layout .cta-band .hero-buttons { padding: 0; justify-content: center; }

.blog-hero--compact {
  padding: 28px 0 22px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
}
.blog-hero--compact h1 {
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  margin-bottom: 10px;
  line-height: 1.15;
}
.blog-hero--compact p {
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto;
}
.blog-hero .section-note {
  max-width: 560px;
  margin: 16px auto 0;
  text-align: center;
}
.section-cta-center {
  padding: 32px;
  text-align: center;
}
.social-directory-wrap.is-spaced {
  margin-top: 14px;
}

.main-wrap--single {
  max-width: 740px;
  margin: 0 auto;
  padding: 16px 24px 48px;
}
.main-wrap--single .hero.hero--left {
  padding: 24px 0 16px;
  border-bottom: none;
}
.main-wrap--single .hero.hero--left h1,
.main-wrap--single .hero.hero--left .hero-badge + p {
  margin-bottom: 0;
}
.main-wrap--single .hero.hero--left p {
  font-size: 0.92rem;
  margin: 0;
}
/* Blog makale gövdesi: hub panelleriyle aynı dil (beyaz zemin + 1px çerçeve) */
.article-card {
  background: var(--sheet);
  border: 1px solid var(--line);
  padding: 32px 36px;
  margin-bottom: 20px;
}
.article-header {
  padding: 0 0 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.article-card > .article-header { margin-top: 0; }
.article-card > .article-content > :first-child { margin-top: 0; }
.article-kicker {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.article-header h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  margin: 0 0 12px;
  line-height: 1.12;
}
.article-dek {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0 0 16px;
}
.article-byline {
  font-size: 13px;
  color: var(--ink-muted);
}
.article-content {
  font-size: 15px;
  line-height: 1.75;
}
.article-content h2 {
  font-size: 1.35rem;
  margin: 28px 0 12px;
}
.article-content h3,
.article-content h4 {
  font-size: 1.08rem;
  margin: 20px 0 10px;
  font-family: var(--font-ui);
  font-weight: 600;
}
.article-content p {
  margin-bottom: 14px;
  color: var(--ink-muted);
}
.article-content ul,
.article-content ol {
  margin: 10px 0 16px;
  padding-left: 0;
}
.article-content li {
  color: var(--ink-muted);
  padding: 5px 0 5px 20px;
  position: relative;
  font-size: 14.5px;
}
.article-content li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ink);
}
.article-content .info-box,
.article-content .callout,
.article-content .warning-box {
  margin: 22px 0;
}
.article-content .callout {
  background: var(--accent-soft);
  border: 1px solid rgba(196, 18, 26, 0.18);
  padding: 16px 18px;
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.65;
}
.article-content .comparison-table,
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  border: 1px solid var(--line);
  background: var(--sheet);
}
.article-content table th,
.article-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
}
.article-content table th {
  background: var(--paper);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.related-card {
  cursor: pointer;
}
.article-related-wrap {
  margin-top: 48px;
}
.gir-redirect .redirect-note {
  font-size: 13px;
  margin-top: 12px;
  color: var(--ink-muted);
}

.gir-redirect {
  padding: 48px 0 56px;
}
.gir-redirect .redirect-card {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--sheet);
}
.gir-redirect h1 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 12px;
}

/* —— Blog article: steps, tags, post-nav, related, comments —— */
.article-content ol.steps {
  list-style: none;
  counter-reset: step;
  padding-left: 0;
  margin: 16px 0;
}
.article-content ol.steps li {
  counter-increment: step;
  padding: 6px 0 6px 40px;
  position: relative;
}
.article-content ol.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 6px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--sheet);
  background: var(--ink);
  border: 1px solid var(--line);
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 32px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.article-tags > span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.article-tags a {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--line);
  background: var(--sheet);
  color: var(--ink);
  opacity: 1;
}
.article-tags a:hover {
  background: var(--ink);
  color: var(--sheet);
  opacity: 1;
}
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.post-nav-item {
  border: 1px solid var(--line);
  padding: 16px 18px;
  cursor: pointer;
  background: var(--sheet);
  transition: background var(--transition);
}
.post-nav-item:hover { background: var(--paper); }
.post-nav-item.next { text-align: right; }
.post-nav .nav-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.post-nav h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.25;
}
.article-related-wrap .section-title {
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.related-card {
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--sheet);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}
.related-card:hover { border-color: var(--ink); }
.related-card-img {
  font-size: 30px;
  line-height: 1;
  padding: 20px 18px 0;
}
.related-card-body { padding: 12px 18px 18px; }
.related-card .cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.related-card h4 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 10px;
}
.related-card .date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
}
.comments-section {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.comments-section h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 600;
}
.comment-form { display: flex; flex-direction: column; gap: 12px; }
.comment-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.comment-form textarea,
.comment-form input {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--sheet);
  color: var(--ink);
}
.comment-form textarea { min-height: 110px; resize: vertical; }
.comment-form textarea:focus,
.comment-form input:focus { outline: none; border-color: var(--accent); }
.comment-form button {
  align-self: flex-start;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 22px;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--sheet);
  cursor: pointer;
  transition: opacity var(--transition);
}
.comment-form button:hover { opacity: 0.8; }

@media (max-width: 520px) {
  .page-layout .content-main { gap: 16px; }
  .page-layout .section > .container { padding: 20px 18px; }
  .article-card { padding: 22px 20px; }
  .blog-hero--compact { padding: 22px 0 18px; }
  .post-nav { grid-template-columns: 1fr; }
  .comment-form .form-row { grid-template-columns: 1fr; }
}
