/* ─── Navigation ────────────────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
}
.nav-logo:hover { color: var(--text); }
.nav-logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.nav-logo em { color: var(--gold); font-style: normal; }

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--dur), background var(--dur);
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: var(--surface-2); }
.nav-link.active { color: var(--gold); background: var(--gold-dim); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-action-btn {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 9px;
  color: var(--text-2);
  transition: color var(--dur), background var(--dur);
}
.nav-action-btn:hover { color: var(--text); background: var(--surface-2); }
.nav-action-btn svg { width: 18px; height: 18px; }

.theme-toggle {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 9px;
  color: var(--text-2);
  transition: color var(--dur), background var(--dur);
}
.theme-toggle:hover { color: var(--gold); background: var(--gold-dim); }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }


/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.footer-top {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 48px var(--content-pad) 40px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
}

.footer-brand p {
  margin-top: 12px;
  max-width: 280px;
  font-size: .88rem;
  color: var(--text-3);
  line-height: 1.6;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}
.footer-logo svg { width: 28px; height: 28px; }
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-logo:hover { color: var(--text); }

.footer-nav { display: flex; gap: 40px; }
.footer-nav-col { display: flex; flex-direction: column; gap: 10px; min-width: 120px; }
.footer-nav-col > span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  font-family: var(--font-mono);
  margin-bottom: 2px;
}
.footer-nav-col a {
  font-size: .88rem;
  color: var(--text-2);
  transition: color var(--dur);
}
.footer-nav-col a:hover { color: var(--gold); }

.footer-newsletter h3 {
  font-size: .95rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 6px;
}
.footer-newsletter p { font-size: .85rem; margin-bottom: 12px; }

.footer-form {
  display: flex;
  gap: 8px;
}
.footer-form input {
  flex: 1;
  min-width: 0;
  padding: 9px 14px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: .88rem;
  outline: none;
  transition: border-color var(--dur);
}
.footer-form input:focus { border-color: var(--gold); }
.footer-form input::placeholder { color: var(--text-3); }
.footer-form button {
  padding: 9px 18px;
  border-radius: 9px;
  background: var(--gold);
  color: #0a0e17;
  font-weight: 700;
  font-size: .85rem;
  transition: background var(--dur);
  white-space: nowrap;
}
.footer-form button:hover { background: var(--gold-soft); }

.footer-bottom {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 16px var(--content-pad) 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--text-3);
}

.footer-legal { display: flex; gap: 16px; }
.footer-legal a {
  font-size: .78rem;
  color: var(--text-3);
  transition: color var(--dur);
}
.footer-legal a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 8px; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--text-3);
  transition: color var(--dur), border-color var(--dur), background var(--dur);
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover { color: var(--gold); border-color: var(--gold-border); background: var(--gold-dim); }

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-newsletter { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { flex-wrap: wrap; gap: 24px; }
}

/* ─── Badge ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.badge-hava    { color: var(--cat-hava);    background: rgba(75,127,212,.15); }
.badge-kara    { color: var(--cat-kara);    background: rgba(63,178,127,.15); }
.badge-deniz   { color: var(--cat-deniz);   background: rgba(45,168,181,.15); }
.badge-uzay    { color: var(--cat-uzay);    background: rgba(155,89,182,.15); }
.badge-elektronik { color: var(--cat-elektronik); background: rgba(230,126,34,.15); }
.badge-gundem  { color: var(--cat-gundem);  background: var(--gold-dim); }
.badge-siber   { color: var(--cat-siber);   background: rgba(224,82,82,.15); }
.badge-yabanci { color: var(--text-3);      background: var(--surface-2); }
.badge-default { color: var(--text-2);      background: var(--surface-2); }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #0a0e17;
  border: 1px solid transparent;
}
.btn-primary:hover { background: var(--gold-soft); color: #0a0e17; }

.btn-outline {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--line);
}
.btn-outline:hover { color: var(--gold); border-color: var(--gold-border); background: var(--gold-dim); }

/* ─── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--text-3);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-3); transition: color var(--dur); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: .4; }

/* ─── Pagination ────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  padding: 32px 0;
}
.page-btn {
  display: grid;
  place-items: center;
  min-width: 38px; height: 38px;
  padding: 0 10px;
  border-radius: 9px;
  font-size: .88rem;
  color: var(--text-2);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: all var(--dur);
}
.page-btn:hover { color: var(--gold); border-color: var(--gold-border); background: var(--gold-dim); }
.page-btn.active { color: var(--gold); border-color: var(--gold-border); background: var(--gold-dim); font-weight: 700; }
.page-btn:hover { color: var(--gold); }

.pagination-mini {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.pagination-mini a,
.pagination-mini span {
  min-width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: .84rem;
  font-weight: 600;
  border: 1px solid var(--line);
  color: var(--text-2);
}
.pagination-mini a:hover { border-color: var(--gold); color: var(--gold); }
.pagination-mini a.active {
  background: var(--gold);
  color: #0a0e17;
  border-color: var(--gold);
}
.pagination-mini span { border: none; background: none; }

.ssb-unit-bottom {
  display: flex;
  justify-content: center;
  margin: 24px 0 32px;
}

/* ─── News Cards ────────────────────────────────────────────── */
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .25s, box-shadow .3s;
  color: var(--text);
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow);
  color: var(--text);
}

.news-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-2);
}
.news-card-img img, .news-card-img picture {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.news-card:hover .news-card-img img { transform: scale(1.04); }

.news-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.news-card-body h3 {
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-body .news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}

/* Horizontal card */
.news-card-h {
  flex-direction: row;
  align-items: stretch;
}
.news-card-h .news-card-img {
  aspect-ratio: unset;
  width: 140px;
  flex-shrink: 0;
}
.news-card-h .news-card-body h3 { -webkit-line-clamp: 2; }

@media (max-width: 560px) {
  .news-card-h { flex-direction: column; }
  .news-card-h .news-card-img { width: 100%; aspect-ratio: 16/9; }
}

/* ─── Section Headers ───────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.section-title {
  font-size: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
}
.section-more {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .05em;
  transition: opacity var(--dur);
}
.section-more:hover { opacity: .7; color: var(--gold); }

/* ─── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  background: radial-gradient(100% 120% at 60% 0%, var(--navy-glow), transparent 55%), var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 36px;
  margin-top: 8px;
}
.page-hero .wrap { display: flex; flex-direction: column; gap: 12px; }
.page-hero-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-hero h1 { color: var(--text); }
.page-hero p { max-width: 600px; }

/* ─── Ticker ────────────────────────────────────────────────── */
.ticker {
  background: var(--surface);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  height: 38px;
  overflow: hidden;
}
.ticker-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 16px;
  height: 100%;
  border-right: 1px solid var(--line);
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--gold-dim);
}
.ticker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .3; }
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ticker-track::-webkit-scrollbar { display: none; }
.ticker-item {
  font-size: .82rem;
  color: var(--text-2);
  white-space: nowrap;
  padding: 0 14px;
  border-right: 1px solid var(--line-soft);
  transition: color var(--dur);
}
.ticker-item:last-child { border-right: none; }
.ticker-item:hover { color: var(--gold); }

/* ─── Bento Hero ────────────────────────────────────────────── */
.hero-bento-section { padding: 28px 0 20px; }
.bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--gap);
  height: clamp(380px, 52vw, 560px);
}
.hero-cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
  color: #fff;
  transition: border-color var(--dur);
}
.hero-cell:hover { border-color: var(--gold-border); color: #fff; }
.hero-cell.lead { grid-row: 1 / 3; }
.hero-cell.wide { grid-column: 2 / 4; }
.hero-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--scrim);
  pointer-events: none;
}
.hero-cell .corner {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  pointer-events: none;
  opacity: .55;
}
.hero-cell .corner::before,
.hero-cell .corner::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.hero-cell .corner::before { top: 0; right: 0; width: 100%; height: 2px; }
.hero-cell .corner::after { top: 0; right: 0; width: 2px; height: 100%; }
.hero-cell .meta {
  position: relative;
  z-index: 2;
  padding: 22px;
  width: 100%;
}
.hero-cell.lead .meta { padding: 30px; }
.hero-cell .meta h2,
.hero-cell .meta h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.18;
  margin: 10px 0 0;
  color: #fff;
}
.hero-cell.lead .meta h2 { font-size: clamp(1.2rem, 2.4vw, 1.85rem); }
.hero-cell .meta h3 { font-size: clamp(.92rem, 1.4vw, 1.05rem); }
.hero-cell .meta p {
  display: none;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
  margin-top: 8px;
  max-width: 92%;
}
.hero-cell.lead .meta p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-cell .timeline {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: .7rem;
  color: rgba(255,255,255,.72);
}
.hero-cell .timeline time { color: inherit; font-size: inherit; }
.tag-on-image {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(212,168,75,.22);
  color: var(--gold-soft);
  border: 1px solid rgba(212,168,75,.32);
  backdrop-filter: blur(6px);
}

@media (max-width: 900px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .hero-cell.lead { grid-row: auto; grid-column: 1 / -1; min-height: 320px; }
  .hero-cell.wide { grid-column: 1 / -1; min-height: 220px; }
  .hero-cell:not(.lead):not(.wide) { min-height: 200px; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .hero-cell.wide { grid-column: auto; }
}

/* ─── Newsletter inline form ────────────────────────────────── */
.nl-section {
  padding: 48px 0;
}
.nl-box {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background-image: radial-gradient(60% 80% at 100% 50%, var(--gold-dim), transparent);
}
.nl-box h2 { font-size: 1.3rem; color: var(--text); margin-bottom: 4px; }
.nl-box p { font-size: .9rem; }
.nl-form {
  display: flex;
  gap: 8px;
}
.nl-form input {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: .9rem;
  width: 240px;
  outline: none;
  transition: border-color var(--dur);
}
.nl-form input:focus { border-color: var(--gold); }
.nl-form input::placeholder { color: var(--text-3); }
.nl-msg { font-size: .82rem; margin-top: 8px; display: none; }
.nl-msg.ok { color: var(--green); display: block; }
.nl-msg.err { color: var(--red); display: block; }

@media (max-width: 680px) {
  .nl-box { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .nl-form input { width: 100%; }
}

/* ─── Tag chip ──────────────────────────────────────────────── */
.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: .85rem;
  color: var(--text-2);
  transition: all var(--dur);
}
.tag-chip:hover { border-color: var(--gold-border); color: var(--gold); background: var(--gold-dim); }
.tag-chip .tag-count {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--text-3);
  background: var(--surface-2);
  padding: 1px 6px;
  border-radius: 10px;
}

/* ─── Sponsorlu içerik alanları (ssb-unit: reklam engelleyici-dostu sınıflar) ─ */
.ssb-unit {
  display: block;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 100%;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(212, 168, 75, 0.65);
  background-color: rgba(212, 168, 75, 0.14);
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 12px,
      rgba(212, 168, 75, 0.08) 12px,
      rgba(212, 168, 75, 0.08) 24px
    );
  box-shadow: inset 0 0 0 1px rgba(212, 168, 75, 0.2), 0 4px 24px rgba(212, 168, 75, 0.08);
}
.ssb-unit-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: inherit;
  height: 100%;
  padding: 20px 16px;
  text-align: center;
}
.ssb-unit-tag {
  font-family: var(--font-mono);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.ssb-unit-sponsor {
  display: block;
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 6px 10px 0;
  text-align: right;
}
.ssb-unit-live .ssb-unit-sponsor { padding-bottom: 2px; }
.ssb-unit-dim {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--text-2);
}
.ssb-unit-wide  { min-height: 90px; height: 90px; margin: 20px 0 24px; }
.ssb-unit-box   { min-height: 250px; height: 250px; max-width: 300px; margin: 0 auto 20px; }
.ssb-unit-tall  { min-height: 600px; width: 160px; }
.ssb-unit-strip { min-height: 60px; height: 60px; margin: 16px 0; }
.ssb-unit-live {
  border: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  padding: 0;
  overflow: hidden;
}
.ssb-unit-wide.ssb-unit-live,
.ssb-unit-strip.ssb-unit-live,
.ssb-unit-box.ssb-unit-live {
  height: auto;
  min-height: 0;
}
.ssb-unit-wide.ssb-unit-live {
  width: 100%;
  aspect-ratio: 1536 / 187;
  margin: 20px 0 24px;
}
.ssb-unit-wide.ssb-unit-live .ssb-unit-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.ssb-unit-strip.ssb-unit-live {
  width: 100%;
  max-width: 728px;
  margin-inline: auto;
}
.ssb-unit-box.ssb-unit-live {
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
}
.ssb-unit-link {
  display: block;
  width: 100%;
  line-height: 0;
}
.ssb-unit-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.ssb-unit-box.ssb-unit-live .ssb-unit-img {
  height: auto;
}
.page-sidebar .ssb-unit-box:not(.ssb-unit-live) { max-width: none; }
.page-sidebar .ssb-unit-box.ssb-unit-live {
  max-width: 300px;
  width: 100%;
  margin-inline: auto;
}
.ssb-unit-bottom {
  display: flex;
  justify-content: center;
  margin: 24px 0 32px;
}
.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: -2px 0 20px;
  min-width: 0;
  max-width: 100%;
}
.topic-pill {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 15px;
  border-radius: 22px;
  transition: all .2s var(--ease);
  text-decoration: none;
}
.topic-pill:hover {
  color: var(--text);
  border-color: var(--gold-border);
  transform: translateY(-1px);
  background: var(--gold-dim);
}
.page-head .topic-pills { margin-top: 20px; margin-bottom: 0; }
@media (max-width: 560px) {
  .topic-pills {
    display: flex;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 8px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .topic-pill {
    flex: 0 1 auto;
    font-size: .78rem;
    padding: 7px 12px;
    max-width: 100%;
  }
  .ssb-unit-wide,
  .ssb-unit-box,
  .ssb-unit-strip {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

.article-unit-mobile { display: none; padding: 0 0 8px; }
@media (max-width: 860px) {
  .article-unit-mobile { display: block; }
  .article-unit-mobile .ssb-unit-strip { margin: 12px 0 20px; }
}

/* ─── Sidebar card + popular list (ortak widget) ─────────────── */
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.sidebar-card .sb-head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  margin-bottom: 16px;
}
.sidebar-card .sb-head .dotmark { width: 8px; height: 8px; border-radius: 2px; background: var(--gold); }

.popular-list li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.popular-list li:last-child { border-bottom: none; padding-bottom: 0; }
.popular-list li:first-child { padding-top: 0; }
.popular-list .rank {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--text-3); width: 26px; flex-shrink: 0; line-height: 1.1;
}
.popular-list li:nth-child(1) .rank { color: var(--gold); }
.popular-list .pl-body h4 { font-size: .9rem; font-weight: 600; line-height: 1.35; transition: color .2s; }
.popular-list li:hover .pl-body h4 { color: var(--gold-soft); }
.popular-list .pl-body .pm { font-family: var(--font-mono); font-size: .68rem; color: var(--text-3); margin-top: 5px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.popular-list .pl-body .pm .vc { display: inline-flex; align-items: center; gap: 3px; color: var(--gold-soft); font-weight: 600; }

/* ─── Sidebar ───────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget { }
.sidebar-widget-title {
  font-size: .7rem;
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

/* ─── Utility states ────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-3);
  font-size: .95rem;
}
.empty-state svg { margin: 0 auto 16px; width: 40px; height: 40px; opacity: .35; }

.loading-skeleton {
  background: linear-gradient(90deg, var(--surface-2) 25%, var(--surface-3) 50%, var(--surface-2) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ─── Side card (shared widget card) ───────────────────────── */
.side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

/* ─── Popular list ──────────────────────────────────────────── */
.pop-list { display: flex; flex-direction: column; }
.pop-list li { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.pop-list li:last-child { border-bottom: none; padding-bottom: 0; }
.pop-list li:first-child { padding-top: 0; }
.pop-rank { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--text-3); width: 20px; flex-shrink: 0; line-height: 1.3; }
.pop-rank-1 { color: var(--gold); }
.pop-title { font-size: .84rem; font-weight: 600; line-height: 1.35; color: var(--text-2); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .2s; }
.pop-title:hover { color: var(--gold-soft); }

/* ─── News grid card (gundem, konu pages) ───────────────────── */
.gd-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 18px 0 14px; border-bottom: 1px solid var(--line-soft); margin-bottom: 24px; }
.gd-count { font-family: var(--font-mono); font-size: .75rem; color: var(--text-3); }
.gd-page-info { font-family: var(--font-mono); font-size: .75rem; color: var(--text-3); }

.gd-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.gd-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; color: var(--text); transition: transform .3s var(--ease), border-color .25s, box-shadow .3s; }
.gd-card:hover { transform: translateY(-5px); border-color: var(--gold-border); box-shadow: var(--shadow); color: var(--text); }
.gd-card-img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); }
.gd-card-img img, .gd-card-img picture { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); display: block; }
.gd-card:hover .gd-card-img img { transform: scale(1.06); }
.gd-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.gd-card-body h3 { font-size: .97rem; font-weight: 700; line-height: 1.35; color: var(--text); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; transition: color .2s; }
.gd-card:hover .gd-card-body h3 { color: var(--gold-soft); }
.gd-card-excerpt { font-size: .84rem; color: var(--text-3); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gd-card-meta { margin-top: auto; padding-top: 8px; border-top: 1px solid var(--line-soft); }
.gd-card-meta time { font-family: var(--font-mono); font-size: .74rem; color: var(--text-3); }

.card-meta { display: flex; flex-wrap: wrap; gap: 12px; font-family: var(--font-mono); font-size: .72rem; color: var(--text-3); }
.card-meta span { display: inline-flex; align-items: center; gap: 5px; }
.card-meta svg { width: 13px; height: 13px; flex-shrink: 0; }

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
  padding-top: 20px;
}
.page-main { min-width: 0; }
.page-sidebar { position: sticky; top: 88px; }

.contact-widget-text { font-size: .86rem; color: var(--text-2); margin-bottom: 12px; line-height: 1.5; }
.contact-widget-btn { width: 100%; justify-content: center; font-size: .88rem; }
.contact-widget-meta { font-size: .78rem; margin-top: 10px; margin-bottom: 0; }
.contact-widget-meta a { color: var(--text-3); }
.contact-widget-meta a:hover { color: var(--gold-soft); }

@media (max-width: 960px) {
  .page-layout { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .ssb-unit-box:not(.ssb-unit-live) { max-width: 100%; }
}

@media (max-width: 720px) { .gd-grid { grid-template-columns: 1fr; } }

/* ─── KVKK çerez rızası ─────────────────────────────────────────────────── */
.cookie-consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9999;
  padding: 10px 14px max(10px, env(safe-area-inset-bottom));
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}
.cookie-consent.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-consent[hidden] { display: none !important; }
.cookie-consent-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-1) 92%, transparent);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
}
.cookie-consent-text {
  flex: 1 1 220px;
  font-size: .8rem;
  color: var(--text-2);
  line-height: 1.4;
  min-width: 0;
}
.cookie-consent-text p { margin: 0; }
.cookie-consent-text a { color: var(--gold-soft); text-decoration: underline; }
.cookie-consent-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-consent-actions .btn-ghost,
.cookie-consent-actions .btn-cta {
  padding: 7px 12px;
  font-size: .78rem;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .cookie-consent {
    padding: 6px 8px max(6px, env(safe-area-inset-bottom));
  }
  .cookie-consent-inner {
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
  }
  .cookie-consent-text {
    flex: 1 1 auto;
    font-size: .68rem;
    line-height: 1.3;
  }
  .cookie-consent-actions {
    gap: 5px;
  }
  .cookie-consent-actions .btn-ghost,
  .cookie-consent-actions .btn-cta {
    padding: 5px 9px;
    font-size: .68rem;
    min-height: 0;
  }
}
