@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@600;700;800;900&display=swap');

/* ==========================================================================
   Blink Haber Pro - Klasik Türk Haber Portalı CSS (Modern Tipografi Sürümü)
   ========================================================================== */

:root {
  --red: #e30613;
  --red-dark: #c40410;
  --red-bg: #fef2f2;
  --dark: #111827;
  --text: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --bg: #f3f4f6;
  --white: #ffffff;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.05);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --max-w: 1200px;
}

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

html {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .site-logo, .nav-link, .section-title, .hero-slide-title {
  font-family: var(--font-heading);
}

body { overflow-x: hidden; }

a { color: var(--text); text-decoration: none; transition: color .15s; }
a:hover { color: var(--red); }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 12px; }

/* ── TOP RED INFO BAR ── */
.top-red-bar {
  background: var(--red);
  color: #fff;
  font-size: 11.5px;
  padding: 4px 0;
  letter-spacing: .2px;
}
.top-red-bar a { color: #fff; }
.top-red-bar a:hover { color: #fecaca; }

/* ── FINANCE TICKER ── */
.finance-bar {
  background: #1a1a1a;
  color: #ccc;
  font-size: 11.5px;
  padding: 5px 0;
  border-bottom: 1px solid #333;
}
.finance-bar-inner { display: flex; align-items: center; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.finance-items { display: flex; align-items: center; gap: 16px; white-space: nowrap; }
.finance-item { display: flex; align-items: center; gap: 4px; }
.finance-item .name { color: #aaa; font-weight: 600; }
.finance-item .val { color: #fff; font-weight: 700; }
.finance-item .change { font-size: 10.5px; font-weight: 700; padding: 1px 4px; border-radius: 2px; }
.finance-item .change.up { color: #4ade80; }
.finance-item .change.down { color: #f87171; }

/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-main-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.site-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #0f172a;
  text-transform: uppercase;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer !important;
  user-select: none;
}
.site-logo:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}
.site-logo .highlight {
  color: #e30613;
}
.site-logo .logo-second {
  color: #0f172a;
}

.main-nav { 
  display: flex; 
  align-items: center; 
  gap: 2px; 
}
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-link {
  font-weight: 700;
  font-size: 12.5px;
  color: #1e293b;
  text-transform: uppercase;
  padding: 8px 10px;
  position: relative;
  letter-spacing: .3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  border-radius: 6px;
  transition: all 0.15s ease;
}
.nav-link .nav-icon {
  font-size: 13px;
  line-height: 1;
}
.nav-link .nav-chevron {
  transition: transform 0.2s ease;
  color: #94a3b8;
}
.nav-item-dropdown:hover > .nav-link {
  color: var(--red);
  background: #fef2f2;
}
.nav-item-dropdown:hover > .nav-link .nav-chevron {
  transform: rotate(180deg);
  color: var(--red);
}
.nav-link.active {
  color: var(--red);
  font-weight: 800;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* ── Modern Hover Dropdown Menus ── */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 120;
}
.nav-item-dropdown:hover > .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-header {
  padding: 6px 14px 8px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 4px;
}
.nav-dropdown-header a {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-decoration: none;
}
.nav-dropdown-list {
  display: flex;
  flex-direction: column;
  padding: 2px 6px;
}
.nav-dropdown-link {
  padding: 7px 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}
.nav-dropdown-bullet {
  color: #cbd5e1;
  font-size: 14px;
}
.nav-dropdown-link:hover, .nav-dropdown-link.active {
  background: #fef2f2;
  color: var(--red);
  transform: translateX(3px);
}
.nav-dropdown-link:hover .nav-dropdown-bullet {
  color: var(--red);
}

/* ── "Daha Fazla" Mega Dropdown Menu ── */
.nav-more-dropdown .nav-more-menu {
  left: auto;
  right: 0;
  min-width: 540px;
  padding: 16px;
}
.nav-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.nav-more-group {
  display: flex;
  flex-direction: column;
}
.nav-more-group-title {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-more-group-title:hover {
  color: var(--red);
}
.nav-more-sublist {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-left: 2px solid #f1f5f9;
  padding-left: 8px;
}
.nav-more-sublink {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  padding: 2px 0;
  transition: color 0.15s;
}
.nav-more-sublink:hover {
  color: var(--red);
}
.nav-more-footer {
  border-top: 1px solid #f1f5f9;
  margin-top: 14px;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.nav-more-footer a {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
}
.nav-more-footer a:hover {
  color: var(--red);
}

/* ── Mobile Navigation Drawer ── */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 88vw;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0,0,0,0.18);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer.active {
  right: 0;
}
.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid #e2e8f0;
}
.mobile-drawer-logo {
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.3px;
}
.mobile-drawer-close {
  background: transparent;
  border: none;
  font-size: 26px;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.mobile-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mobile-nav-item {
  border-radius: 8px;
  overflow: hidden;
  transition: background 0.15s ease;
}
.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-link {
  font-weight: 700;
  font-size: 13.5px;
  color: #1e293b;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex: 1;
  border-radius: 6px;
  transition: all 0.15s ease;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: #fef2f2;
  color: var(--red);
}
.mobile-nav-link.highlight {
  color: var(--red);
  font-weight: 800;
}
.mobile-cat-icon {
  font-size: 15px;
}
.mobile-acc-toggle {
  background: transparent;
  border: none;
  padding: 8px 10px;
  cursor: pointer;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}
.mobile-nav-item.open .mobile-acc-toggle {
  transform: rotate(180deg);
  color: var(--red);
}
.mobile-sub-menu {
  display: none;
  padding: 4px 10px 8px 34px;
  background: #f8fafc;
  border-radius: 0 0 6px 6px;
  border-left: 2px solid #e2e8f0;
  margin: 0 4px 4px 10px;
}
.mobile-nav-item.open .mobile-sub-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-sub-link {
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
  padding: 4px 0;
  text-decoration: none;
  transition: color 0.15s ease;
}
.mobile-sub-link:hover {
  color: var(--red);
}

.header-actions { display: flex; align-items: center; gap: 8px; }
.search-toggle-btn, .mobile-menu-btn {
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 6px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.search-toggle-btn:hover, .mobile-menu-btn:hover { border-color: var(--red); color: var(--red); }
.mobile-menu-btn { display: none; }
.login-btn {
  background: var(--red);
  color: #fff !important;
  padding: 5px 14px;
  font-weight: 700;
  font-size: 12px;
  border-radius: 3px;
}
.login-btn:hover { background: var(--red-dark); }

/* ── ULTRA MODERN CORPORATE SECTION HEADERS ── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
  margin-top: 28px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
}
.section-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #e30613 0%, #dc2626 100%);
  border-radius: 3px;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  color: #0f172a;
  background: transparent;
  padding: 0;
  margin: 0;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #e30613;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(227, 6, 19, 0.5);
}
.section-header.dark .section-title::before { background: #0f172a; box-shadow: 0 0 8px rgba(15, 23, 42, 0.4); }
.section-header.dark::after { background: linear-gradient(90deg, #0f172a 0%, #334155 100%); }
.section-header.green .section-title::before { background: #16a34a; box-shadow: 0 0 8px rgba(22, 163, 74, 0.4); }
.section-header.green::after { background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%); }

/* ── BREAKING NEWS TICKER (SON DAKİKA KAYAN BAR) ── */
.breaking-ticker-bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-top: 16px;
  margin-bottom: 16px;
  height: 48px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}
.ticker-badge {
  background: linear-gradient(135deg, #e30613 0%, #dc2626 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  box-shadow: 4px 0 12px rgba(227, 6, 19, 0.2);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-ring 1.5s infinite ease-in-out;
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
  100% { transform: scale(0.8); opacity: 1; }
}
.ticker-content-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  will-change: transform;
}
.ticker-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e293b;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 0 24px;
  transition: color 0.15s ease;
}
.ticker-item:hover {
  color: #e30613;
}
.ticker-time {
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ticker-title {
  color: #0f172a;
  font-weight: 600;
}
.ticker-nav-btns {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  background: #ffffff;
  z-index: 2;
  border-left: 1px solid #f1f5f9;
  height: 100%;
}
.ticker-nav-prev, .ticker-nav-next {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}
.ticker-nav-prev:hover, .ticker-nav-next:hover {
  background: #e30613;
  color: #ffffff;
  border-color: #e30613;
}

/* ── MODERN ULTRA HERO SECTION ── */
.hero-section {
  margin-top: 0px;
}
.hero-slider-wrapper {
  display: grid;
  grid-template-columns: 66fr 34fr;
  gap: 16px;
  background: transparent;
  border: none;
}
@media (max-width: 991px) {
  .hero-slider-wrapper {
    grid-template-columns: 1fr;
  }
}
.hero-main-slide {
  position: relative;
  aspect-ratio: 16 / 9.5;
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  border: 1px solid #e2e8f0;
}
.hero-slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s cubic-bezier(0.4, 0, 0.2, 1), visibility .45s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide-item.active {
  opacity: 1;
  visibility: visible;
}
.hero-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.hero-slide-item.active img {
  transform: scale(1.04);
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0) 25%, rgba(15, 23, 42, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 24px 24px;
}
.hero-category-tag {
  background: linear-gradient(135deg, #e30613 0%, #dc2626 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.35);
  width: fit-content;
}
.hero-slide-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .hero-slide-title { font-size: 18px; }
}

/* Hero Slide Prev/Next Controls */
.hero-controls {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 5;
}
.hero-prev-btn, .hero-next-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  opacity: 0.8;
  transition: opacity 0.15s ease;
}
.hero-prev-btn:hover, .hero-next-btn:hover {
  opacity: 1;
}
.hero-counter-badge {
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* Hero Right Side List (Modernized) */
.hero-thumb-list {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.hero-thumb-header {
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-thumb-header-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero-thumb-scroll {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  max-height: 380px;
  padding-right: 2px;
}
.hero-thumb-scroll::-webkit-scrollbar {
  width: 4px;
}
.hero-thumb-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.hero-thumb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.hero-thumb-item:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}
.hero-thumb-item.active {
  background: #eff6ff;
  border-color: #bfdbfe;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12);
}
.hero-thumb-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 12px;
  width: 26px;
  height: 26px;
  background: #e2e8f0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.hero-thumb-item.active .hero-thumb-num {
  background: linear-gradient(135deg, #e30613 0%, #dc2626 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(227, 6, 19, 0.35);
}
.hero-thumb-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s ease;
}
.hero-thumb-item.active .hero-thumb-title {
  color: #0f172a;
  font-weight: 800;
}

/* ── ULTRA MODERN NEWS CARDS SYSTEM ── */
.news-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}
.news-card .card-img-wrap {
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
  position: relative;
  background: #0f172a;
}
.news-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.news-card:hover .card-img-wrap img {
  transform: scale(1.05);
}
.news-card .card-body {
  padding: 14px 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-card .card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.38;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  transition: color 0.15s ease;
}
.news-card:hover .card-title {
  color: #e30613;
}

/* ── BIG CARD ── */
.card-big {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
}
.card-big:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}
.card-big .card-img-wrap {
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
  position: relative;
  background: #0f172a;
}
.card-big .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.card-big:hover .card-img-wrap img {
  transform: scale(1.05);
}
.card-big .card-body {
  padding: 16px 18px;
}
.card-big .card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
  margin-bottom: 6px;
  transition: color 0.15s ease;
}
.card-big:hover .card-title {
  color: #e30613;
}
.card-big .card-excerpt {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* ── HORIZONTAL LIST CARD ── */
.horizontal-card {
  background: #ffffff;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}
.horizontal-card:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}
.horizontal-card .card-img-wrap {
  width: 105px;
  height: 72px;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: #0f172a;
}
.horizontal-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.horizontal-card:hover .card-img-wrap img {
  transform: scale(1.06);
}
.horizontal-card .card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #1e293b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  transition: color 0.15s ease;
}
.horizontal-card:hover .card-title {
  color: #e30613;
}

/* ── TRIPLE WIDGET GRID (SAĞLIK, DÜNYA, TEKNOLOJİ) ── */
.triple-widget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .triple-widget-grid {
    grid-template-columns: 1fr;
  }
}
.widget-column {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 16px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s ease;
}
.widget-column:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}
.widget-column .section-header {
  margin-top: 0;
  margin-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 8px;
}

.widget-main-post {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  transition: all 0.25s ease;
}
.widget-main-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}
.widget-main-post .card-img-wrap {
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
  background: #0f172a;
}
.widget-main-post .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.widget-main-post:hover .card-img-wrap img {
  transform: scale(1.05);
}
.widget-main-post .card-body {
  padding: 12px 14px;
}
.widget-main-post h3, .widget-main-post .card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
  margin: 0;
  transition: color 0.15s ease;
}
.widget-main-post:hover h3, .widget-main-post:hover .card-title {
  color: #e30613;
}

.widget-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── TEXT-ONLY LIST ITEM (resimsiz haber listesi) ── */
.text-list-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 6px 0;
  border-bottom: 1px dotted var(--border);
}
.text-list-item .list-num {
  font-size: 16px;
  font-weight: 900;
  color: var(--red);
  min-width: 20px;
}
.text-list-item h4 {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}
.text-list-item:hover h4 { color: var(--red); }

/* ── GRIDS ── */
.grid-4-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.grid-3-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.main-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 20px; }

/* ── SIDEBAR WIDGETS ── */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.sidebar-widget-header {
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.sidebar-widget-body { padding: 10px; }

/* ── COLUMNISTS ── */
.columnists-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.columnist-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.columnist-card:hover { border-color: var(--red); }
.columnist-avatar-initial {
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.columnist-avatar { border-radius: 50%; border: 2px solid var(--red); object-fit: cover; flex-shrink: 0; }
.columnist-info .author-name { font-size: 11px; font-weight: 800; color: var(--red); text-transform: uppercase; }
.columnist-info .column-title { font-size: 12px; font-weight: 600; line-height: 1.3; color: var(--text); margin-top: 2px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── SUPERLIG TABLE ── */
.superlig-widget { background: var(--white); border: 1px solid var(--border); }
.superlig-header {
  background: #16a34a;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  text-transform: uppercase;
}
.superlig-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.superlig-table th {
  text-align: center;
  padding: 5px 3px;
  background: #f5f5f5;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 11px;
  border-bottom: 1px solid var(--border);
}
.superlig-table td {
  text-align: center;
  padding: 5px 3px;
  border-bottom: 1px solid var(--border-light);
  font-size: 12px;
}
.superlig-table td.team { text-align: left; display: flex; align-items: center; gap: 5px; font-weight: 600; }
.superlig-table .team-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.superlig-table td.pos { font-weight: 700; color: var(--text-muted); }
.superlig-table td.pts { font-weight: 800; color: var(--red); }

/* ── MAGAZIN (DARK SECTION) ── */
.magazin-wrapper {
  background: #1a1a1a;
  padding: 16px;
  color: #fff;
}
.magazin-wrapper .section-header { border-bottom-color: #444; margin-top: 0; }
.magazin-grid { display: grid; grid-template-columns: 55fr 45fr; gap: 12px; }
.magazin-main-card { position: relative; overflow: hidden; aspect-ratio: 16 / 9; }
.magazin-main-card img { width: 100%; height: 100%; }
.magazin-overlay {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  padding: 20px 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,.9), transparent);
}
.magazin-overlay h3 { font-size: 16px; font-weight: 800; color: #fff; }
.magazin-list { display: flex; flex-direction: column; gap: 0; }
.magazin-list-item {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #333;
  align-items: center;
}
.magazin-list-item .thumb { width: 90px; height: 58px; overflow: hidden; flex-shrink: 0; }
.magazin-list-item h4 { font-size: 12px; font-weight: 600; color: #ddd; line-height: 1.35; }
.magazin-list-item:hover h4 { color: #fff; }

/* ── REELS ── */
.reels-section {
  margin-top: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px;
}
.reels-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.reels-badge { font-size: 12px; font-weight: 800; color: var(--red); text-transform: uppercase; }
.reels-sub { font-size: 11px; color: var(--text-muted); }
.reels-container { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.reel-card { width: 120px; flex-shrink: 0; cursor: pointer; }
.reel-card:hover { opacity: .9; }
.reel-thumb-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--red);
  border-radius: 6px;
}
.reel-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; }
.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: rgba(227,6,19,.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-cat {
  position: absolute;
  top: 4px;
  left: 4px;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 2px;
  text-transform: uppercase;
}
.reel-title { font-size: 11px; font-weight: 600; line-height: 1.3; color: var(--text); margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── REELS MODAL ── */
.reels-modal { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; }
.reels-modal.open { display: flex; }
.reels-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.92); }
.reels-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  height: 85vh;
  max-height: 700px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.reels-modal-content video { width: 100%; height: 100%; object-fit: cover; }
.reels-modal-close {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  background: rgba(0,0,0,.5);
  color: #fff;
  border: none;
  font-size: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reels-modal-info {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  padding: 20px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.9), transparent);
  color: #fff;
}
.reels-modal-info h3 { font-size: 14px; font-weight: 700; margin-top: 4px; }
.reels-modal-nav { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); z-index: 15; display: flex; flex-direction: column; gap: 10px; }
.reels-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reels-nav-btn:hover { background: var(--red); border-color: var(--red); }

/* ── ARTICLE READING PAGE (KLASİK & MODERN HABER DETAY) ── */
.article-reading-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.article-main-column {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}
.breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-secondary); font-weight: 500; }
.breadcrumb a:hover { color: var(--red); }

.article-header { margin-bottom: 20px; }
.article-category-badge {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: .4px;
}
.article-title-heading {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.article-lead-excerpt {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: #374151;
  margin-bottom: 16px;
  border-left: 3px solid var(--red);
  padding-left: 12px;
}

.article-author-metabar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.article-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-author-name {
  font-weight: 700;
  font-size: 13px;
  color: #111827;
  display: block;
}
.article-date-time {
  font-size: 11.5px;
  color: var(--text-muted);
}
.article-actions-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-audio-listen {
  background: #111827;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .15s;
}
.btn-audio-listen:hover { background: var(--red); }

.article-main-image {
  margin-bottom: 24px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.article-main-image img { width: 100%; height: auto; max-height: 480px; object-fit: cover; }
.article-image-caption {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 6px;
  text-align: center;
  font-style: italic;
}

/* Article Body Typography */
.article-body-content {
  font-size: 16.5px;
  line-height: 1.75;
  color: #1f2937;
  font-family: var(--font);
}
.article-body-content p { margin-bottom: 18px; }
.article-body-content h2 {
  font-size: 21px;
  font-weight: 800;
  color: #111827;
  margin: 28px 0 14px;
  border-left: 4px solid var(--red);
  padding-left: 12px;
  letter-spacing: -0.01em;
}
.article-body-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 22px 0 10px;
}
.article-body-content blockquote {
  background: #f9fafb;
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  font-style: italic;
  font-weight: 500;
  color: #374151;
  border-radius: 0 8px 8px 0;
  margin: 22px 0;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}
.article-body-content ul, .article-body-content ol {
  margin: 16px 0;
  padding-left: 24px;
}
.article-body-content ul li { list-style: disc; margin-bottom: 6px; }
.article-body-content ol li { list-style: decimal; margin-bottom: 6px; }

/* In-Article Recommendation Box */
.in-article-recommend {
  background: #fef2f2;
  border-left: 4px solid var(--red);
  padding: 12px 16px;
  margin: 24px 0;
  border-radius: 0 6px 6px 0;
}
.in-article-recommend label { font-size: 11px; font-weight: 800; color: var(--red); text-transform: uppercase; display: block; }
.in-article-recommend a { font-size: 14px; font-weight: 700; color: #111827; }
.in-article-recommend a:hover { color: var(--red); }

/* ── LIVE AJAX SEARCH MODAL ── */
.live-search-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}
.live-search-modal.open { display: flex; }
.live-search-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(4px);
}
.live-search-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: 1px solid var(--border);
}
.live-search-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}
.live-search-header input {
  flex-grow: 1;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text);
}
.live-search-close {
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
.live-search-close:hover { color: var(--red); }

.live-search-results {
  max-height: 400px;
  overflow-y: auto;
  padding: 12px;
}
.search-result-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 6px;
  transition: background .15s;
}
.search-result-item:hover { background: #f9fafb; }
.search-result-item img {
  width: 80px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.search-result-item .title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 2px;
}
/* ── AUTH MODAL (GİRİŞ YAP & KAYIT OL) ── */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.auth-modal.open { display: flex; }
.auth-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(4px);
}
.auth-modal-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  padding: 24px;
  border: 1px solid var(--border);
}
.auth-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
}
.auth-modal-close:hover { color: var(--red); }
.auth-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 20px;
}
.auth-tab-btn {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.auth-tab-btn.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.triple-widget-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.widget-column {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px;
}
.widget-column .widget-main-post { margin-bottom: 10px; }
.widget-column .widget-main-post img { aspect-ratio: 16 / 9; margin-bottom: 6px; }
.widget-column .widget-main-post h3 { font-size: 14px; font-weight: 700; line-height: 1.3; }
.widget-list { display: flex; flex-direction: column; gap: 0; }
.widget-list-item {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
  border-top: 1px dotted var(--border);
}
.widget-list-item .thumb { width: 65px; height: 42px; overflow: hidden; flex-shrink: 0; }
.widget-list-item h4 { font-size: 12px; font-weight: 600; line-height: 1.3; color: var(--text); }

/* ── AUDIO STICKY BAR ── */
.audio-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: #1a1a1a;
  color: #fff;
  z-index: 999;
  transform: translateY(100%);
  transition: transform .3s;
  box-shadow: 0 -2px 10px rgba(0,0,0,.2);
}
.audio-sticky-bar.visible { transform: translateY(0); }

/* ── ULTRA MODERN ROUNDED FLOATING OVAL FOOTER (LEADEROS STYLE) ── */
.site-footer {
  background: transparent;
  margin-top: 45px;
  margin-bottom: 40px;
  padding: 0;
  border-top: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  padding: 40px 48px 24px;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 4.5fr 2.5fr 2.5fr 2.5fr;
  gap: 35px;
  margin-bottom: 30px;
}
.footer-logo {
  font-size: 24px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-logo span {
  color: #e30613;
}
.brand-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
}
.footer-pill-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge-pill {
  background: #f1f5f9;
  color: #475569;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  letter-spacing: 0.2px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
.footer-links a {
  color: #475569;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
}
.footer-links a:hover {
  color: #e30613;
  transform: translateX(4px);
}
.footer-bottom-line {
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #64748b;
}
.footer-bottom-line strong {
  color: #0f172a;
}

/* ── RESPONSIVE AD BANNERS ENGINE ── */
.sticky-rail-ad {
  position: fixed;
  top: 180px;
  width: 160px;
  height: 600px;
  z-index: 80;
}
.rail-left { left: 15px; }
.rail-right { right: 15px; }

/* Hide desktop 160x600 skyscraper side ads on screens smaller than 1400px so they NEVER overlap content or mobile screens */
@media (max-width: 1400px) {
  .sticky-rail-ad,
  .rail-left,
  .rail-right {
    display: none !important;
  }
}

/* Responsive In-Content & Header Ad Placeholders for Mobile */
.ad-slot-container,
.blink-ad-wrapper,
.in-article-ad-box,
.ad-box {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
.ad-slot-container img,
.blink-ad-wrapper img,
.in-article-ad-box img,
.ad-box img {
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

/* ── MOBILE OFF-CANVAS NAVIGATION DRAWER ── */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 290px;
  max-width: 85vw;
  background: #ffffff;
  z-index: 99999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
}
.mobile-drawer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}
.mobile-drawer-close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}
.mobile-drawer-close:hover {
  color: #e30613;
}

.mobile-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}
.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-link {
  display: block;
  padding: 10px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: #fef2f2;
  color: #e30613;
}
.mobile-nav-link.highlight {
  color: #2563eb;
}
.mobile-nav-link.highlight:hover {
  background: #eff6ff;
  color: #1d4ed8;
}

.mobile-drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}

/* ── KEŞFET PAGE (DISCOVER & SOCIAL FEED) ── */
.kesfet-layout-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 24px;
}

.feed-item-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
}
.feed-item-card:hover {
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

/* ── COMPLETE ULTRA RESPONSIVE ENGINE (MOBILE & TABLET) ── */
@media (max-width: 1024px) {
  .hero-slider-wrapper { grid-template-columns: 1fr !important; }
  .main-with-sidebar { grid-template-columns: 1fr !important; }
  .kesfet-layout-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .contact-page-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .feed-item-card { padding: 16px !important; }
  .grid-4-col { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
  .triple-widget-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
  .article-reading-layout { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .container { padding: 0 14px !important; }
  .top-red-bar { font-size: 11px !important; padding: 8px 0 !important; }
  .top-red-bar .container { flex-direction: column !important; gap: 6px !important; text-align: center !important; }
  .finance-bar { overflow-x: auto !important; -webkit-overflow-scrolling: touch !important; padding: 6px 0 !important; }
  .finance-items { display: flex !important; flex-wrap: nowrap !important; gap: 16px !important; }

  .site-header { padding: 12px 0 !important; }
  .main-nav { display: none !important; }
  .mobile-menu-btn { display: flex !important; }

  .hero-main-slide { aspect-ratio: 16 / 10 !important; border-radius: 12px !important; }
  .hero-slide-overlay { padding: 18px 14px 14px !important; }
  .hero-slide-title { font-size: 17px !important; line-height: 1.3 !important; }

  .grid-4-col { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .grid-3-col, .grid-2-col { grid-template-columns: 1fr !important; gap: 12px !important; }
  .columnists-grid { grid-template-columns: 1fr !important; }

  .card-big .card-title { font-size: 15px !important; }
  .news-card .card-title { font-size: 13px !important; }

  .footer-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .footer-card { padding: 24px 20px 16px !important; border-radius: 18px !important; }
  .footer-bottom-line { flex-direction: column !important; gap: 8px !important; text-align: center !important; }

  #blinkPushBanner {
    bottom: 12px !important;
    left: 12px !important;
    right: 12px !important;
    max-width: none !important;
    padding: 10px 14px !important;
  }
}

@media (max-width: 576px) {
  .grid-4-col { grid-template-columns: 1fr !important; }
  .horizontal-card { padding: 8px 10px !important; }
  .horizontal-card .card-img-wrap { width: 90px !important; height: 62px !important; border-radius: 6px !important; }
  .horizontal-card .card-title { font-size: 12.5px !important; }

  .breaking-ticker-bar { height: auto !important; padding: 6px 0 !important; flex-wrap: wrap !important; }
  .ticker-badge { height: 32px !important; font-size: 11px !important; border-radius: 6px !important; margin: 4px 8px !important; }
  .ticker-content-wrapper { padding: 4px 8px !important; }
  .ticker-nav-btns { display: none !important; }

  .auth-modal-box { width: 92% !important; padding: 18px !important; }
  .live-search-box { width: 94% !important; }
}
