/* Türkiyevox — Kırmızı / Siyah tema */
:root {
  --color-primary: #b71c1c;
  --color-primary-dark: #8b0000;
  --color-heading: #1a1a1a;
  --color-text: #333;
  --color-muted: #6c757d;
  --color-border: #dee2e6;
  --color-bg: #f5f5f5;
  --color-breaking: #c41e3a;
  --color-navbar: #0d0d0d;
  --color-footer: #000;
  --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.12);
  --radius: 6px;
}

/* Container daha geniş */
.container { max-width: 1320px; }
@media (min-width: 1400px) { .container { max-width: 1360px; } }

* { box-sizing: border-box; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 15px;
}

/* Son dakika kayan ticker */
.site-breaking {
  background: var(--color-breaking);
  color: #fff;
  padding: .5rem 0;
  font-size: .875rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.site-breaking-ticker .breaking-label {
  font-weight: 700;
  flex-shrink: 0;
  padding: 0 .75rem;
  white-space: nowrap;
  z-index: 1;
  background: var(--color-breaking);
}
.site-breaking-ticker .breaking-ticker-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.site-breaking-ticker .breaking-ticker-inner {
  display: inline-flex;
  align-items: center;
  animation: breaking-scroll 60s linear infinite;
  white-space: nowrap;
}
.site-breaking-ticker .breaking-ticker-inner:hover { animation-play-state: paused; }
.site-breaking-ticker a {
  color: #fff;
  text-decoration: none;
  padding: 0 .5rem;
  white-space: nowrap;
}
.site-breaking-ticker a:hover { text-decoration: underline; }
.site-breaking-ticker .breaking-sep {
  color: rgba(255,255,255,.6);
  padding: 0 .25rem;
  user-select: none;
}
@keyframes breaking-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.site-breaking a { color: #fff; text-decoration: none; }
.site-breaking a:hover { text-decoration: underline; }
.site-breaking .breaking-label { font-weight: 600; }

/* Navbar */
.site-nav {
  background: #fff !important;
  box-shadow: var(--shadow-sm);
  padding: .6rem 0;
}
.site-nav .navbar-brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-heading);
}
.site-nav .nav-link {
  font-weight: 500;
  color: var(--color-text);
  padding: .4rem .75rem !important;
  border-radius: var(--radius);
}
.site-nav .nav-link:hover { color: var(--color-primary); background: rgba(183,28,28,.1); }
.site-nav .navbar-toggler { border-color: var(--color-border); }
.site-nav .form-control { border-radius: var(--radius); }
.site-nav .btn-outline-primary {
  border-radius: var(--radius);
  padding: .35rem .65rem;
}

/* Ana içerik */
.site-main { padding: 1.5rem 0 3rem; }
.site-main .card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.site-main .card:hover { box-shadow: var(--shadow-md); }
.site-news-card {
  transition: box-shadow .2s ease, transform .15s ease;
  height: 100%;
}
.site-news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.site-news-card .card-img-top {
  height: 160px;
  object-fit: cover;
  background: #e9ecef;
}
.site-news-card .card-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.4;
}
.site-news-card .text-muted { font-size: .8rem; }

/* Başlık bölümleri */
.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

/* Slider / Carousel */
.site-slider .carousel-item img {
  height: 380px;
  object-fit: cover;
}
.site-slider .carousel-caption {
  background: rgba(0,0,0,.6);
  padding: .75rem 1rem;
  border-radius: var(--radius);
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
}
.site-slider .carousel-control-prev,
.site-slider .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.5);
  border-radius: 50%;
  opacity: .9;
}
.site-slider .carousel-control-prev { left: .5rem; }
.site-slider .carousel-control-next { right: .5rem; }
.carousel-control-prev, .carousel-control-next {
  width: 48px; height: 48px; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.5); border-radius: 50%; opacity: .9;
}
.carousel-caption { background: rgba(0,0,0,.6); padding: .75rem 1rem; border-radius: var(--radius); }
.carousel-caption.text-start { left: 1rem; right: 1rem; bottom: 1rem; }

/* Liste haberleri */
.site-news-list .list-group-item {
  border-left: 0;
  border-right: 0;
  padding: .85rem 0;
}
.site-news-list .list-group-item-action:hover { background: rgba(183,28,28,.06); }
.site-news-list img {
  width: 90px;
  height: 68px;
  object-fit: cover;
  border-radius: 4px;
}

/* Sidebar */
.site-sidebar .card {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.site-sidebar .card-header {
  font-weight: 600;
  font-size: .9rem;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: .75rem 1rem;
}
.site-sidebar .list-group-item {
  padding: .6rem 1rem;
  border-left: 0;
  border-right: 0;
}
.site-sidebar .list-group-item:first-child { border-top: 0; }

/* Haber detay */
.site-article .breadcrumb {
  background: transparent;
  padding: 0;
  font-size: .875rem;
}
.site-article .breadcrumb-item a { color: var(--color-primary); }
.site-article h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.3;
  margin-top: .5rem;
}
.site-article .content {
  font-size: 1.05rem;
  line-height: 1.75;
}
.site-article .content img { max-width: 100%; height: auto; border-radius: var(--radius); }
.site-article .lead { color: var(--color-text); }

/* Footer - siyah */
.site-footer {
  background: #000;
  color: rgba(255,255,255,.85);
  padding: 2rem 0;
  margin-top: 3rem;
  font-size: .875rem;
}
.site-footer a { color: rgba(255,255,255,.9); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer .container { border-top: 1px solid #333; padding-top: 1rem; }

/* Form sayfaları (Haber gönder, vb.) */
.site-form-page .form-control,
.site-form-page .form-select {
  border-radius: var(--radius);
  border-color: var(--color-border);
}
.site-form-page .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13,110,253,.15);
}
.site-form-page .btn-primary {
  padding: .5rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
}

/* Reklam alanı */
.ad-slot {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border-radius: var(--radius);
  padding: .5rem;
}

/* Pagination */
.pagination .page-link {
  border-radius: var(--radius) !important;
  margin: 0 2px;
}

/* İkonlar - düz, gerçekçi (Bootstrap Icons) */
.bi { vertical-align: -.15em; }

/* ----- Hero: 4 kart + Son dakika slider + Gazete manşet ----- */
.hero-four-cards .row { --bs-gutter-x: 0; }
.hero-four-card-link { display: block; text-decoration: none; color: inherit; }
.hero-four-card { position: relative; overflow: hidden; border: 1px solid var(--color-border); border-right: none; }
.hero-four-cards .col:last-child .hero-four-card { border-right: 1px solid var(--color-border); }
.hero-four-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.hero-four-card-placeholder {
  height: 140px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.5rem;
}
.hero-four-card-title {
  padding: .5rem .65rem;
  font-size: .8rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  background: #fff;
}
.hero-four-card-link:hover .hero-four-card-title { color: var(--color-primary); }

.hero-breaking-slider { position: relative; width: 100%; overflow: visible; }
.hero-slider-img { height: 380px; object-fit: cover; }
.hero-slider-placeholder {
  height: 380px;
  background: #2a2a2a;
  color: #fff;
  padding: 1rem;
  text-align: center;
}
.hero-slider-caption {
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  padding: 2rem 1rem .75rem;
  text-align: left;
}
.hero-slider-caption h5 { margin: 0; font-size: 1.1rem; font-weight: 700; }

/* Slider altı numaralar: slider ile aynı hizada, kare çerçeve içinde */
.hero-slider-indicators-box {
  width: 100%;
  margin-top: .4rem;
  box-sizing: border-box;
}
.hero-breaking-slider .carousel-indicators.hero-slider-indicators-wrap {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: .4rem;
  margin: 0 !important;
  padding: .5rem .6rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-sizing: border-box;
  list-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
/* Bootstrap carousel-indicators sayıyı gizleyebilir; hepsini ezelim */
.hero-breaking-slider .hero-slider-indicators-wrap .hero-slider-dot,
.hero-breaking-slider .carousel-indicators [data-bs-target] {
  flex-shrink: 0;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  border-radius: 4px;
  background: #f0f0f0;
  border: 1px solid var(--color-border);
  margin: 0 !important;
  padding: 0 !important;
  font-size: .8rem !important;
  font-weight: 700;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #444 !important;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  text-indent: 0 !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.hero-breaking-slider .hero-slider-indicators-wrap .hero-slider-dot:hover,
.hero-breaking-slider .carousel-indicators [data-bs-target]:hover { background: #e0e0e0; color: #222; border-color: #ccc; }
.hero-breaking-slider .hero-slider-indicators-wrap .hero-slider-dot.active,
.hero-breaking-slider .carousel-indicators [data-bs-target].active { background: #b71c1c; color: #fff; border-color: #b71c1c; }
.hero-breaking-slider .carousel-indicators.hero-slider-indicators-wrap::before,
.hero-breaking-slider .carousel-indicators.hero-slider-indicators-wrap::after { display: none !important; content: none !important; }
.hero-no-breaking { min-height: 200px; }

.hero-newspaper {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.hero-newspaper-header {
  background: #1a1a1a;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .5rem .75rem;
}
.hero-newspaper-body { padding: .75rem; }
.hero-newspaper-image-wrap { padding: .75rem; }
.hero-newspaper-img { display: block; max-height: 320px; object-fit: contain; width: 100%; }

/* Manşet: tek tek kaydırmalı carousel */
.hero-newspaper-manset-carousel-wrap { min-height: 200px; }
.hero-newspaper-manset-slide { display: block; cursor: pointer; }
.hero-newspaper-manset-slide:hover { opacity: .95; }
.hero-newspaper-manset-img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: contain;
    display: block;
}
.hero-newspaper-carousel-btn {
    width: 2rem;
    height: 2rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: .9;
    border-radius: 50%;
    background: rgba(0,0,0,.5);
}
.hero-newspaper-carousel-btn .carousel-control-prev-icon,
.hero-newspaper-carousel-btn .carousel-control-next-icon { width: 1rem; height: 1rem; }

.hero-newspaper-grid-manset {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: flex-start;
}
.hero-newspaper-thumb-link {
    display: block;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
    flex: 1 1 90px;
    max-width: 50%;
}
.hero-newspaper-thumb-link:hover { opacity: .9; transform: scale(1.02); }
.hero-newspaper-img-thumb {
    width: 100%;
    height: 100%;
    max-height: 140px;
    min-height: 90px;
    object-fit: cover;
    display: block;
}
@media (min-width: 992px) {
    .hero-newspaper-grid-manset { flex-direction: column; gap: .5rem; }
    .hero-newspaper-thumb-link { max-width: none; flex: none; }
    .hero-newspaper-img-thumb { max-height: 120px; min-height: 80px; }
}
.hero-newspaper-lead {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
  color: #1a1a1a;
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--color-primary);
  text-decoration: none;
}
.hero-newspaper-lead:hover { color: var(--color-primary); }
.hero-newspaper-grid { display: flex; flex-direction: column; gap: .5rem; }
.hero-newspaper-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  text-decoration: none;
  color: #333;
  font-size: .85rem;
  line-height: 1.3;
}
.hero-newspaper-item:hover { color: var(--color-primary); }
.hero-newspaper-thumb {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.hero-newspaper-item-title { flex: 1; min-width: 0; }

/* ----- Anasayfa bölüm şablonları ----- */
.home-page .home-section {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.home-page .home-section:last-of-type { border-bottom: 0; }

.home-hero .carousel-item img,
.home-hero-placeholder {
  height: 380px;
  object-fit: cover;
}
.home-hero-placeholder { display: flex; align-items: center; justify-content: center; }

/* Kart bölümü */
.home-section-cards .home-card .card-img-top,
.home-card-placeholder {
  height: 160px;
  object-fit: cover;
  background: #e9ecef;
}
.home-card-placeholder { display: flex; align-items: center; justify-content: center; color: #999; }

/* Grid bölümü */
.home-section-grid .home-grid-card .card-img-top,
.home-grid-placeholder {
  height: 120px;
  object-fit: cover;
  background: #e9ecef;
}
.home-grid-placeholder { display: flex; align-items: center; justify-content: center; color: #999; }

/* Liste bölümü */
.home-news-list .list-group-item { padding: .75rem 0; }
.home-list-thumb {
  width: 100px;
  height: 72px;
  object-fit: cover;
}
.home-list-thumb-placeholder { background: #dee2e6; display: flex; align-items: center; justify-content: center; }

/* 3'lü slider */
.home-slider3 .carousel-control-prev,
.home-slider3 .carousel-control-next {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.5);
  border-radius: 50%;
  opacity: .9;
}
.home-slider3 .carousel-control-prev { left: -10px; }
.home-slider3 .carousel-control-next { right: -10px; }
.home-slider3-card .card-img-top,
.home-slider3-placeholder {
  height: 140px;
  object-fit: cover;
  background: #e9ecef;
}
.home-slider3-placeholder { display: flex; align-items: center; justify-content: center; color: #999; }

/* Sekme bölümü */
.home-section-tabs { background: #fff; padding: 1rem; border-radius: var(--radius); border: 1px solid var(--color-border); }
.home-tabs-nav .nav-link {
  border: 0;
  color: var(--color-text);
  font-weight: 600;
  padding: .6rem 1rem;
  border-bottom: 2px solid transparent;
}
.home-tabs-nav .nav-link:hover { border-color: var(--color-border); color: var(--color-primary); }
.home-tabs-nav .nav-link.active { color: var(--color-primary); border-bottom-color: var(--color-primary); background: transparent; }
.home-tabs-item { padding: .4rem 0; }
.home-tabs-thumb {
  width: 72px;
  height: 54px;
  object-fit: cover;
}
.home-tabs-thumb-placeholder { background: #e9ecef; min-width: 72px; min-height: 54px; }

/* Tab+section bölümü */
.home-tabsec-featured .card-img-top,
.home-tabsec-featured-img {
  height: 200px;
  object-fit: cover;
  background: #e9ecef;
}
.home-tabsec-featured-img { display: flex; align-items: center; justify-content: center; color: #999; }
.home-tabsec-list li:last-child { border-bottom: 0 !important; }
.home-tabsec-thumb {
  width: 80px;
  height: 56px;
  object-fit: cover;
}
.home-tabsec-thumb-placeholder { background: #e9ecef; min-width: 80px; min-height: 56px; }

.home-section-latest { border-bottom: 0; }

/* ========== Haber sitesi tema (kırmızı / siyah) ========== */
.maro-style {
  --color-topbar: #1a1a1a;
  --color-navbar: var(--color-navbar);
  --color-footer: var(--color-footer);
}

/* Topbar: Sol SON DAKİKA (kırmızı) + oklar + ticker, Sağ döviz (TCMB) */
.site-topbar {
  background: var(--color-topbar);
  font-size: .8125rem;
  padding: 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  padding: .4rem 0;
}
.topbar-left {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.topbar-son-dakika {
  background: #c41e3a;
  color: #fff;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .03em;
  padding: .4rem .75rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.topbar-ticker-controls {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: .5rem;
}
.topbar-ticker-btn {
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  font-size: .75rem;
}
.topbar-ticker-btn:hover { background: rgba(255,255,255,.35); color: #fff; }
.topbar-ticker-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  margin-left: .5rem;
}
.topbar-ticker-inner {
  display: inline-flex;
  align-items: center;
  animation: topbar-ticker-scroll 60s linear infinite;
  white-space: nowrap;
}
.topbar-ticker-inner:hover { animation-play-state: paused; }
.topbar-ticker-inner a { color: #fff; text-decoration: none; padding: 0 .35rem; }
.topbar-ticker-inner a:hover { text-decoration: underline; }
.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c41e3a;
  flex-shrink: 0;
  margin: 0 .25rem;
}
@keyframes topbar-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.topbar-right.topbar-doviz {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  flex-shrink: 0;
}
.topbar-doviz-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
}
.topbar-doviz-label {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .7rem;
}
.topbar-doviz-value { color: #fff; font-weight: 600; }
.topbar-doviz-change { font-size: .85rem; display: inline-flex; align-items: center; }
.topbar-doviz-change--up { color: #2ecc71; }
.topbar-doviz-change--down { color: #e74c3c; }
.topbar-doviz-change--same { color: rgba(255,255,255,.5); font-size: .75rem; }
@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }
  .topbar-right.topbar-doviz {
    order: 0;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .topbar-left {
    order: 1;
    width: 100%;
    flex-wrap: nowrap;
    min-height: 2.25rem;
  }
  .topbar-ticker-wrap {
    display: block;
    flex: 1;
    min-width: 0;
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
  .topbar-ticker-inner {
    animation-duration: 45s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
  }
  .topbar-son-dakika {
    font-size: 0.7rem;
    padding: 0.35rem 0.55rem;
  }
  .topbar-ticker-btn {
    width: 1.6rem;
    height: 1.6rem;
  }
}

/* Header */
.site-header { background: #fff; border-bottom: 1px solid var(--color-border); }
.site-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-heading);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.site-logo:hover { color: var(--color-primary); }
.site-header-ad { min-height: 70px; }

/* Navbar - siyah, menü her zaman görünür */
.site-navbar {
  background: #000 !important;
  padding: 0;
}
.site-navbar .navbar-collapse {
  background: #000;
}
.site-navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  font-size: .9rem;
  padding: .75rem 1rem !important;
  border-radius: 0;
}
.site-navbar .nav-link:hover { background: rgba(255,255,255,.12) !important; color: #fff !important; }
.site-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  padding: 0.45rem 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Bootstrap çizgili ikon + navbar-dark uyumu (invert kaldırıldı); blade’de bi-list de kullanılıyor */
.site-navbar .navbar-toggler-icon {
  filter: none;
}
@media (min-width: 992px) {
  .site-navbar .navbar-toggler {
    display: none;
  }
}
.site-navbar .form-control { background: rgba(255,255,255,.15); border-color: transparent; color: #fff; }
.site-navbar .form-control::placeholder { color: rgba(255,255,255,.6); }
.site-navbar .nav-categories .nav-link { white-space: nowrap; }
.site-navbar .mega-menu-trigger { padding: .35rem .6rem; }
/* Mega menü panel: ana menü genişliğinde (container) */
.mega-menu-panel {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.mega-menu-panel .mega-menu-link {
  display: block;
  padding: .4rem 0;
  color: var(--color-text);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
}
.mega-menu-panel .mega-menu-link:hover { color: var(--color-primary); padding-left: .25rem; }
.site-navbar .mega-menu-dropdown .dropdown-item { padding: .4rem .75rem; }
.site-navbar .mega-menu-dropdown .dropdown-item:hover { background: rgba(183,28,28,.1); color: var(--color-primary); }

/* Bölüm etiketleri (GÜNDEM, EKONOMİ vb.) - kırmızı zemin, beyaz kalın yazı */
.section-label {
  display: inline-block;
  background: #b71c1c;
  color: #fff !important;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: .5rem 1rem;
  margin-bottom: 1rem;
}
.section-label--orange { background: #c41e3a; color: #fff !important; }
.section-label--green { background: #8b0000; color: #fff !important; }
.section-label--red { background: #a01515; color: #fff !important; }
.section-label--purple { background: #6d0f0f; color: #fff !important; }
.section-label--teal { background: #9e0e0e; color: #fff !important; }

/* Anasayfa kategori başlıkları – tek modern tasarım */
.category-section-header-card {
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  border: 1px solid rgba(0, 0, 0, .06);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.category-section-header-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  border-left-color: var(--color-primary-dark);
}
.category-section-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  padding: .75rem 1.15rem;
  min-height: 3.25rem;
}
.category-section-header-card .category-section-label {
  margin: 0;
  padding: 0;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #1a1a1a;
  text-transform: uppercase;
  position: relative;
  padding-left: 0;
}
.category-section-header-card .category-section-link {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: .4rem .75rem;
  border-radius: 6px;
  transition: background .2s ease, color .2s ease;
  display: inline-flex;
  align-items: center;
  background: rgba(183, 28, 28, .06);
}
.category-section-header-card .category-section-link:hover {
  background: rgba(183, 28, 28, .12);
  color: var(--color-primary-dark);
}

/* Haber kartı (referans) */
.news-card-link { display: block; transition: opacity .2s; }
.news-card-link:hover { opacity: .92; }
.news-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.news-card-link:hover .news-card { box-shadow: var(--shadow-md); }
.news-card-img-wrap { position: relative; overflow: hidden; }
.news-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.news-card--small .news-card-img { height: 120px; }
.news-card--large .news-card-img { height: 280px; }
.news-card-img-placeholder {
  height: 180px;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 2rem;
}
.news-card--small .news-card-img-placeholder { height: 120px; }
.news-card--large .news-card-img-placeholder { height: 280px; }
.news-card-cat {
  position: absolute;
  top: .5rem;
  left: .5rem;
  background: var(--cat-bg, var(--color-primary));
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .5rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.news-card-body { padding: .85rem 1rem; }
.news-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.35;
  margin: 0 0 .5rem;
}
.news-card--small .news-card-title { font-size: .9rem; }
.news-card-meta {
  font-size: .8rem;
  color: var(--color-muted);
  display: flex;
  gap: 1rem;
}
.news-card-meta i { margin-right: .25rem; }
.news-card-overlay-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 2rem .75rem .75rem;
  line-height: 1.3;
}

/* Kategori renkleri (kart etiketleri) - kırmızı / siyah tonları */
:root {
  --cat-0: #b71c1c;
  --cat-1: #8b0000;
  --cat-2: #c41e3a;
  --cat-3: #a01515;
  --cat-4: #6d0f0f;
  --cat-5: #d32f2f;
  --cat-6: #1a1a1a;
  --cat-7: #9e0e0e;
}

/* Footer */
.site-footer { background: #000; color: rgba(255,255,255,.85); margin-top: 3rem; }
.footer-widget-title {
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid rgba(255,255,255,.25);
  color: #fff;
}
.footer-post-list { list-style: none; padding: 0; margin: 0; }
.footer-post-list li { margin-bottom: .5rem; }
.footer-post-list a { color: rgba(255,255,255,.85); text-decoration: none; font-size: .9rem; }
.footer-post-list a:hover { color: #fff; text-decoration: underline; }
.footer-meta { font-size: .75rem; color: rgba(255,255,255,.5); margin-left: .25rem; }
.footer-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.footer-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: .8rem;
  padding: .3rem .6rem;
  border-radius: 4px;
  text-decoration: none;
}
.footer-tag:hover { background: rgba(255,255,255,.25); color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: rgba(255,255,255,.85); text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  text-decoration: none; transition: background .2s, color .2s;
}
.footer-social-link:hover { background: var(--color-primary); color: #fff; }
.footer-email-marketing-link { color: rgba(255,255,255,.9); text-decoration: none; font-size: .9rem; }
.footer-email-marketing-link:hover { color: #fff; }
.site-footer-bottom { background: #0a0a0a; font-size: .85rem; color: rgba(255,255,255,.75); }
.footer-bottom-link { color: rgba(255,255,255,.8); text-decoration: none; }
.footer-bottom-link:hover { color: #fff; }
.site-footer-bottom a[href*="webrektasarim"] { margin-left: .25rem; }

/* Sidebar widget (anasayfa) */
.widget-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.widget-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--color-primary);
}
.widget-list { list-style: none; padding: 0; margin: 0; }
.widget-list li { margin-bottom: .6rem; padding-bottom: .6rem; border-bottom: 1px solid var(--color-border); }
.widget-list li:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.widget-list a { color: var(--color-text); text-decoration: none; font-size: .9rem; }
.widget-list a:hover { color: var(--color-primary); }
.widget-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  background: var(--color-primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  border-radius: 4px;
  flex-shrink: 0;
}
.maro-style .footer-tags .footer-tag { background: rgba(183,28,28,.15); color: var(--color-primary); }
.maro-style .footer-tags .footer-tag:hover { background: var(--color-primary); color: #fff; }

/* Burç yorumları sayfası — site teması + seçici düzen */
.horoscope-page {
  padding-bottom: 3rem;
}
.horoscope-hero {
  position: relative;
  overflow: hidden;
  /* Sabit renkler: tema değişkeni/self-ref hatalarında metin kaybolmasın */
  background-color: #0d0d0d;
  background-image: linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 40%, #6b1010 100%);
  border-radius: var(--radius);
  margin-top: 0;
  box-shadow: var(--shadow-md);
}
.horoscope-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,.35) 0, transparent 100%),
    radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,.2) 0, transparent 100%),
    radial-gradient(1px 1px at 70% 30%, rgba(255,255,255,.25) 0, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,.15) 0, transparent 100%);
  pointer-events: none;
  opacity: .9;
}
.horoscope-hero .container {
  position: relative;
  z-index: 1;
}
.horoscope-hero-inner {
  color: #f8f9fa !important;
}
.horoscope-hero-inner .bi {
  color: #ffc9c9;
  opacity: 1;
}
.horoscope-hero-badge {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #f0f0f0 !important;
  font-weight: 600;
}
.horoscope-hero-title.display-6 {
  color: #ffffff !important;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.horoscope-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 992px) {
  .horoscope-layout {
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 2rem;
  }
}
.horoscope-picker-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.25rem 1.65rem;
  position: sticky;
  top: 1rem;
}
@media (max-width: 991.98px) {
  .horoscope-picker-card { position: static; }
}
.horoscope-picker-title {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-heading);
  margin-bottom: 1.1rem;
  text-align: center;
}
.horoscope-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}
@media (min-width: 576px) {
  .horoscope-picker-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .horoscope-picker-grid { grid-template-columns: repeat(4, 1fr); gap: .7rem; }
}
.horoscope-picker-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .85rem .55rem;
  min-height: 4.5rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #f0f0f0;
  color: #1a1a1a;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s, box-shadow .15s, transform .1s;
}
.horoscope-picker-btn:hover {
  border-color: rgba(183,28,28,.45);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.horoscope-picker-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.horoscope-picker-btn.is-active {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, rgba(183,28,28,.14) 0%, rgba(183,28,28,.08) 100%);
  color: #5c0000;
  box-shadow: 0 0 0 1px rgba(183,28,28,.25);
}
.horoscope-picker-btn .horoscope-glyph {
  font-size: 1.75rem;
  line-height: 1;
  opacity: 1;
  color: #1a1a1a;
  filter: grayscale(0.08);
}
.horoscope-picker-btn.is-active .horoscope-glyph {
  filter: none;
  transform: scale(1.06);
  color: #6d0000;
}
.horoscope-detail-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  min-height: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Açık şerit + koyu yazı: beyaz üzerine beyaz metin sorununu kesin çözer */
.horoscope-detail-head {
  background: linear-gradient(180deg, #f8f9fa 0%, #eef0f2 100%);
  border-bottom: 3px solid #b71c1c;
  color: #121212;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.horoscope-detail-glyph {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 12px;
  background: rgba(183, 28, 28, 0.12);
  border: 1px solid rgba(183, 28, 28, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  flex-shrink: 0;
  color: #8b0000 !important;
  line-height: 1;
}
.horoscope-detail-head h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #121212 !important;
}
.horoscope-detail-head .horoscope-detail-sub {
  font-size: .85rem;
  font-weight: 600;
  color: #495057 !important;
  opacity: 1;
  margin-top: .2rem;
}
.horoscope-detail-body {
  padding: 1.5rem 1.5rem 2rem;
  flex: 1;
  background: #fff;
  color: #212529;
}
.horoscope-detail-body .horoscope-reading-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #212529;
}
/* Yorum metnindeki başlıklar (beyaz zeminde okunaklı) */
.horoscope-detail-body .horoscope-reading-text h1,
.horoscope-detail-body .horoscope-reading-text h2,
.horoscope-detail-body .horoscope-reading-text h3,
.horoscope-detail-body .horoscope-reading-text h4,
.horoscope-detail-body .horoscope-reading-text h5,
.horoscope-detail-body .horoscope-reading-text h6 {
  color: #1a1a1a !important;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: .5rem;
}
.horoscope-detail-body .horoscope-reading-text strong,
.horoscope-detail-body .horoscope-reading-text b {
  color: #1a1a1a;
}
.horoscope-detail-body .text-muted {
  color: #495057 !important;
}
.horoscope-detail-placeholder {
  text-align: center;
  padding: 2rem 1rem;
  color: #343a40;
  font-size: 1rem;
  font-weight: 500;
  max-width: 22rem;
  margin: 0 auto;
}
.horoscope-detail-placeholder .bi {
  font-size: 2.5rem;
  color: var(--color-primary);
  opacity: .55;
  display: block;
  margin-bottom: 1rem;
}
.horoscope-mini-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px dashed var(--color-border);
}
.horoscope-mini-strip span {
  font-size: .72rem;
  font-weight: 600;
  color: #495057;
  padding: .35rem .65rem;
  background: #ececec;
  border: 1px solid #ddd;
  border-radius: 999px;
}
/* Eski grid kartları (başka yerde kullanılırsa) */
.horoscope-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform .2s, box-shadow .2s;
}
.horoscope-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
}
.horoscope-card-head {
  background: linear-gradient(90deg, var(--color-navbar), var(--color-primary-dark));
  color: #fff;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.horoscope-zodiac-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.horoscope-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}
.horoscope-card-body {
  padding: 1.25rem;
}
.horoscope-card-text {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--color-text);
}
