:root {
  /* Brand Color Palette */
  --primary: #c8102e;            /* Deep News Crimson */
  --primary-light: #ef4444;      /* Lighter Crimson */
  --primary-glow: rgba(200, 16, 46, 0.15);
  --secondary: #0f172a;          /* Sleek Dark Slate / Header BG */
  --secondary-light: #1e293b;    /* Charcoal Text / Accent */
  
  /* Interface Colors */
  --bg-main: #f8fafc;            /* Eye-friendly very light slate */
  --bg-white: #ffffff;
  --text-main: #1e293b;          /* Charcoal for reading body text */
  --text-muted: #64748b;         /* Slate gray for meta info */
  --border-color: #e2e8f0;       /* Soft light borders */
  
  /* Fonts */
  --font-headlines: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Dimensions & Spacing */
  --container-width: 1200px;
  --border-radius: 8px;
  
  /* Shadows & Animations */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 24px rgba(15, 23, 42, 0.12);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Core Styling */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  width: 100%;
  position: relative;
  overflow-x: clip;
}

#page, .site {
  max-width: 100%;
  width: 100%;
  position: relative;
}

h1, h2, h3, h4, h5, h6, p, a, span, .slide-title, .latest-news-title, .cat-lead-title, .columnist-post-title {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --- HEADER & NAVIGATION (STICKY FIXED) --- */
.site-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-sticky {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.14);
}

.site-header.is-sticky .header-top {
  padding: 6px 0;
}

.site-header.is-sticky .site-logo {
  height: 36px;
}

[data-theme="dark"] .site-header {
  background-color: var(--secondary);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.site-content {
  margin-top: 0;
  padding-top: 0;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  transition: padding 0.25s ease;
}

.site-logo {
  height: 42px;
  display: flex;
  align-items: center;
  transition: height 0.25s ease;
}

.site-logo img {
  height: 100%;
  width: auto;
}

.header-date {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Navigation Menu */
.main-nav {
  background-color: var(--secondary);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.theme-toggle-btn {
  background: none;
  border: none;
  color: var(--bg-white);
  cursor: pointer;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  transition: var(--transition-fast);
  flex-shrink: 0;
  margin-left: 15px;
}

.theme-toggle-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Menu blocks */
.main-nav-list {
  display: flex;
  flex-wrap: wrap; /* Wraps items cleanly on desktop */
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-width: 0;
}

.main-nav-list li {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.main-nav-list li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.main-nav-list li a {
  display: block;
  padding: 14px 20px;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-headlines);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  position: relative;
  transition: var(--transition-fast);
}

.main-nav-list li a::after {
  display: none; /* Removed the underline hover effect since we have block background hover now */
}

.main-nav-list li a:hover,
.main-nav-list li.current-menu-item a {
  background-color: var(--primary);
  color: #fff;
}

.main-nav-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--secondary-light);
  min-width: 180px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 999;
}

.main-nav-list .sub-menu li {
  width: 100%;
  display: block;
  border: none; /* No border for submenu items */
}

.main-nav-list .sub-menu li:first-child {
  border: none;
}

.main-nav-list .sub-menu li a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bg-white);
  border-bottom: none;
  white-space: nowrap;
  display: block;
}

.main-nav-list .sub-menu li a:hover {
  background-color: var(--primary);
  color: #fff;
}

.main-nav-list li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav-list .arrow {
  font-size: 10px;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.main-nav-list li:hover .arrow {
  transform: rotate(180deg);
}

/* Responsive Overrides for Menu */
@media (max-width: 768px) {
  .main-nav-list {
    flex-wrap: nowrap; /* Do not wrap on mobile, scroll horizontally instead */
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav-list::-webkit-scrollbar {
    display: none; /* Hide scrollbars for clean look */
  }
  .main-nav-list li {
    flex-shrink: 0; /* Prevent items from squeezing/shrinking on mobile */
  }
}

@media (min-width: 769px) {
  .main-nav-list {
    overflow: visible;
  }
}


/* ====================================================
   HAMBURGER BUTTON
   ==================================================== */
.hamburger-toggle-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
  min-width: 38px;
  border-radius: 50%;
  transition: var(--transition-fast);
  flex-shrink: 0;
  margin-right: 6px;
  padding: 0;
}

.hamburger-toggle-btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* ====================================================
   HAMBURGER DRAWER (Slide-in Panel)
   ==================================================== */
.hamburger-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background-color: var(--secondary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.35);
  overflow-y: auto;
}

.hamburger-drawer.is-active {
  left: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--primary);
  flex-shrink: 0;
}

.drawer-title {
  font-family: var(--font-headlines);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.2px;
  margin: 0;
}

.drawer-close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  padding: 0 4px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  border-radius: 50%;
}

.drawer-close-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Drawer menu list */
.hamburger-menu-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.hamburger-menu-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hamburger-menu-list li a {
  display: block;
  padding: 14px 24px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-headlines);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: var(--transition-fast);
}

.hamburger-menu-list li a:hover {
  background-color: var(--primary);
  color: #fff;
  padding-left: 32px;
}

.hamburger-menu-list li.current-menu-item > a {
  background-color: var(--primary);
  color: #fff;
  border-left: 4px solid rgba(255, 255, 255, 0.6);
}

/* Sub-menu inside drawer */
.hamburger-menu-list .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.15);
}

.hamburger-menu-list .sub-menu li a {
  padding: 11px 24px 11px 40px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.hamburger-menu-list .sub-menu li a:hover {
  background-color: var(--primary);
  color: #fff;
  padding-left: 48px;
}

/* ====================================================
   DRAWER OVERLAY (background dimmer)
   ==================================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Dark mode adjustments for drawer */
[data-theme="dark"] .hamburger-drawer {
  background-color: var(--secondary);
}

[data-theme="dark"] .hamburger-menu-list li {
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

/* --- SON DAKİKA (BREAKING NEWS) TICKER --- */
.breaking-ticker {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
  margin-bottom: 0;
  width: 100%;
}

.ticker-wrapper {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  height: 40px;
  border-radius: 0;
  border: none;
}

.ticker-label {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 8px 16px;
  font-family: var(--font-headlines);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  white-space: nowrap;
  animation: pulse-glow 2s infinite ease-in-out;
}

.ticker-slider {
  padding-left: 20px;
  flex-grow: 1;
  overflow: hidden;
}

.ticker-item {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-light);
  white-space: nowrap;
}

.ticker-item span {
  color: var(--primary);
  margin-right: 8px;
}

/* --- NEWS GRID (1+3+4 Asymmetric Headline) --- */
.headline-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

/* Large Main Story Card */
.hero-story {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow-md);
  background-color: var(--secondary);
}

.hero-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 60%, rgba(15, 23, 42, 0) 100%);
  padding: 40px 24px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.story-badge {
  background-color: var(--primary);
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  width: fit-content;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.story-title {
  font-family: var(--font-headlines);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.story-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Side Column (List of 3 headlines) */
.side-stories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mini-card {
  display: flex;
  gap: 12px;
  background-color: var(--bg-white);
  padding: 12px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: calc((520px - 30px) / 3);
}

.mini-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 16, 46, 0.2);
}

.mini-card-img {
  width: 100px;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.mini-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-card-title {
  font-family: var(--font-headlines);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mini-card-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* Sub-headline Grid (4 cards row) */
.sub-headline-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.grid-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.grid-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 16, 46, 0.2);
}

.grid-card-img {
  height: 150px;
  overflow: hidden;
  position: relative;
}

.grid-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.grid-card:hover .grid-card-img img {
  transform: scale(1.05);
}

.grid-card-content {
  padding: 16px;
}

.grid-card-title {
  font-family: var(--font-headlines);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.grid-card-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* --- MODERN HABER PORTALI FOOTER SİSTEMİ --- */
.site-footer {
  background-color: #0b1120;
  color: #94a3b8;
  margin-top: 60px;
  border-top: 4px solid var(--primary);
  font-size: 14px;
  line-height: 1.6;
}

/* Footer Top Bar (Logo & Sosyal Medya) */
.footer-top-bar {
  padding: 30px 0 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-logo {
  display: inline-block;
  line-height: 1;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition-fast);
}

.footer-logo:hover .footer-logo-img {
  opacity: 0.85;
}

.footer-slogan {
  font-size: 13px;
  color: #64748b;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 500;
}

.footer-social-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-social-title {
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  transition: all 0.25s ease;
}

.footer-social-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.footer-social-btn.social-fb:hover { background-color: #1877f2; }
.footer-social-btn.social-x:hover { background-color: #000000; }
.footer-social-btn.social-ig:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.footer-social-btn.social-yt:hover { background-color: #ff0000; }
.footer-social-btn.social-rss:hover { background-color: #f26522; }

/* Footer Main 4-Column Grid */
.footer-main {
  padding: 45px 0 35px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.2fr 1fr;
  gap: 35px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  letter-spacing: 0.3px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary);
}

.footer-title-icon {
  font-size: 16px;
}

/* Künye Listesi */
.footer-kunye-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-kunye-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  padding-bottom: 7px;
}

.footer-kunye-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.kunye-label {
  color: #64748b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.kunye-val {
  color: #e2e8f0;
  font-weight: 600;
}

.footer-more-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-light);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.footer-more-link:hover {
  color: #fff;
  transform: translateX(3px);
}

/* Kategori Listesi */
.footer-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 15px;
}

.footer-cat-list li a {
  color: #94a3b8;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-cat-list li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.cat-bullet {
  color: var(--primary);
  font-size: 14px;
  font-weight: bold;
}

/* İletişim Detayları */
.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.contact-icon {
  font-size: 15px;
  line-height: 1.4;
}

.contact-text strong {
  display: block;
  color: #cbd5e1;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.contact-text p {
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

.contact-text a {
  color: #94a3b8;
  transition: var(--transition-fast);
}

.contact-text a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* WhatsApp İhbar Kartı */
.footer-wa-card {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 140, 126, 0.25));
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 12px 14px;
  border-radius: 8px;
  transition: var(--transition-normal);
}

.footer-wa-card:hover {
  border-color: rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.25), rgba(18, 140, 126, 0.35));
}

.footer-wa-icon {
  width: 38px;
  height: 38px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.footer-wa-info {
  display: flex;
  flex-direction: column;
}

.footer-wa-badge {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 0.4px;
}

.footer-wa-num {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.3;
}

/* Yasal Menü Linkleri */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
}

.footer-links-list li a {
  color: #94a3b8;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.footer-links-list li a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* Basın Ahlak Yasası Rozeti */
.footer-trust-box {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px;
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.trust-icon {
  font-size: 18px;
}

.trust-text strong {
  display: block;
  font-size: 12px;
  color: #e2e8f0;
  margin-bottom: 2px;
}

.trust-text span {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
  display: block;
}

/* Footer Disclaimer */
.footer-disclaimer-wrap {
  padding: 18px 0;
  background-color: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer-text {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Footer Bottom (Copyright & Credits) */
.footer-bottom {
  padding: 20px 0;
  background-color: #070a13;
  font-size: 13px;
  color: #64748b;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.site-info strong {
  color: #cbd5e1;
}

.site-info a:hover strong {
  color: #ffffff;
}

.footer-credits span {
  color: #64748b;
  font-size: 12.5px;
}

/* --- ANIMATIONS --- */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(200, 16, 46, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 16, 46, 0);
  }
}

/* --- ARCHIVE & CATEGORY LAYOUTS --- */
.archive-container {
  margin-top: 30px;
  margin-bottom: 50px;
}

.archive-header {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
}

.archive-subtitle {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 1px;
  display: block;
}

.archive-title {
  font-family: var(--font-headlines);
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary);
  margin-top: 4px;
}

.archive-description {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
}

.archive-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.archive-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.archive-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: var(--transition-normal);
}

.archive-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 16, 46, 0.2);
}

.archive-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.archive-card:hover .archive-card-image img {
  transform: scale(1.03);
}

.archive-card-body {
  padding: 20px;
}

.archive-card-date {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.archive-card-title {
  font-family: var(--font-headlines);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--secondary);
  margin-bottom: 10px;
}

.archive-card-title a:hover {
  color: var(--primary);
}

.archive-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-card-footer {
  padding: 15px 20px;
  border-top: 1px solid #f8fafc;
  background-color: #fafafa;
  text-align: right;
}

.archive-card-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.archive-card-link:hover {
  color: var(--secondary);
}

.archive-empty {
  font-size: 16px;
  color: var(--text-muted);
  padding: 40px 0;
  text-align: center;
}

/* Pagination */
.pagination-container {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination-container .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.pagination-container .page-numbers:hover,
.pagination-container .page-numbers.current {
  background-color: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

/* --- STATIC PAGE LAYOUTS --- */
.page-container {
  margin-top: 30px;
  margin-bottom: 50px;
  max-width: 800px;
}

.page-main {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.page-header {
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 12px;
}

.page-title {
  font-family: var(--font-headlines);
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary);
}

.page-featured-media {
  margin-bottom: 24px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.page-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-main);
}

.page-content p {
  margin-bottom: 20px;
}

/* --- SIDEBAR WIDGETS --- */
.sidebar-area {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.widget {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 25px;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  font-family: var(--font-headlines);
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 8px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.popular-posts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popular-post-item {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 10px;
}

.popular-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popular-post-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--secondary-light);
  display: block;
}

.popular-post-title:hover {
  color: var(--primary);
}

/* --- COMMENTS AREA --- */
.comments-area {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.comments-title {
  font-family: var(--font-headlines);
  font-size: 22px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 24px;
}

.comment-list {
  list-style: none;
  margin-bottom: 40px;
}

.comment-list .comment {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.comment-list .comment:last-child {
  border-bottom: none;
}

.comment-body {
  display: flex;
  gap: 16px;
}

.comment-meta {
  flex-shrink: 0;
}

.comment-meta img {
  border-radius: 50%;
}

.comment-content {
  font-size: 15px;
  line-height: 1.6;
}

.comment-author cite {
  font-family: var(--font-headlines);
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: var(--secondary);
}

.comment-metadata {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* Comment Form */
.comment-respond {
  background-color: var(--bg-main);
  padding: 24px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.comment-reply-title {
  font-family: var(--font-headlines);
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
}

.comment-form p {
  margin-bottom: 15px;
}

.comment-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-main);
  background-color: var(--bg-white);
  outline: none;
  transition: var(--transition-fast);
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* --- AD CONTAINERS & CLS PREVENTION --- */
.ad-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  overflow: hidden;
  clear: both;
}

.ad-header {
  min-height: 90px;
  max-width: 728px;
  width: 100%;
}

.ad-inline {
  min-height: 250px;
  max-width: 300px;
  margin: 25px auto;
  width: 100%;
}

.ad-sidebar {
  min-height: 250px;
  max-width: 300px;
  margin: 15px auto;
  width: 100%;
}

.ad-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background-color: #f1f5f9;
  border: 1px dashed var(--border-color);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
}

.ad-label {
  font-family: var(--font-headlines);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-bottom: 4px;
}

.ad-size {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.5;
}

/* =====================================================
   AD ZONE SYSTEM — Reklam Alanları
   ===================================================== */

/* Ortak Ad Zone Wrapper */
.ad-zone {
  margin: 16px 0;
  position: relative;
}

.ad-zone-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ad-zone-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.55;
  align-self: flex-end;
  margin-bottom: 2px;
}

/* --- Sidebar Üst Reklam: 300×250 --- */
.ad-zone-sidebar .ad-placeholder.ad-300x250 {
  width: 300px;
  min-height: 250px;
  max-width: 100%;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  border: 2px dashed #c7d2fe;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #818cf8;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
}

.ad-zone-sidebar .ad-placeholder.ad-300x250::before {
  content: "📢";
  font-size: 28px;
}

/* --- Sidebar Alt Reklam: 300×600 --- */
.ad-zone-sidebar-bottom {
  margin-top: 24px;
}

.ad-zone-sidebar-bottom .ad-placeholder.ad-300x600 {
  width: 300px;
  min-height: 600px;
  max-width: 100%;
  background: linear-gradient(160deg, #fdf4ff, #f5f3ff);
  border: 2px dashed #d8b4fe;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #a855f7;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
}

.ad-zone-sidebar-bottom .ad-placeholder.ad-300x600::before {
  content: "📢";
  font-size: 32px;
}

/* --- İçerik Alt Reklam: 728×90 (Leaderboard) --- */
.ad-zone-bottom {
  margin-top: 32px;
  margin-bottom: 8px;
}

.ad-zone-bottom .ad-placeholder.ad-728x90 {
  width: 100%;
  min-height: 90px;
  max-width: 728px;
  background: linear-gradient(90deg, #f0fdf4, #ecfdf5);
  border: 2px dashed #6ee7b7;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 13px;
  font-weight: 600;
  gap: 10px;
}

.ad-zone-bottom .ad-placeholder.ad-728x90::before {
  content: "📢";
  font-size: 20px;
}

/* --- Footer Tam Genişlik Reklam: 970×90 --- */
.ad-zone-fullwidth {
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  margin-top: 16px;
}

.ad-zone-fullwidth .ad-zone-inner {
  align-items: center;
}

.ad-zone-fullwidth .ad-placeholder.ad-970x90 {
  width: 100%;
  min-height: 90px;
  max-width: 970px;
  background: linear-gradient(90deg, #fff7ed, #fef9c3);
  border: 2px dashed #fbbf24;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d97706;
  font-size: 13px;
  font-weight: 600;
  gap: 10px;
}

.ad-zone-fullwidth .ad-placeholder.ad-970x90::before {
  content: "📢";
  font-size: 22px;
}

/* Karanlık mod uyumu */
[data-theme="dark"] .ad-zone-sidebar .ad-placeholder.ad-300x250,
[data-theme="dark"] .ad-zone-sidebar-bottom .ad-placeholder.ad-300x600 {
  background: rgba(99, 102, 241, 0.06);
  border-color: rgba(99, 102, 241, 0.25);
}

[data-theme="dark"] .ad-zone-bottom .ad-placeholder.ad-728x90 {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.25);
}

[data-theme="dark"] .ad-zone-fullwidth {
  background: var(--secondary-light);
  border-color: rgba(255,255,255,0.06);
}

[data-theme="dark"] .ad-zone-fullwidth .ad-placeholder.ad-970x90 {
  background: rgba(251, 191, 36, 0.06);
  border-color: rgba(251, 191, 36, 0.25);
}



/* --- HERO SLIDER & LATEST NEWS GRIDS --- */
.home-hero-section {
  margin-bottom: 30px;
  margin-top: 10px;
}

.hero-left {
  overflow: hidden;
  border-radius: var(--border-radius);
}

.hero-right {
  display: flex;
  flex-direction: column;
}

.latest-news-widget {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.latest-news-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.latest-news-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 10px;
}

.latest-news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.latest-news-time {
  font-family: var(--font-headlines);
  font-weight: 800;
  color: var(--primary);
  font-size: 13px;
  flex-shrink: 0;
}

.latest-news-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--secondary-light);
}

.latest-news-title:hover {
  color: var(--primary);
}

/* Manşet Slider */
.headline-slider-wrapper {
  position: relative;
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--secondary);
}

.headline-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

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

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 60%, rgba(15, 23, 42, 0) 100%);
  padding: 40px 24px 24px;
  color: #fff;
}

.slide-badge {
  background-color: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  text-transform: uppercase;
  border-radius: 3px;
  width: fit-content;
  margin-bottom: 10px;
  display: inline-block;
  letter-spacing: 0.5px;
}

.slide-title {
  font-family: var(--font-headlines);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(15, 23, 42, 0.6);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background-color: var(--primary);
}

.slider-arrow.prev {
  left: 15px;
}

.slider-arrow.next {
  right: 15px;
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dots .dot.active {
  background-color: var(--primary);
  width: 20px;
  border-radius: 4px;
}

/* --- SECTION 2: COLUMNISTS (YAZARLAR) --- */
.home-columnists-section {
  margin-bottom: 35px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 30px;
}

.section-header-wrap {
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 8px;
  margin-bottom: 20px;
  position: relative;
}

.section-title {
  font-family: var(--font-headlines);
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 0.5px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.columnists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.columnist-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 20px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.columnist-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 16, 46, 0.2);
}

.columnist-avatar-wrap img {
  border-radius: 50%;
  border: 2px solid var(--border-color);
  transition: var(--transition-fast);
}

.columnist-card:hover .columnist-avatar-wrap img {
  border-color: var(--primary);
}

.columnist-name {
  font-family: var(--font-headlines);
  font-size: 15px;
  font-weight: 800;
  color: var(--secondary);
}

.columnist-post-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.columnist-post-title a:hover {
  color: var(--primary);
}

/* --- SECTION 3: CATEGORY BLOKLARI --- */
.home-categories-section {
  margin-bottom: 40px;
}

.category-block {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.category-block-title {
  font-family: var(--font-headlines);
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 6px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.cat-lead-story {
  margin-bottom: 15px;
}

.cat-lead-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 10px;
}

.cat-lead-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.cat-lead-story:hover .cat-lead-img img {
  transform: scale(1.02);
}

.cat-lead-title {
  font-family: var(--font-headlines);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.cat-lead-title a:hover {
  color: var(--primary);
}

.cat-sub-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cat-sub-item {
  border-top: 1px solid #f1f5f9;
  padding-top: 8px;
}

.cat-sub-item a {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--secondary-light);
  display: block;
}

.cat-sub-item a:hover {
  color: var(--primary);
}

/* --- SECTION 4: MULTIMEDIA BLOCKS --- */
.home-multimedia-section {
  margin-top: 40px;
}

.multimedia-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.multimedia-block-half {
  display: flex;
  flex-direction: column;
}

.multimedia-title {
  font-family: var(--font-headlines);
  font-size: 18px;
  font-weight: 800;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 8px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.multimedia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.multimedia-card {
  transition: var(--transition-normal);
}

.multimedia-card:hover {
  transform: translateY(-2px);
}

.multimedia-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 8px;
}

.multimedia-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: rgba(15, 23, 42, 0.85);
  color: #fff;
  font-size: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.gallery-icon {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-icon {
  color: var(--primary-light);
  font-size: 10px;
  padding-left: 2px;
}

.multimedia-card-title {
  font-family: var(--font-headlines);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #e2e8f0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.multimedia-card:hover .multimedia-card-title {
  color: #fff;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .headline-grid,
  .archive-grid,
  .home-hero-section,
  .home-categories-section,
  .multimedia-container {
    grid-template-columns: 1fr;
  }
  .hero-story {
    height: 400px;
  }
  .mini-card {
    height: auto;
    padding: 16px;
  }
  .sub-headline-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .columnists-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 10px;
  }
  .hero-story {
    height: 320px;
  }
  .story-title {
    font-size: 24px;
  }
  .sub-headline-row,
  .archive-posts-grid,
  .columnists-grid,
  .multimedia-grid {
    grid-template-columns: 1fr;
  }
  .page-main {
    padding: 20px;
  }
  .page-title {
    font-size: 28px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 25px;
  }
  .footer-top-bar-inner,
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  .footer-branding {
    flex-direction: column;
    text-align: center;
  }
  .footer-slogan {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 8px;
  }
  .footer-col-kunye,
  .footer-col-cats,
  .footer-col-contact,
  .footer-col-legal {
    grid-column: span 2;
  }
  @media (min-width: 576px) and (max-width: 768px) {
    .footer-col-kunye,
    .footer-col-contact {
      grid-column: span 1;
    }
    .footer-col-cats,
    .footer-col-legal {
      grid-column: span 1;
    }
  }
  .comment-body {
    flex-direction: column;
    gap: 10px;
  }
  .ad-header {
    min-height: 50px;
    max-width: 320px;
  }
  .headline-slider-wrapper {
    height: 300px;
  }
  .slide-title {
    font-size: 20px;
  }
}

/* ==========================================
   Archive & Author Profile Pages
   ========================================== */
.archive-container {
  margin-top: 35px;
  margin-bottom: 50px;
}

.archive-header {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.archive-subtitle {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 5px;
}

.archive-title {
  font-family: var(--font-headlines);
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary);
  margin: 0;
}

.archive-description {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

.archive-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
}

.archive-main {
  min-width: 0;
}

.archive-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.archive-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: var(--transition-normal);
}

.archive-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.archive-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.archive-card:hover .archive-card-image img {
  transform: scale(1.04);
}

.archive-card-body {
  padding: 20px;
}

.archive-card-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.archive-card-title {
  font-family: var(--font-headlines);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px;
}

.archive-card-title a {
  color: var(--secondary);
}

.archive-card-title a:hover {
  color: var(--primary);
}

.archive-card-excerpt {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.archive-card-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-main);
}

.archive-card-link {
  font-family: var(--font-headlines);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
}

.archive-card-link:hover {
  color: var(--secondary);
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  padding: 20px 0;
}

.pagination-container .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  background-color: var(--bg-main);
  color: var(--secondary-light);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition-fast);
}

.pagination-container .page-numbers.current,
.pagination-container .page-numbers:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pagination-container .page-numbers.prev,
.pagination-container .page-numbers.next {
  font-family: var(--font-headlines);
}

/* Author Profile Header */
.author-profile-header {
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 30px;
}

.author-profile-card {
  display: flex;
  gap: 30px;
  align-items: center;
}

.author-profile-avatar img {
  border-radius: 50%;
  border: 3px solid var(--border-color);
  display: block;
}

.author-profile-info {
  flex: 1;
}

.author-profile-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 5px;
}

.author-profile-name {
  font-family: var(--font-headlines);
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary);
  margin: 0 0 10px;
}

.author-profile-bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--secondary-light);
  margin: 0 0 15px;
}

.author-profile-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  font-family: var(--font-headlines);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-main);
  color: var(--secondary-light);
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Responsive Overrides for archives */
@media (max-width: 1024px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .archive-posts-grid {
    grid-template-columns: 1fr;
  }
  .author-profile-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================
   Dark Theme variables & resets
   ========================================== */
[data-theme="dark"] {
  --bg-main: #0f172a;
  --bg-white: #1e293b;
  --text-color: #f1f5f9;
  --secondary: #f8fafc;
  --secondary-light: #cbd5e1;
  --border-color: #334155;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
}

/* Sun/Moon icon visibility toggle rules */
[data-theme="dark"] .theme-sun-icon {
  display: none !important;
}
[data-theme="dark"] .theme-moon-icon {
  display: inline-block !important;
  color: #fbbf24;
}
[data-theme="light"] .theme-sun-icon {
  display: inline-block !important;
  color: #f59e0b;
}
[data-theme="light"] .theme-moon-icon {
  display: none !important;
}

/* Specific styling overrides for Dark Theme to make it feel premium */
[data-theme="dark"] body {
  background-color: var(--bg-main);
  color: var(--text-color);
}

[data-theme="dark"] .main-nav {
  background-color: #1e293b;
  border-bottom: 1px solid #334155;
}

[data-theme="dark"] .theme-toggle-btn {
  color: #cbd5e1;
}

[data-theme="dark"] .theme-toggle-btn:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .main-nav-list li {
  border-right-color: #334155;
}

[data-theme="dark"] .main-nav-list li:first-child {
  border-left-color: #334155;
}

[data-theme="dark"] .site-header {
  background-color: #0f172a;
  border-bottom: 1px solid #334155;
}

[data-theme="dark"] .header-top {
  background-color: #0f172a;
}

[data-theme="dark"] .header-date {
  color: #94a3b8;
}

[data-theme="dark"] .news-ticker-container {
  background-color: #1e293b;
  border-bottom: 1px solid #334155;
}

[data-theme="dark"] .news-ticker-label {
  background-color: var(--primary);
}

[data-theme="dark"] .news-ticker-list a {
  color: #e2e8f0;
}

[data-theme="dark"] .news-card {
  background-color: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .news-card-title a {
  color: #f8fafc;
}

[data-theme="dark"] .columnists-section {
  background-color: #1e293b;
  border-top: 1px solid #334155;
  border-bottom: 1px solid #334155;
}

[data-theme="dark"] .columnist-card {
  background-color: #0f172a;
  border-color: #334155;
}

[data-theme="dark"] .columnist-title a {
  color: #f8fafc;
}

[data-theme="dark"] .category-block {
  border-color: #334155;
}

[data-theme="dark"] .category-block-title {
  color: #f8fafc;
}

[data-theme="dark"] .category-sub-list li {
  border-bottom-color: #334155;
}

[data-theme="dark"] .category-sub-list a {
  color: #cbd5e1;
}

[data-theme="dark"] .category-sub-list a:hover {
  color: var(--primary);
}

[data-theme="dark"] .latest-news-widget {
  background-color: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .latest-news-item {
  border-bottom-color: #334155;
}

[data-theme="dark"] .latest-news-item a {
  color: #e2e8f0;
}

[data-theme="dark"] .widget {
  background-color: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .widget-title {
  color: #f8fafc;
}

[data-theme="dark"] .widget-list a {
  color: #cbd5e1;
}

[data-theme="dark"] .footer-top-wrap {
  background-color: #0b0f19;
  border-top: 1px solid #1e293b;
}

[data-theme="dark"] .footer-bottom-wrap {
  background-color: #070a13;
  border-top: 1px solid #1e293b;
}

[data-theme="dark"] .footer-nav-list a {
  color: #94a3b8;
}

[data-theme="dark"] .footer-nav-list a:hover {
  color: #fff;
}

[data-theme="dark"] .author-profile-header,
[data-theme="dark"] .author-profile-socials a,
[data-theme="dark"] .social-link {
  background-color: #1e293b;
  border-color: #334155;
  color: #e2e8f0;
}

[data-theme="dark"] .author-profile-socials a:hover,
[data-theme="dark"] .social-link:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Text-to-Speech Player Bar styling */
.tts-player-bar {
  margin: 15px 0 25px;
  padding: 12px 20px;
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
}

.tts-player-btn {
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  font-family: var(--font-headlines);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-fast);
}

.tts-player-btn:hover {
  background-color: var(--secondary);
}

.tts-player-btn.speaking {
  background-color: #10b981; /* Green color when speaking */
}

.tts-player-btn.speaking:hover {
  background-color: #059669;
}

.tts-player-btn.speaking .tts-play-icon {
  display: none !important;
}

.tts-player-btn.speaking .tts-stop-icon {
  display: inline-block !important;
}

/* ==========================================
   Live Tickers & Widgets Styles
   ========================================== */
.finance-bar {
  background-color: var(--secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  font-family: var(--font-headlines);
  font-size: 12px;
  font-weight: 700;
  overflow-x: auto;
}

.finance-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}

.finance-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.finance-label {
  color: #94a3b8;
}

.finance-value {
  color: #fff;
}

.finance-change {
  font-size: 11px;
}

.finance-change.up {
  color: #10b981;
}

.finance-change.down {
  color: #ef4444;
}

/* Sports Widget table */
.sports-table th {
  font-family: var(--font-headlines);
  font-size: 12px;
  color: var(--secondary);
  border-bottom: 2px solid var(--border-color);
  padding: 8px 4px;
}

.sports-table td {
  padding: 8px 4px;
  color: var(--secondary-light);
}

/* Election results dashboard */
[data-theme="dark"] .secim-header {
  background-color: #1e293b !important;
  border: 1px solid #334155;
}

.secim-table th {
  padding: 12px 15px;
  font-family: var(--font-headlines);
  font-size: 13px;
}

.secim-table td {
  padding: 12px 15px;
  font-size: 14px;
  color: var(--secondary-light);
}

[data-theme="dark"] .secim-table {
  border-color: #334155 !important;
}

[data-theme="dark"] .secim-table th {
  background-color: #1e293b !important;
  color: #f8fafc;
}

/* Responsive adjustment for finance bar scrollbar */
.finance-bar::-webkit-scrollbar {
  height: 3px;
}
.finance-bar::-webkit-scrollbar-thumb {
  background: var(--primary);
}

/* ==========================================
   Real-Time Live Blog (Canlı Anlatım) Styles
   ========================================== */
@keyframes livePulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.live-pulse-badge .live-badge-dot.pulse {
  animation: livePulse 1.8s infinite;
}

.live-blog-timeline-title .live-badge-dot.pulse {
  animation: livePulse 1.8s infinite;
}

/* Timeline card insertion animations */
@keyframes slideDownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.live-update-card.fade-in-slide {
  animation: slideDownFadeIn 0.6s ease forwards;
  margin-bottom: 30px;
  position: relative;
}

/* Dark mode adjustments for live blog */
[data-theme="dark"] .live-blog-timeline {
  background-color: #1e293b !important;
  border-color: #334155 !important;
}

[data-theme="dark"] .live-update-body {
  background-color: #0f172a !important;
  border-color: #334155 !important;
}

[data-theme="dark"] .live-update-timeline-node .live-node-time {
  background: #1e293b !important;
  color: #94a3b8 !important;
}

[data-theme="dark"] .live-update-timeline-node .live-node-dot {
  border-color: #1e293b !important;
}


/* ====================================================
   BREAKING NEWS TICKER — KAYAN BANT
   ==================================================== */
.breaking-ticker {
  background-color: var(--bg-white);
  border-bottom: 2px solid var(--primary);
  padding: 0;
  overflow: hidden !important;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.ticker-wrapper {
  display: flex;
  align-items: stretch;
  height: 40px;
  overflow: hidden !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.ticker-label {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 0 18px;
  font-size: 11px;
  font-family: var(--font-headlines);
  font-weight: 800;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  padding-right: 28px;
}

.ticker-pulse {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: tickerPulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes tickerPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.ticker-track-outer {
  flex: 1 1 0%;
  min-width: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: relative;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  will-change: transform;
}

.ticker-track:hover {
  animation-play-state: paused;
}

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 32px 0 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-main);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.15s;
}

.ticker-item:hover {
  color: var(--primary);
}

.ticker-dot {
  color: var(--primary);
  font-size: 16px;
  line-height: 1;
}

[data-theme="dark"] .breaking-ticker {
  background-color: var(--secondary-light);
}

[data-theme="dark"] .ticker-item {
  color: rgba(255,255,255,0.85);
}


/* ====================================================
   HOME HERO SECTION — SLIDER + SIDEBAR
   ==================================================== */
.home-hero-section {
  background-color: var(--bg-main);
  padding: 16px 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: stretch;
  width: 100%;
  min-height: 0;
}

/* ---- Slider (Manşet) ---- */
.headline-slider-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
}

.headline-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide.active {
  opacity: 1;
}

.slide img,
.slide-no-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-no-image {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px 24px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.65) 50%,
    transparent 100%
  );
  color: #fff;
}

.slide-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.slide-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-family: var(--font-headlines);
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
}

.slide-date {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.slide-title {
  font-family: var(--font-headlines);
  font-size: clamp(16px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.slide-excerpt {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slide-author-line {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 10;
}

.slider-arrow.prev { left: 14px; }
.slider-arrow.next { right: 14px; }

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 16px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(1.2);
}

.dot.active {
  background: var(--primary, #d32f2f);
  width: 22px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(211, 47, 47, 0.7);
}

/* Slide counter */
.slide-counter {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4);
  padding: 2px 8px;
  border-radius: 20px;
  z-index: 10;
}

/* ---- Son Haberler Sidebar ---- */
.hero-sidebar-col {
  position: relative;
  height: 450px;
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--primary);
  box-shadow: -4px 0 20px rgba(0,0,0,0.08);
}

.latest-news-widget {
  background: var(--bg-white);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--secondary);
  border-bottom: 2px solid var(--primary);
}

.widget-header .widget-title {
  font-family: var(--font-headlines);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff;
  margin: 0;
}

.widget-more-link {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}

.widget-more-link:hover {
  color: #fff;
}

.latest-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}

.latest-news-list::-webkit-scrollbar {
  width: 3px;
}

.latest-news-list::-webkit-scrollbar-track {
  background: transparent;
}

.latest-news-list::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.latest-news-item {
  padding: 11px 18px;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.15s;
}

.latest-news-item:last-child {
  border-bottom: none;
}

.latest-news-item:hover {
  background: #f8fafc;
}

.latest-news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.latest-news-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-headlines);
}

.latest-news-cat {
  font-size: 10px;
  background: var(--primary-glow);
  color: var(--primary);
  border-radius: 3px;
  padding: 1px 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.latest-news-title {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-main);
}

.latest-news-title:hover {
  color: var(--primary);
}

[data-theme="dark"] .latest-news-widget {
  background: var(--secondary-light);
}

[data-theme="dark"] .latest-news-item {
  border-bottom-color: rgba(255,255,255,0.06);
}

[data-theme="dark"] .latest-news-item:hover {
  background: rgba(255,255,255,0.04);
}

[data-theme="dark"] .latest-news-title {
  color: rgba(255,255,255,0.88);
}


/* ====================================================
   KATEGORİ BLOKLARI
   ==================================================== */
.home-categories-section {
  padding: 36px 0;
  background: var(--bg-main);
}

/* ==========================================================================
   📰 MODERN EDİTÖRYAL HABER AKIŞI & BENTO GRID STİLLERİ
   ========================================================================== */
.home-news-stream-section {
  margin-bottom: 40px;
}

.stream-header-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
}

.stream-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stream-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 38, 38, 0.1);
  color: var(--primary, #d32f2f);
  font-family: var(--font-headlines);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  text-transform: uppercase;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--primary, #d32f2f);
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}

.stream-filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.stream-filter-pills::-webkit-scrollbar {
  display: none;
}

.stream-pill {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-family: var(--font-headlines);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.stream-pill:hover {
  background: var(--bg-main);
  border-color: var(--primary);
  color: var(--primary);
}

.stream-pill.active {
  background: var(--primary, #d32f2f);
  border-color: var(--primary, #d32f2f);
  color: #fff;
  box-shadow: 0 2px 8px rgba(211, 47, 47, 0.35);
}

@keyframes streamFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-card {
  animation: streamFadeIn 0.3s ease forwards;
}

/* 1. Bento Vitrin Izgarası */
.stream-bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.bento-sub-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bento-card {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.bento-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.bento-img-wrap {
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.bento-lead .bento-img-wrap {
  aspect-ratio: 16/10;
}

.bento-secondary .bento-img-wrap {
  aspect-ratio: 16/9;
}

.bento-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-card:hover .bento-img-wrap img {
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.bento-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary, #d32f2f);
  color: #fff;
  font-family: var(--font-headlines);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

.bento-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bento-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.bento-title {
  font-family: var(--font-headlines);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-main);
  margin: 0 0 8px;
  transition: color 0.15s;
}

.bento-lead .bento-title {
  font-size: 18px;
}

.bento-card:hover .bento-title {
  color: var(--primary);
}

.bento-excerpt {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 2. Editoryal Akış Kartları (Stream List) */
.editorial-stream-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stream-news-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.stream-news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(211, 47, 47, 0.4);
}

.stream-card-thumb {
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.stream-card-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

.stream-card-thumb img,
.stream-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.stream-news-card:hover .stream-card-thumb img {
  transform: scale(1.05);
}

.stream-no-img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  font-size: 24px;
}

.stream-card-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stream-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.stream-card-category {
  color: var(--primary, #d32f2f);
  font-family: var(--font-headlines);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.stream-card-title {
  font-family: var(--font-headlines);
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 8px;
}

.stream-card-title a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.15s;
}

.stream-card-title a:hover {
  color: var(--primary);
}

.stream-card-excerpt {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stream-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.stream-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-headlines);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary, #d32f2f);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.stream-read-btn:hover {
  gap: 9px;
}

/* Load More */
.stream-load-more-wrap {
  margin-top: 24px;
  text-align: center;
}

.stream-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-family: var(--font-headlines);
  font-size: 13px;
  font-weight: 800;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.stream-load-more-btn:hover {
  background: var(--primary, #d32f2f);
  border-color: var(--primary, #d32f2f);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.35);
}

@media (max-width: 768px) {
  .stream-bento-grid {
    grid-template-columns: 1fr;
  }
  .stream-news-card {
    grid-template-columns: 1fr;
  }
  .stream-card-thumb {
    aspect-ratio: 16/9;
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-block:hover {
  box-shadow: var(--shadow-md);
}

.category-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 3px solid var(--cat-color, var(--primary));
  background: color-mix(in srgb, var(--cat-color, var(--primary)) 8%, white);
}

.category-block-title {
  font-family: var(--font-headlines);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--cat-color, var(--primary));
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.cat-icon {
  font-size: 14px;
}

.cat-all-link {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.15s;
}

.cat-all-link:hover {
  color: var(--cat-color, var(--primary));
}

.cat-lead-story {
  display: flex;
  flex-direction: column;
}

.cat-lead-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.cat-lead-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cat-lead-story:hover .cat-lead-img img {
  transform: scale(1.04);
}

.cat-lead-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 60%);
}

.cat-lead-content {
  padding: 12px 14px 10px;
}

.cat-lead-title {
  font-family: var(--font-headlines);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}

.cat-lead-title a {
  color: var(--text-main);
}

.cat-lead-title a:hover {
  color: var(--cat-color, var(--primary));
}

.cat-lead-excerpt {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cat-lead-date {
  font-size: 11px;
  color: var(--text-muted);
}

.cat-sub-list {
  list-style: none;
  padding: 6px 14px 12px;
  margin: 0;
  flex: 1;
}

.cat-sub-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-color);
}

.cat-sub-item:last-child {
  border-bottom: none;
}

.cat-sub-item svg {
  margin-top: 5px;
  flex-shrink: 0;
}

.cat-sub-item a {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.4;
}

.cat-sub-item a:hover {
  color: var(--cat-color, var(--primary));
}

[data-theme="dark"] .category-block {
  background: var(--secondary-light);
}

[data-theme="dark"] .category-block-header {
  background: color-mix(in srgb, var(--cat-color, var(--primary)) 15%, #1e293b);
}

[data-theme="dark"] .cat-lead-title a,
[data-theme="dark"] .cat-sub-item a {
  color: rgba(255,255,255,0.88);
}

[data-theme="dark"] .cat-sub-item {
  border-bottom-color: rgba(255,255,255,0.07);
}


/* ====================================================
   YAZAR / KÖŞECİ KARTLARİ
   ==================================================== */
.home-columnists-section {
  padding: 36px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-headlines);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.section-title-accent {
  font-size: 18px;
}

.section-title-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--primary), transparent);
  border-radius: 1px;
}

.columnists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.columnist-card {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: var(--transition-normal);
}

.columnist-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.columnist-avatar-wrap {
  position: relative;
}

.columnist-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.columnist-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.columnist-name {
  font-family: var(--font-headlines);
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.columnist-post-title {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
}

.columnist-post-title a {
  color: var(--text-main);
}

.columnist-post-title a:hover {
  color: var(--primary);
}

.columnist-excerpt {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.columnist-read-more {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.3px;
}

.columnist-read-more:hover {
  opacity: 0.8;
}

[data-theme="dark"] .columnist-card {
  background: var(--secondary-light);
  border-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .columnist-post-title a {
  color: rgba(255,255,255,0.88);
}


/* ====================================================
   MULTİMEDYA BLOKLARI
   ==================================================== */
.home-multimedia-section {
  padding: 36px 0 48px;
  background: var(--bg-main);
}

.multimedia-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.multimedia-block-half {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.multimedia-block-header {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 2px solid var(--primary);
  background: var(--secondary);
}

.multimedia-title {
  font-family: var(--font-headlines);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.multimedia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 16px;
  gap: 12px;
}

.multimedia-card {
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-main);
}

.multimedia-card a {
  display: block;
}

.multimedia-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #111;
}

.multimedia-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.multimedia-card:hover .multimedia-img-wrap img {
  transform: scale(1.07);
}

.multimedia-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.video-overlay {
  background: rgba(0,0,0,0.45);
  opacity: 1; /* Always visible for video */
}

.multimedia-card:hover .multimedia-overlay {
  opacity: 1;
}

.media-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.multimedia-card:hover .video-icon {
  background: var(--primary);
  border-color: var(--primary);
}

.multimedia-card-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-main);
  padding: 8px 6px 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

[data-theme="dark"] .multimedia-block-half {
  background: var(--secondary-light);
}

[data-theme="dark"] .multimedia-card {
  background: var(--secondary);
}

[data-theme="dark"] .multimedia-card-title {
  color: rgba(255,255,255,0.85);
}


/* ====================================================
   RESPONSIVE — HOMEPAGE MODULES
   ==================================================== */
@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .columnists-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-sidebar-col {
    position: static;
  }
  .latest-news-widget {
    max-height: 260px;
    overflow-y: auto;
  }
  .multimedia-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .columnists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .multimedia-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slide-title {
    font-size: 16px;
  }
  .slide-excerpt {
    display: none;
  }
}

@media (max-width: 520px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .columnists-grid {
    grid-template-columns: 1fr;
  }
  .multimedia-grid {
    grid-template-columns: 1fr;
  }
  .ticker-label {
    padding: 0 12px 0 14px;
    font-size: 10px;
  }
}

/* ====================================================
   HOMEPAGE INFINITE SCROLL FEED (SONSUZ AKIŞ)
   ==================================================== */
.home-infinite-section {
  margin-top: 36px;
  margin-bottom: 24px;
  width: 100%;
}

.infinite-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.live-pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.7);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(200, 16, 46, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(200, 16, 46, 0);
  }
}

.infinite-feed-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(200, 16, 46, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  border: 1px solid rgba(200, 16, 46, 0.2);
}

.infinite-feed-badge .live-icon {
  font-size: 8px;
  color: var(--primary);
  animation: blinkLive 1.2s infinite ease-in-out;
}

@keyframes blinkLive {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.home-infinite-feed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.home-feed-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-feed-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 16, 46, 0.3);
}

.home-feed-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #0f172a;
}

.home-feed-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.home-feed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-feed-card:hover .home-feed-img {
  transform: scale(1.06);
}

.home-feed-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  font-size: 14px;
}

.home-feed-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 9px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.home-feed-read-time {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 2;
}

.home-feed-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-feed-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
  gap: 10px;
}

.home-feed-date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.home-feed-author {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.home-feed-title {
  font-family: var(--font-headlines);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-feed-title a {
  color: inherit;
  transition: color 0.2s ease;
}

.home-feed-title a:hover {
  color: var(--primary);
}

.home-feed-excerpt {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-feed-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.home-feed-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.2s ease, color 0.2s ease;
}

.home-feed-read-more svg {
  transition: transform 0.2s ease;
}

.home-feed-read-more:hover {
  color: var(--primary-light);
}

.home-feed-read-more:hover svg {
  transform: translateX(4px);
}

/* Feed Entry Animation */
.feed-fade-in {
  animation: feedItemIn 0.4s ease-out forwards;
}

@keyframes feedItemIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sentinel & Loader Styles */
.home-infinite-sentinel {
  width: 100%;
  padding: 30px 0 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-infinite-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  color: var(--text-main);
  font-size: 13.5px;
  font-weight: 600;
}

.infinite-spinner-ring {
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(200, 16, 46, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: ringSpin 0.75s infinite linear;
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

.home-load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--bg-white);
  color: var(--secondary);
  border: 1.5px solid var(--border-color);
  border-radius: 30px;
  font-family: var(--font-headlines);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.home-load-more-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.25);
}

.home-load-more-btn:hover .btn-icon {
  transform: translateY(2px);
}

.home-load-more-btn .btn-icon {
  transition: transform 0.2s ease;
}

.home-infinite-end {
  padding: 14px 24px;
}

.home-infinite-end .end-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 25px;
}

.home-infinite-end .check-icon {
  font-weight: 800;
}

/* Dark Mode Styles for Homepage Infinite Feed */
[data-theme="dark"] .home-feed-card {
  background-color: var(--secondary-light);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .home-feed-title {
  color: #ffffff;
}

[data-theme="dark"] .home-feed-excerpt {
  color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark"] .home-feed-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .home-infinite-loader {
  background: var(--secondary-light);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

[data-theme="dark"] .home-load-more-btn {
  background: var(--secondary-light);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

[data-theme="dark"] .home-load-more-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

/* ==========================================================================
   HOMEPAGE ENHANCEMENTS: NUMBERED SLIDER TABS, SHOWCASE VITRIN & MODULES
   ========================================================================== */

/* 1. Numbered Slider Tabs Track */
.slider-number-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-number-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.slider-number-track::-webkit-scrollbar {
  display: none;
}

.slider-nav-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  transition: all 0.2s ease;
  min-width: 38px;
}

.slider-nav-pill:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.slider-nav-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.slider-nav-pill .pill-num {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.slider-nav-pill .pill-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.slider-nav-pill.active .pill-bar {
  background: #ffffff;
}

.slide-kicker-badge {
  background: #dc2626;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slide-read-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* 2. Son Haberler Live Pulse */
.widget-header-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-pulse-dot {
  width: 9px;
  height: 9px;
  background-color: #dc2626;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(220, 38, 38, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.live-stream-tag {
  font-size: 11px;
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 700;
}

.latest-news-footer {
  padding: 12px 16px;
  background: var(--bg-main);
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.latest-news-all-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease;
}

.latest-news-all-link:hover {
  transform: translateX(4px);
}

/* 3. 4'lü Sürmanşet Vitrini (Showcase Grid) */
.home-showcase-section {
  padding: 24px 0 10px 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.showcase-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #000;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.showcase-card-link {
  display: block;
  height: 100%;
}

.showcase-img-wrap {
  position: relative;
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.showcase-card:hover .showcase-img {
  transform: scale(1.06);
}

.showcase-no-img {
  width: 100%;
  height: 100%;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-weight: 700;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.showcase-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 2;
}

.showcase-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.showcase-kicker {
  background: #dc2626;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.showcase-category {
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.showcase-time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.showcase-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 4. Rich Category Blocks with Mini Thumbnails */
.cat-sub-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px;
}

.cat-sub-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.cat-sub-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cat-sub-thumb-link {
  flex-shrink: 0;
  width: 68px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
}

.cat-sub-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cat-sub-item:hover .cat-sub-thumb {
  transform: scale(1.08);
}

.cat-sub-no-thumb {
  width: 100%;
  height: 100%;
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.cat-sub-info {
  flex: 1;
  min-width: 0;
}

.cat-sub-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 3px 0;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cat-sub-title a:hover {
  color: var(--cat-color, var(--primary));
}

.cat-sub-date {
  font-size: 11px;
  color: var(--text-muted);
}

/* 5. Yerel Gündem / Ege Vitrini */
.home-local-section {
  margin-top: 36px;
  margin-bottom: 30px;
}

.section-title-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.local-region-tag {
  font-size: 12px;
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.local-district-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.district-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.district-pill:hover,
.district-pill.active {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

.local-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

@media (max-width: 768px) {
  .local-news-grid {
    grid-template-columns: 1fr;
  }
}

.local-news-card {
  background: var(--bg-white);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.local-news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.local-card-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.local-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.local-news-card:hover .local-card-img {
  transform: scale(1.05);
}

.local-district-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0284c7;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.local-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.local-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.local-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 8px 0;
}

.local-card-title a:hover {
  color: #0284c7;
}

.local-card-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 12px 0;
  flex: 1;
}

.local-card-link {
  font-size: 13px;
  font-weight: 700;
  color: #0284c7;
}

/* 6. Modern Yazar Kartları */
.columnist-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(139, 92, 246, 0.04);
  border-bottom: 1px solid var(--border-color);
}

.columnist-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.columnist-column-badge {
  font-size: 11px;
  color: #8b5cf6;
  font-weight: 700;
  text-transform: uppercase;
}

.columnist-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-color);
}

.columnist-read-time {
  font-size: 12px;
  color: var(--text-muted);
}

/* 7. Multimedya Badges & Dark Theme Container */
.multimedia-live-tag {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.multimedia-all-link {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.multimedia-all-link:hover {
  opacity: 1;
}

.multimedia-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 3;
}

.multimedia-badge.video-badge {
  background: rgba(220, 38, 38, 0.85);
}

/* 8. Günün Okur Anketi */
.home-interactive-section {
  margin-top: 36px;
  margin-bottom: 30px;
}

.interactive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.interactive-grid.single-column {
  grid-template-columns: 1fr;
}

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

.newsletter-box {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 12px;
  padding: 24px;
  color: #ffffff;
  display: flex;
  gap: 18px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.newsletter-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.newsletter-content {
  flex: 1;
}

.newsletter-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.newsletter-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 14px 0;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 13px;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  border-color: #38bdf8;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  padding: 10px 18px;
  background: #38bdf8;
  color: #0f172a;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-btn:hover {
  background: #7dd3fc;
  transform: translateY(-1px);
}

.newsletter-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.newsletter-msg {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 10px;
  animation: fadeInDown 0.3s ease-out;
}

.newsletter-msg.success {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10b981;
  color: #a7f3d0;
}

.newsletter-msg.error {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  color: #fca5a5;
}

.newsletter-privacy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

.daily-poll-box {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.poll-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.poll-badge {
  font-size: 11px;
  font-weight: 800;
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

.poll-votes-count {
  font-size: 12px;
  color: var(--text-muted);
}

.poll-question {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* Radio Selection Styles */
.poll-radio-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.poll-radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-main);
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.poll-radio-card:hover {
  border-color: var(--primary);
  background: rgba(220, 38, 38, 0.04);
}

.poll-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.poll-radio-custom {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.poll-radio-card input[type="radio"]:checked ~ .poll-radio-custom {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: inset 0 0 0 3px #ffffff;
}

.poll-radio-card:has(input[type="radio"]:checked) {
  border-color: var(--primary);
  background: rgba(220, 38, 38, 0.06);
}

.poll-radio-text {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}

/* Results State */
.poll-option-item.is-user-choice {
  background: rgba(5, 150, 105, 0.05);
  padding: 6px 10px;
  border-radius: 6px;
  border-left: 3px solid #059669;
}

.user-voted-badge {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}

.poll-status-tag {
  font-size: 12px;
  font-weight: 600;
}

.poll-status-tag.success {
  color: #059669;
}

.poll-status-tag.closed {
  color: #d97706;
}

.poll-msg {
  margin-top: 10px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
}

.poll-msg.error {
  background: #fee2e2;
  color: #b91c1c;
}

.poll-msg.success {
  background: #dcfce7;
  color: #15803d;
}

.interactive-grid.single-column {
  grid-template-columns: 1fr !important;
  max-width: 760px;
  margin: 0 auto;
}

.poll-option-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.poll-opt-name {
  display: flex;
  align-items: center;
}

.poll-percent {
  font-weight: 700;
  color: var(--text-main);
}

.poll-progress-track {
  width: 100%;
  height: 8px;
  background: var(--bg-main);
  border-radius: 4px;
  overflow: hidden;
}

.poll-progress-bar {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.poll-footer {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.poll-vote-btn {
  padding: 8px 22px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.poll-vote-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Dark Mode Overrides for New Homepage Modules */
[data-theme="dark"] .daily-poll-box,
[data-theme="dark"] .local-news-card {
  background-color: var(--secondary-light);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .poll-radio-card {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .poll-radio-card:hover {
  background-color: rgba(220, 38, 38, 0.12);
  border-color: var(--primary);
}

[data-theme="dark"] .poll-radio-card:has(input[type="radio"]:checked) {
  background-color: rgba(220, 38, 38, 0.18);
  border-color: var(--primary);
}

[data-theme="dark"] .poll-progress-track {
  background-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .poll-option-item.is-user-choice {
  background-color: rgba(5, 150, 105, 0.15);
}

[data-theme="dark"] .columnist-card-top {
  background-color: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .district-pill {
  background-color: var(--secondary-light);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .district-pill:hover,
[data-theme="dark"] .district-pill.active {
  background-color: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

[data-theme="dark"] .latest-news-footer {
  background-color: var(--secondary-light);
  border-color: rgba(255, 255, 255, 0.08);
}


[data-theme="dark"] .infinite-feed-badge {
  background: rgba(200, 16, 46, 0.2);
  border-color: rgba(200, 16, 46, 0.4);
}

/* Responsive Styles for Infinite Feed */
@media (max-width: 640px) {
  .home-infinite-feed-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-feed-card {
    border-radius: 10px;
  }
  .home-feed-title {
    font-size: 15px;
  }
  .home-load-more-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ==========================================================================
   AYDIN 17 İLÇE VİTRİNİ & WHATSAPP İHBAR HATTI & SPOR SEKMELERİ
   ========================================================================== */

/* Header Top Right & WhatsApp Button */
.header-top-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-whatsapp-tip-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
}

.header-whatsapp-tip-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.45);
}

/* Floating WhatsApp Tip Button */
.whatsapp-float-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
}

.whatsapp-float-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-float-btn:hover {
  transform: scale(1.08);
}

.whatsapp-float-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: waPulse 2s infinite ease-out;
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 68px;
  background: #0f172a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.25s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #0f172a;
}

.whatsapp-float-btn:hover .whatsapp-float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* 17 İlçe Yatay Sekmeler */
.local-district-pills-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 4px;
}

.local-district-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
}

.district-pill {
  background: var(--bg-main);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-family: inherit;
}

.district-pill:hover,
.district-pill.active {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}

/* Fade in animation for district cards */
.fade-in-card {
  animation: cardFadeIn 0.35s ease forwards;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sports Standings Multi-Tab Widget */
.sports-widget .widget-title {
  color: var(--secondary, #0f172a);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--primary, #e11d48);
  padding-bottom: 8px;
  margin-bottom: 14px;
}

[data-theme="dark"] .sports-widget .widget-title {
  color: #f8fafc;
}

.sports-widget-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.sports-tab-buttons {
  display: flex;
  gap: 4px;
  background: var(--bg-main);
  padding: 3px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.sports-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 5px 4px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  font-family: inherit;
}

.sports-tab-btn.active {
  background: var(--bg-white);
  color: var(--secondary);
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .sports-tab-buttons {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .sports-tab-btn.active {
  background: var(--secondary-light);
  color: #ffffff;
}

.sports-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.sports-table th {
  padding: 8px 4px;
  border-bottom: 2px solid var(--border-color);
  color: var(--secondary, #0f172a);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sports-table td {
  padding: 8px 4px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}

.sports-table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] .sports-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.rank-num {
  font-weight: 800;
  width: 24px;
  font-size: 12px;
  color: var(--text-muted);
}

.rank-champions .rank-num {
  color: #10b981;
}

.rank-europa .rank-num {
  color: #3b82f6;
}

.rank-conference .rank-num {
  color: #f59e0b;
}

.rank-relegation .rank-num {
  color: #ef4444;
}

.team-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-logo-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.team-name {
  font-weight: 600;
  color: var(--secondary, #0f172a);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}

.text-center {
  text-align: center;
}

.font-bold {
  font-weight: 800;
  color: var(--secondary, #0f172a);
}

[data-theme="dark"] .team-name,
[data-theme="dark"] .font-bold,
[data-theme="dark"] .sports-table th {
  color: #ffffff;
}

.sports-table-loading {
  text-align: center;
  padding: 20px 0;
  color: var(--text-muted);
  font-size: 13px;
}



