/* ══════════════════════════════════════════════
   GAMBITY.CSS — v1.0
   Light: FT krem tonu (#FFF1E0 base)
   Dark:  Koyu lacivert (#0a0f1e base)
   Tipografi: Playfair Display (serif) + Inter (sans)
   ══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Light mode — FT inspired */
  --bg:           #FFF1E0;
  --bg-surface:   #FDEBD0;
  --bg-card:      #FFFFFF;
  --bg-sidebar:   #F9EDD8;
  --text:         #1A1A1A;
  --text-muted:   #666666;
  --text-faint:   #999999;
  --border:       #E8D9C4;
  --border-light: #F0E4CE;
  --accent:       #FF4200;       /* Gambity orange */
  --accent-gold:  #FF4200;
  --link:         #1A1A1A;
  --link-hover:   #FF4200;
  --ticker-bg:    #1A1A1A;
  --ticker-text:  #FFF1E0;
  --prob-bg:      #F5EDD8;
  --signal-border:#E8D9C4;
  --nav-bg:       rgba(255, 241, 224, 0.97);
  --footer-bg:    #1A1A1A;
  --footer-text:  #FFF1E0;

  /* Typography */
  --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --max-w:        1240px;
  --gap:          24px;
}

[data-theme="dark"] {
  --bg:           #0a0f1e;
  --bg-surface:   #0d1426;
  --bg-card:      #111827;
  --bg-sidebar:   #0f1a2e;
  --text:         #E8DCC8;
  --text-muted:   #8A9BB5;
  --text-faint:   #556070;
  --border:       #1e2d45;
  --border-light: #162035;
  --accent:       #E8A030;       /* amber in dark */
  --accent-gold:  #D4A830;
  --link:         #E8DCC8;
  --link-hover:   #E8A030;
  --ticker-bg:    #060b18;
  --ticker-text:  #E8DCC8;
  --prob-bg:      #0d1930;
  --signal-border:#1e2d45;
  --nav-bg:       rgba(10, 15, 30, 0.97);
  --footer-bg:    #060b18;
  --footer-text:  #E8DCC8;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.25s ease, color 0.25s ease;
  overflow-x: clip;
}
body { min-height: 100vh; overflow-x: clip; max-width: 100vw; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); }
img { max-width: 100%; height: auto; display: block; }

/* ══════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════ */
.g-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.g-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ══════════════════════════════════════════════
   WORDMARK — Business Insider style
   ══════════════════════════════════════════════ */
.g-wordmark {
  text-decoration: none;
  flex-shrink: 0;
  display: block;
}

.g-wordmark-name {
  display: block;
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text);
  font-style: normal;
  line-height: 1;
  transition: color 0.15s;
  text-transform: uppercase;
}

.g-wordmark:hover .g-wordmark-name { color: #FF4200; }

.g-wordmark-tagline {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-top: 4px;
  white-space: nowrap;
  line-height: 1;
}

.g-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: -1px;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
}

.g-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  flex-shrink: 0;
  font-style: italic;
}

.g-logo:hover { color: var(--accent); }

.g-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.g-nav::-webkit-scrollbar { display: none; }

.g-nav-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 10px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
  flex-shrink: 0;
}

.g-nav-link:hover,
.g-nav-link.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.g-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.g-theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 8px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: all 0.15s;
}
.g-theme-toggle:hover { color: var(--text); border-color: var(--text-muted); }

/* Sun/moon toggle */
[data-theme="dark"]  .icon-sun  { display: block; }
[data-theme="dark"]  .icon-moon { display: none; }
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: block; }
.icon-sun, .icon-moon { display: block; }

.g-breaking-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #CC2200;
  padding: 5px 10px;
  border: 1px solid rgba(204, 34, 0, 0.3);
  border-radius: 4px;
  transition: all 0.15s;
}
.g-breaking-badge:hover { background: rgba(204, 34, 0, 0.08); color: #CC2200; }

.g-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CC2200;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── TICKER ── */
.g-ticker-wrap {
  background: var(--ticker-bg);
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
}

.g-ticker {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  gap: 0;
}

.g-ticker-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding: 0 16px;
  flex-shrink: 0;
  position: sticky;
  left: 0;
  background: var(--ticker-bg);
  z-index: 1;
}

.g-ticker-item {
  font-size: 11px;
  color: var(--ticker-text);
  padding: 0 24px;
  opacity: 0.8;
}

.g-ticker-prob {
  color: var(--accent);
  font-weight: 600;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════════ */
.g-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.g-page {
  padding: 40px 0 80px;
}

/* ══════════════════════════════════════════════
   INDEX — HOME PAGE
   ══════════════════════════════════════════════ */

/* Section label — FT style */
.g-section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 20px 0 12px;
  border-top: 2px solid var(--text);
  display: block;
}

/* Hero — top story */
.g-hero {
  display: grid;
  grid-template-columns: 1fr 520px 280px;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 1px;
}

.g-hero-left {
  background: var(--bg-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.g-hero-center {
  background: var(--bg-card);
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.g-hero-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.g-hero-right {
  background: var(--bg-card);
  padding: 24px;
}

/* Article card — grid */
.g-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #C0A882;
  border: 2px solid #C0A882;
  margin-bottom: 2px;
}

.g-card {
  background: var(--bg-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.15s;
}

.g-card:hover { background: var(--bg-surface); }

.g-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 2px;
}

.g-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%);
}

.g-card:hover .g-card-img img { transform: scale(1.03); filter: grayscale(60%); }

/* Category tag */
.g-cat-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
}

/* Headline */
.g-headline {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.g-headline-xl  { font-size: 36px; }
.g-headline-lg  { font-size: 24px; }
.g-headline-md  { font-size: 19px; }
.g-headline-sm  { font-size: 16px; }

.g-headline a { color: inherit; }
.g-headline a:hover { color: var(--accent); }

/* Excerpt */
.g-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Meta */
.g-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-faint);
  flex-wrap: wrap;
}

.g-meta-author {
  color: var(--text-muted);
  font-weight: 600;
}

.g-meta-dot { opacity: 0.4; }

.g-meta-time { font-variant-numeric: tabular-nums; }

/* Format badge */
.g-format-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  background: var(--bg-surface);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.g-format-badge.signal  { background: rgba(184, 150, 12, 0.12); color: var(--accent-gold); border-color: rgba(184, 150, 12, 0.3); }
.g-format-badge.breaking{ background: rgba(204, 34, 0, 0.12); color: #CC2200; border-color: rgba(204, 34, 0, 0.3); }

/* Most read sidebar */
.g-most-read { }
.g-most-read-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.g-most-read-list { display: flex; flex-direction: column; gap: 16px; }

.g-most-read-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.g-most-read-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}

.g-most-read-headline {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.g-most-read-headline a:hover { color: var(--accent); }

/* Analyst row */
.g-analyst-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

.g-analyst-card {
  background: var(--bg-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.15s;
}

.g-analyst-card:hover { background: var(--bg-surface); }

.g-analyst-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.g-analyst-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.g-analyst-initials {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.g-analyst-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.g-analyst-title {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

.g-analyst-latest {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  border-top: 1px solid var(--border-light);
  padding-top: 10px;
}

.g-analyst-latest a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════
   ARTICLE PAGE
   ══════════════════════════════════════════════ */
.g-article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* Article main */
.g-article-main { }

.g-article-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.g-article-headline {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.g-article-standfirst {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-serif);
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 24px;
}

.g-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.g-article-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.g-article-author-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
}

.g-article-author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.g-article-author-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.g-article-author-name {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.g-article-author-title {
  font-size: 12px;
  color: var(--text-muted);
}

/* Hero image */
.g-article-cover {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 32px;
}

.g-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

/* Body content */
.g-article-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}

.g-article-body p {
  margin-bottom: 22px;
}

.g-article-body strong { font-weight: 600; }

.g-article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.g-article-body a:hover { opacity: 0.8; }

/* Signature line — last paragraph */
.g-article-signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--text);
  border-top: 2px solid var(--accent);
  padding-top: 20px;
  margin-top: 32px;
  line-height: 1.5;
}

/* ── GAMBITY PRESTIGE BAR ── */
.gp-bar {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
  /* Gündüz: koyu */
  background: #0a0f1e;
  border: 1px solid rgba(255,255,255,0.06);
}
.gp-top {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gp-market {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.gp-logo-row { display: flex; align-items: center; gap: 7px; }
.gp-prestige {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF4200;
}
.gp-body {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.gp-pct {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1;
  flex-shrink: 0;
}
.gp-mid { flex: 1; }
.gp-label {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.gp-track {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}
.gp-fill {
  height: 3px;
  background: #FF4200;
  border-radius: 2px;
}
.gp-gauge-track { stroke: rgba(255,255,255,0.08); }

/* Gece: kirli beyaz */
[data-theme="dark"] .gp-bar {
  background: #FAFAF8;
  border: 1px solid #E0E0DC;
}
[data-theme="dark"] .gp-top {
  border-bottom: 1px solid #E0E0DC;
}
[data-theme="dark"] .gp-market { color: #444; }
[data-theme="dark"] .gp-pct { color: #1A1A1A; }
[data-theme="dark"] .gp-label { color: #999; }
[data-theme="dark"] .gp-track { background: #E0E0DC; }
[data-theme="dark"] .gp-gauge-track { stroke: #E0E0DC; }

/* Author position box — Sebastian */
.g-position-box {
  background: var(--prob-bg);
  border: 1px solid var(--signal-border);
  border-left: 3px solid var(--accent-gold);
  border-radius: 4px;
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 13px;
}

.g-position-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.g-position-raw {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

/* Editor note */
.g-editor-note {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--text-faint);
  padding: 14px 18px;
  margin: 28px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
}

.g-editor-note-by {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-faint);
  font-style: normal;
  margin-top: 8px;
}

/* Article sidebar */
.g-article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.g-sidebar-cover {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
}

.g-sidebar-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g-sidebar-section {
  border-top: 2px solid var(--text);
  padding-top: 14px;
}

.g-sidebar-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Sources list */
.g-sources { display: flex; flex-direction: column; gap: 8px; }

.g-source-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.g-source-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.g-source-name {
  font-weight: 600;
  color: var(--text);
}

/* More articles sidebar */
.g-more-articles { display: flex; flex-direction: column; gap: 16px; }

.g-more-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.g-more-item:last-child { border-bottom: none; padding-bottom: 0; }

.g-more-headline {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.g-more-headline a:hover { color: var(--accent); }

.g-more-meta {
  font-size: 11px;
  color: var(--text-faint);
}

/* ══════════════════════════════════════════════
   CATEGORY PAGE
   ══════════════════════════════════════════════ */
.g-category-header {
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.g-category-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.g-category-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 8px;
}

.g-category-author-credit {
  font-size: 14px;
  color: var(--text-muted);
}

.g-category-author-credit span {
  font-weight: 600;
  color: var(--text);
}

.g-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════════════
   AUTHORS PAGE
   ══════════════════════════════════════════════ */
.g-authors-header {
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.g-authors-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.g-authors-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-serif);
}

.g-authors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.g-author-card {
  background: var(--bg-card);
  padding: 28px 24px;
  transition: background 0.15s;
}

.g-author-card:hover { background: var(--bg-surface); }

.g-author-card-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 2px solid var(--border);
}

.g-author-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.g-author-card-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.g-author-card-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.g-author-card-title {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.g-author-card-style {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-serif);
}

.g-author-card-covers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.g-cover-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.g-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 0 32px;
  margin-top: 80px;
}

.g-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.g-footer-top {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.g-footer-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: var(--footer-text);
  display: block;
  margin-bottom: 12px;
}

.g-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}

[data-theme="dark"] .g-footer-tagline { color: rgba(232, 220, 200, 0.5); }

.g-footer-social {
  display: flex;
  gap: 12px;
}

.g-footer-social a {
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.g-footer-social a:hover { color: var(--footer-text); }

.g-footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.g-footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.g-footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
  line-height: 1.5;
}
.g-footer-link:hover { color: var(--footer-text); }

.g-footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-top: 16px;
}

.g-footer-bottom {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.g-footer-sep { opacity: 0.3; }

/* ══════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════ */
.g-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.g-text-accent { color: var(--accent); }
.g-text-muted  { color: var(--text-muted); }
.g-font-serif  { font-family: var(--font-serif); }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .g-hero { grid-template-columns: 1fr 400px; }
  .g-hero-right { display: none; }
  .g-grid { grid-template-columns: repeat(3, 1fr); }
  .g-analyst-row { grid-template-columns: repeat(3, 1fr); }
  .g-footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .g-header-inner { padding: 0 16px; gap: 16px; }
  .g-logo { font-size: 22px; }
  .g-nav { display: none; }
  .g-hero { grid-template-columns: 1fr; }
  .g-hero-center { min-height: 240px; }
  .g-grid { grid-template-columns: 1fr 1fr; }
  .g-article-layout { grid-template-columns: 1fr; }
  .g-article-sidebar { position: static; }
  .g-article-headline { font-size: 28px; }
  .g-category-grid { grid-template-columns: 1fr 1fr; }
  .g-authors-grid { grid-template-columns: 1fr 1fr; }
  .g-analyst-row { grid-template-columns: 1fr 1fr; }
  .g-footer-top { grid-template-columns: 1fr; }
  .g-container { padding: 0 16px; }
  .g-partners-grid { grid-template-columns: 1fr; }

  /* Google preferred source — author'ın altına, tam genişlik */
  .g-google-btn {
    margin-left: 0 !important;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .g-grid { grid-template-columns: 1fr; }
  .g-category-grid { grid-template-columns: 1fr; }
  .g-authors-grid { grid-template-columns: 1fr; }
  .g-analyst-row { grid-template-columns: 1fr; }
  .g-article-headline { font-size: 24px; }
}

/* wordmark styles above */

/* ══════════════════════════════════════════════
   HAMBURGER BUTTON
   ══════════════════════════════════════════════ */
.g-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.g-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

@media (max-width: 900px) {
  .g-hamburger { display: flex; }
  .g-nav { display: none; }
}

/* ══════════════════════════════════════════════
   MOBILE MENU — slide in from right
   ══════════════════════════════════════════════ */
.g-mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  z-index: 1000;
  overflow-y: auto;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
  display: flex !important;
  flex-direction: column;
  visibility: hidden;
}

.g-mobile-menu.open { right: 0; visibility: visible; }

.g-mobile-menu-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.g-mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.g-mobile-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0;
}
.g-mobile-close:hover { color: var(--text); }

.g-mobile-breaking {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(204, 34, 0, 0.08);
  border: 1px solid rgba(204, 34, 0, 0.25);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #CC2200;
  text-decoration: none;
}
.g-mobile-breaking:hover { background: rgba(204, 34, 0, 0.14); color: #CC2200; }

.g-mobile-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
  margin-top: 4px;
}

.g-mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.15s;
  margin-bottom: 2px;
}
.g-mobile-link:hover,
.g-mobile-link.active {
  background: var(--bg-surface);
  color: var(--text);
}

.g-mobile-icon {
  font-size: 16px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.g-mobile-bottom {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.g-mobile-contact {
  font-size: 12px;
  color: var(--text-faint);
  text-decoration: none;
}
.g-mobile-contact:hover { color: #FF4200; }

/* ── OVERLAY ── */
.g-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  backdrop-filter: blur(2px);
}
.g-overlay.open { display: block; }

/* ══════════════════════════════════════════════
   FOOTER — updated
   ══════════════════════════════════════════════ */
.g-footer {
  background: #0a0f1e;
  color: #E8DCC8;
  padding: 60px 0 28px;
  margin-top: 80px;
}

.g-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.g-footer-top {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.g-footer-wordmark {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1;
}
.g-footer-wordmark:hover { color: #FF4200; }

.g-footer-tagline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FF4200;
  margin-bottom: 12px;
}

.g-footer-desc {
  font-size: 13px;
  color: rgba(232,220,200,0.5);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.g-footer-social {
  display: flex;
  gap: 10px;
}

.g-footer-social a {
  color: rgba(232,220,200,0.4);
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.g-footer-social a:hover { color: #FF4200; }

.g-footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.g-footer-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.35);
  margin-bottom: 10px;
}

.g-footer-link {
  font-size: 13px;
  color: rgba(232,220,200,0.6);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.15s;
}
.g-footer-link:hover { color: #FF4200; }

.g-footer-company {
  font-size: 11px;
  color: rgba(232,220,200,0.3);
  line-height: 1.7;
  margin-top: 12px;
}

.g-footer-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(232,220,200,0.25);
}

.g-footer-sep { opacity: 0.3; }

.g-footer-bottom-link {
  color: rgba(232,220,200,0.4);
  text-decoration: none;
  transition: color 0.15s;
}
.g-footer-bottom-link:hover { color: rgba(232,220,200,0.8); }

@media (max-width: 900px) {
  .g-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .g-footer-top { grid-template-columns: 1fr; }
}

/* Founder card in newsroom grid */
.g-analyst-full-card.founder {
  border-left: 3px solid #FF4200;
}

/* ── PROBABILITY BOX — Polymarket affiliate ── */
.prob-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.prob-source-link {
  font-size: 11px;
  font-weight: 700;
  color: #FF4200;
  text-decoration: none;
}
.prob-source-link:hover { opacity: 0.8; color: #FF4200; }

.prob-cta {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  padding: 4px 10px;
  border-radius: 3px;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.prob-cta:hover { opacity: 0.85; color: #fff; }

/* ── NATIVE PARTNER CARD ── */
.g-native-card {
  border-top: 2px solid var(--border);
  position: relative;
}

.g-native-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2px 6px;
}

/* ══════════════════════════════════════════════
   HERO NEW — tek büyük, kırmızı overlay
   ══════════════════════════════════════════════ */
.g-hero-new {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 1px;
}

.g-hero-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  height: 420px;
}

.g-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
  filter: grayscale(100%);
}

.g-hero-img-wrap:hover img { transform: scale(1.03); }

/* Red overlay — Schindler's List */
.g-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(180, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.0) 30%,
    rgba(0, 0, 0, 0.80) 100%
  );
  z-index: 1;
}

.g-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 24px;
  z-index: 2;
}

.g-hero-cat {
  color: #FF4200 !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: inline-block;
}

.g-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.g-hero-excerpt {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin-bottom: 12px;
  max-width: 600px;
}

.g-hero-prob {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,66,0,0.2);
  border: 1px solid rgba(255,66,0,0.4);
  border-radius: 3px;
  padding: 4px 10px;
  margin-bottom: 10px;
  font-size: 13px;
}
.g-hero-prob strong { color: #FF4200; font-size: 16px; }
.g-hero-prob span   { color: rgba(255,255,255,0.7); }

.g-hero-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* g-card-img as link */
a.g-card-img {
  display: block;
  text-decoration: none;
}

@media (max-width: 900px) {
  .g-hero-new { grid-template-columns: 1fr; }
  .g-hero-img-wrap { min-height: 280px; height: 280px; }
  .g-hero-right {
    padding: 20px 16px;
    background: var(--bg-card);
  }

  /* Hero inline-style override — mobilde üst/alt stack */
  [style*="grid-template-columns:1fr 280px"],
  [style*="grid-template-columns: 1fr 280px"] {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* ── BREAKING CAROUSEL — mobil (mynet tarzı tek kart) ── */
.g-breaking-carousel-wrapper {
  display: none; /* sadece JS aktive edince görünür */
}

@media (max-width: 768px) {
  /* Orijinal grid'i gizle */
  .g-breaking-carousel {
    display: none !important;
  }

  /* Wrapper görünür olsun */
  .g-breaking-carousel-wrapper {
    display: block;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    margin-bottom: 2px;
    overflow: hidden;
  }

  /* Kart track */
  .g-bc-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
  }

  /* Tek kart */
  .g-bc-track .g-card {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    border: none;
    border-bottom: none;
  }

  /* Ok butonları */
  .g-bc-prev,
  .g-bc-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.45);
    border: none;
    color: #fff;
    font-size: 22px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
  }
  .g-bc-prev { left: 8px; }
  .g-bc-next { right: 8px; }
  .g-bc-prev:hover, .g-bc-next:hover { background: rgba(0,0,0,0.7); }

  /* Dots */
  .g-bc-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 8px 0;
    background: var(--bg-card);
  }
  .g-bc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.2s;
  }
  .g-bc-dot.active { background: #CC2200; }

  /* Grid — mobilde 1 kolon */
  .g-grid {
    grid-template-columns: 1fr !important;
  }

  /* Hero height mobil */
  .g-hero-img-wrap {
    height: 260px !important;
    min-height: 260px !important;
  }

  /* Analyst row — 2 kolon mobil */
  .g-analyst-row {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Container padding */
  .g-container {
    padding: 0 12px;
  }

  /* Section label */
  .g-section-label {
    padding: 16px 0 10px;
  }
}

@media (max-width: 480px) {
  .g-analyst-row {
    grid-template-columns: 1fr !important;
  }
  .g-breaking-carousel .g-card {
    min-width: 220px;
    max-width: 220px;
  }
}

/* ── SHARE BUTTONS ── */
.g-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.g-share-btn:hover { opacity: 0.85; color: #fff; }

/* ── EXTERNAL CONTEXTUAL LINKS ── */
.g-ext-link {
  color: var(--text);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
  text-decoration-color: #FF4200;
  font-weight: 500;
}
.g-ext-link:hover { color: #FF4200; text-decoration-style: solid; }

/* ── FAQ ACCORDION ── */
.g-faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }

.g-faq-item { background: var(--bg-card); }
.g-faq-item.open .g-faq-a { display: block; }
.g-faq-item.open .g-faq-icon { transform: rotate(180deg); }

.g-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  font-family: var(--font-sans);
  transition: background 0.15s;
}
.g-faq-q:hover { background: var(--bg-surface); }

.g-faq-icon { flex-shrink: 0; transition: transform 0.2s; color: var(--text-faint); }

.g-faq-a {
  display: none;
  padding: 0 16px 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
}
.g-faq-a p { margin: 10px 0 0; }

/* ══════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════════════ */
#gCookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 3px solid #FF4200;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  animation: slideUp 0.3s ease;
}

[data-theme="dark"] #gCookieBanner {
  background: #0d1426;
  border-top-color: #FF4200;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.g-cookie-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.g-cookie-text {
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  flex: 1;
  min-width: 240px;
}

[data-theme="dark"] .g-cookie-text { color: #E8DCC8; }

.g-cookie-text strong { color: #111; }
[data-theme="dark"] .g-cookie-text strong { color: #fff; }

.g-cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.g-cookie-reject {
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid #ddd;
  border-radius: 4px;
  background: transparent;
  color: #666;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Inter', sans-serif;
}
.g-cookie-reject:hover { border-color: #999; color: #333; }
[data-theme="dark"] .g-cookie-reject { border-color: #334; color: #8A9BB5; }
[data-theme="dark"] .g-cookie-reject:hover { border-color: #8A9BB5; color: #E8DCC8; }

.g-cookie-accept {
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid #FF4200;
  border-radius: 4px;
  background: #FF4200;
  color: #fff;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Inter', sans-serif;
}
.g-cookie-accept:hover { background: #e03a00; border-color: #e03a00; }

@media (max-width: 600px) {
  .g-cookie-inner { flex-direction: column; align-items: flex-start; }
  .g-cookie-btns { width: 100%; }
  .g-cookie-reject, .g-cookie-accept { flex: 1; text-align: center; }
}

/* ── GLOBAL GRAYSCALE — tüm editorial fotoğraflar ── */
.g-more-thumb img,
.g-sidebar-cover img,
.g-author-article-thumb img,
.g-founder-photo img,
.g-analyst-full-photo img,
.g-author-hero-photo img,
.g-author-card-photo img,
.g-article-author-photo img,
.g-author-strip-photo img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.g-more-item:hover .g-more-thumb img,
.g-analyst-full-card:hover .g-analyst-full-photo img {
  filter: grayscale(60%);
}

/* Continue reading kartları */
.g-continue-img img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
