/* ==========================================================================
   B10.media Modern Card-Based News UI Framework
   Refined Clean & Thin Typography Reform (Strictly NO Heavy Weights)
   All typography, paddings & margins use REM units (Strictly NO PX)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables & Theme Definitions */
:root,
[data-theme="light"] {
  --bg-primary: #F0F2F5;
  --bg-surface: rgba(255, 255, 255, 0.45);
  --bg-surface-solid: #FFFFFF;
  --bg-surface-hover: rgba(255, 255, 255, 0.85);

  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;

  --border-color: transparent;
  --divider-color: rgba(0, 0, 0, 0.08);

  --accent-color: #C8102E;
  /* Haber sitelerine yakışır Asil Derin Haber Kırmızısı */
  --accent-hover: #990011;
  --success-color: #10B981;
  --danger-color: #C8102E;

  --shadow-sm: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.02);
  --shadow-md: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.04);

  --radius-sm: 0.25rem;
  --radius-md: 0.25rem;
  --radius-lg: 0.25rem;
  --radius-pill: 0.25rem;

  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

:root[data-theme="dark"] {
  --bg-primary: #0F1115;
  --bg-surface: rgba(20, 23, 30, 0.55);
  --bg-surface-solid: #161922;
  --bg-surface-hover: rgba(28, 32, 42, 0.85);

  --text-primary: #F8FAFC;
  --text-secondary: #CBD5E1;
  --text-muted: #64748B;

  --border-color: transparent;
  --divider-color: rgba(255, 255, 255, 0.08);

  --accent-color: #C8102E;
  --accent-hover: #990011;
  --success-color: #10B981;
  --danger-color: #C8102E;

  --shadow-sm: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.15);
  --shadow-md: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.25);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}



body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

.container {
  width: 100%;
  max-width: 82rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 10;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

/* ==========================================================================
   Header Bar (Zengin Duruş & Kaydırılınca Küçülen Sticky Engine)
   ========================================================================== */
.site-header-wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 1.25rem;
}

.header-b10-bar {
  position: relative;
  background: var(--bg-surface-solid);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0.25rem;
  box-shadow: var(--shadow-sm);
  padding: 0.875rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: none;
  margin-bottom: 1.25rem;
}

/* Yaratıcı Sağ Alt Sarkıt Yüzen Cam Hava Durumu Kulakçığı */
.header-floating-weather-tag {
  position: absolute;
  right: 2.25rem;
  top: 100%;
  margin-top: 0;
  background: var(--bg-surface-solid);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0 0 0.25rem 0.25rem;
  padding: 0.3125rem 0.9375rem 0.375rem 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.06);
  z-index: 95;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: none;
}

:root[data-theme="dark"] .header-floating-weather-tag {
  background: var(--bg-surface-solid);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}

/* Sayfa Kaydırıldığında İçeriği Kapatmaması İçin Zarafetle Yukarı Süzülüp Gizlenme */
.header-b10-bar.scrolled .header-floating-weather-tag {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.75rem);
}

.header-floating-weather-tag .weather-city {
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 0.71875rem;
  letter-spacing: 0.04em;
}

.header-floating-weather-tag .weather-temp-group {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}

.header-floating-weather-tag .weather-icon-sun {
  color: #F59E0B;
  font-size: 0.875rem;
}

.header-floating-weather-tag .weather-temp {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.8125rem;
}

.header-floating-weather-tag .weather-divider {
  width: 0.0625rem;
  height: 0.875rem;
  background-color: var(--divider-color);
}

.header-floating-weather-tag .weather-detail-item {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.75rem;
  color: var(--text-primary);
  font-weight: 600;
}

.header-floating-weather-tag .weather-detail-item i {
  font-size: 0.71875rem;
  color: var(--text-secondary);
}

.header-floating-weather-tag .weather-detail-item small {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-secondary);
}

:root[data-theme="dark"] .header-b10-bar {
  background: var(--bg-surface-solid);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}

.header-b10-bar.scrolled {
  padding: 0.35rem 1.5rem;
  background: var(--bg-surface-solid);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.12);
}

:root[data-theme="dark"] .header-b10-bar.scrolled {
  background: var(--bg-surface-solid);
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.45);
}

.site-logo {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-transform: none !important;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo .logo-icon,
.site-logo-inline .logo-icon {
  color: var(--accent-color);
  fill: currentColor;
  margin-right: 0.25em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
}

.site-logo:hover .logo-icon {
  transform: none;
}

.header-b10-bar.scrolled .site-logo {
  font-size: 1.375rem;
}

.site-logo .logo-b10 {
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  font-size: 1em;
  line-height: 1;
  transition: font-size 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo .logo-dot {
  color: var(--accent-color);
  font-weight: 900;
  font-size: 1em;
  line-height: 1;
  transition: font-size 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo .logo-media {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68em;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: -0.01em;
  margin-left: 0.05em;
  line-height: 1;
  align-self: flex-end;
  margin-bottom: 0.05em;
  transition: font-size 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link-item {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--text-primary);
}

/* 3D Degrade AI Vision & Manifesto Interactive Button (Referans İkon & Renk Eşleşmesi) */
.ai-manifesto-btn {
  position: relative;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #1C1948 0%, #2A2665 50%, #3B368C 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 1rem rgba(42, 38, 101, 0.4), inset 0 0.0625rem 0.125rem rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
}

.ai-manifesto-btn:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0.5rem 1.5rem rgba(59, 54, 140, 0.65), inset 0 0.0625rem 0.125rem rgba(255, 255, 255, 0.6);
}

.ai-btn-icon {
  font-size: 1.3125rem;
  color: #FFFFFF;
  font-weight: 900;
}

.ai-btn-pulse-ring {
  position: absolute;
  top: -0.125rem;
  left: -0.125rem;
  right: -0.125rem;
  bottom: -0.125rem;
  border-radius: var(--radius-pill);
  border: 0.0625rem solid rgba(129, 140, 248, 0.6);
  animation: aiPulseRing 2.5s infinite cubic-bezier(0.45, 0, 0.55, 1);
  pointer-events: none;
}

@keyframes aiPulseRing {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.25);
    opacity: 0;
  }

  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

/* ==========================================================================
   B10.media Saf Cam Blur Mimarili Glassmorphic Onboarding Modal
   ========================================================================== */
.ai-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ai-modal-card-replica {
  position: relative;
  width: 100%;
  max-width: 38rem;
  /* Yatayda daha geniş & ferah görünüm */
  min-height: 34rem;
  background: var(--bg-surface);
  /* Sitemizin ana cam yüzey değişkeni */
  backdrop-filter: blur(2.5rem) saturate(1.8);
  -webkit-backdrop-filter: blur(2.5rem) saturate(1.8);
  border: none !important;
  /* Border kesinlikle kaldırıldı */
  border-radius: 0.25rem;
  box-shadow: 0 1.5rem 4.5rem rgba(0, 0, 0, 0.18);
  padding: 2.75rem 3.25rem 3rem 3.25rem;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: scale(0.92) translateY(1.5rem);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

:root[data-theme="dark"] .ai-modal-card-replica {
  background: rgba(20, 23, 30, 0.78);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.55);
}

.ai-modal-overlay.active .ai-modal-card-replica {
  transform: scale(1) translateY(0);
}

/* Üst Sağ Atla / Kapat Butonu (Yüksek Kontrastlı Okunabilir) */
.ai-replica-skip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.1875rem;
  margin-left: auto;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0.9;
  transition: all var(--transition-fast);
}

.ai-replica-skip-btn:hover {
  opacity: 1;
  color: var(--accent-color);
  transform: translateX(0.125rem);
}

.ai-replica-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.0rem;
  letter-spacing: -0.02em;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
}

/* Modal Başlığındaki Orijinal B10.media Logo Markup Stili */
.site-logo-inline {
  display: inline-flex;
  align-items: center;
}

.site-logo-inline .logo-icon {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 0.35rem;
  align-self: center;
}

.site-logo-inline .logo-b10 {
  font-weight: 900;
  color: var(--text-primary);
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.site-logo-inline .logo-dot {
  color: var(--accent-color);
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1;
}

.site-logo-inline .logo-media {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: -0.01em;
  line-height: 1;
  align-self: flex-end;
  margin-bottom: 0.1875rem;
}

/* Ortadaki Dev Dairesel 3D Amblem & Dönen Işık Halkası */
.ai-replica-badge-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 2.5rem 0;
}

/* 360 Derece Kesintisiz Dönen Büyüleyici Neon Işık Halkası */
.badge-glow-ring {
  position: absolute;
  width: 11.5rem;
  height: 11.5rem;
  border-radius: var(--radius-pill);
  background: conic-gradient(from 0deg, transparent 0%, #6366F1 30%, #EF4444 60%, transparent 100%);
  animation: rotateGlow 4s linear infinite;
  filter: blur(0.75rem);
  opacity: 0.6;
  pointer-events: none;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.ai-replica-badge-circle {
  position: relative;
  z-index: 2;
  width: 9.5rem;
  height: 9.5rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #1A164C 0%, #252068 50%, #352E90 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1.25rem 3rem rgba(37, 32, 104, 0.5), inset 0 0.125rem 0.25rem rgba(255, 255, 255, 0.4);
  border: none !important;
}

.ai-replica-badge-circle span {
  font-size: 4.5rem;
  color: #FFFFFF;
  font-weight: 900;
}

/* Metin Adımları (İnce & Kibar Tipografi) */
.ai-replica-content-body {
  position: relative;
  min-height: 7.5rem;
}

.ai-replica-step {
  display: none;
}

.ai-replica-step.active {
  display: block;
  animation: replicaFadeIn 0.4s ease;
}

@keyframes replicaFadeIn {
  from {
    opacity: 0;
    transform: translateX(0.5rem);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ai-replica-title {
  font-size: 2rem;
  font-weight: 600;
  /* Kalın değil, ince ve kibar tipografi */
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  text-align: left;
}

.ai-replica-text {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
  /* İnce ve ferah paragraf */
  line-height: 1.6;
  text-align: left;
}

/* Alt Bar & İndikatörler (Belirgin Kontrastlı) */
.ai-replica-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.ai-replica-dots {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.ai-replica-dots .dot-item {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: var(--radius-pill);
  background-color: var(--divider-color);
  border: 0.0625rem solid var(--text-muted);
  transition: all 0.3s ease;
  cursor: pointer;
}

.ai-replica-dots .dot-item.active {
  width: 1.5rem;
  background-color: var(--text-primary);
  border-color: var(--text-primary);
}

.ai-replica-next-btn {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: var(--radius-pill);
  background-color: var(--bg-surface-hover);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ai-replica-next-btn:hover {
  background-color: var(--text-primary);
  color: var(--bg-surface-solid);
  transform: scale(1.08);
}

/* Minimalist Micro Weather Pill Widget */
.header-weather-widget {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

:root[data-theme="dark"] .header-weather-widget {
  background: rgba(255, 255, 255, 0.08);
}

.header-weather-widget:hover {
  background: rgba(0, 0, 0, 0.07);
}

:root[data-theme="dark"] .header-weather-widget:hover {
  background: rgba(255, 255, 255, 0.14);
}

.weather-city {
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 0.6875rem;
  letter-spacing: 0.03em;
}

.weather-temp-group {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.weather-icon-sun {
  color: #F59E0B;
  font-size: 0.8125rem;
}

.weather-temp {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.78125rem;
}

.weather-divider {
  width: 0.0625rem;
  height: 0.75rem;
  background-color: var(--divider-color);
}

.weather-detail-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.71875rem;
  color: var(--text-muted);
  font-weight: 400;
}

.weather-detail-item i {
  font-size: 0.6875rem;
  color: var(--text-muted);
  opacity: 0.85;
}

.weather-detail-item small {
  font-size: 0.625rem;
}



.search-toggle-btn,
.theme-toggle-icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.search-toggle-btn:hover,
.theme-toggle-icon-btn:hover {
  background-color: rgba(0, 0, 0, 0.06);
  color: var(--text-primary);
}

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

/* ==========================================================================
   CANLI SON DAKİKA TICKER BANDI (3D Katmanlı & Tam Dikey Açık Zemin Dijital Saat)
   ========================================================================== */
.breaking-news-card-ticker {
  background: var(--bg-surface-solid);
  border-radius: 0.25rem;
  box-shadow: var(--shadow-sm);
  border: 0.0625rem solid var(--divider-color);
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  height: 2.75rem;
}

.breaking-badge-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #0F172A;
  color: #FFFFFF;
  padding: 0 1.25rem;
  height: 100%;
  border-radius: 0.25rem 0 0 0.25rem;
  font-size: 0.78125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  box-shadow: 0.25rem 0 0.75rem rgba(0, 0, 0, 0.22);
}

.breaking-clock-badge {
  font-family: 'Roboto Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary, #0F172A);
  background-color: var(--bg-surface, #F1F5F9);
  padding: 0 1rem;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: relative;
  z-index: 5;
  border-right: 0.0625rem solid var(--divider-color);
  flex-shrink: 0;
  box-shadow: inset 0.125rem 0 0.375rem rgba(0, 0, 0, 0.06);
}

:root[data-theme="dark"] .breaking-clock-badge {
  background-color: rgba(255, 255, 255, 0.06);
  color: #F8FAFC;
  border-right-color: rgba(255, 255, 255, 0.1);
}

.breaking-icon {
  font-size: 1.125rem !important;
  color: #38BDF8 !important;
  animation: pulseLightningCyan 3s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
}

@keyframes pulseLightningCyan {
  0% {
    opacity: 0.6;
    filter: drop-shadow(0 0 0 rgba(56, 189, 248, 0));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 0.45rem rgba(56, 189, 248, 0.9));
  }
  100% {
    opacity: 0.6;
    filter: drop-shadow(0 0 0 rgba(56, 189, 248, 0));
  }
}

.breaking-ticker-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  padding-left: 1rem;
}

.breaking-ticker-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.breaking-ticker-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease, visibility 0.35s;
}

.breaking-ticker-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.breaking-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  display: inline-block;
  will-change: transform;
  transition: color var(--transition-fast), transform 0.3s ease;
}

.breaking-ticker-item:hover .breaking-title {
  color: var(--accent-color);
}

.breaking-nav-btns {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding-right: 0.875rem;
  flex-shrink: 0;
}

.breaking-nav-btn {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.25rem;
  border: 0.0625rem solid var(--divider-color);
  background-color: var(--bg-surface);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.breaking-nav-btn:hover {
  background-color: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}

.breaking-nav-btn span {
  font-size: 1.125rem;
}

.hero-container-wrapper {
  padding-top: 0;
  margin-bottom: 1.25rem;
}

.hero-unified-block {
  position: relative;
  width: 100%;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.hero-slider-section {
  position: relative;
  width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--bg-surface-solid);
  margin-bottom: 1.25rem;
}

/* Dual-Zone Split Hero Architecture */
.hero-split-layout {
  display: grid;
  grid-template-columns: 28rem 1fr;
  width: 100%;
  height: 35rem;
  max-height: 35rem;
  background-color: var(--bg-surface-solid);
  overflow: hidden;
}

@media (max-width: 75rem) {
  .hero-split-layout {
    grid-template-columns: 24rem 1fr;
  }
}

@media (max-width: 62rem) {
  .hero-split-layout {
    grid-template-columns: 1fr;
  }
}

.hero-editorial-panel {
  padding: 2.5rem 2.5rem 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--bg-surface-solid);
  position: relative;
  z-index: 5;
  border-right: 0.0625rem solid var(--divider-color);
  transition: background 0.45s ease, box-shadow 0.45s ease;
  overflow: hidden;
}

/* Manşet Slaytında Son Dakika Haberi Varsa: TV SON DAKİKA KJ BANTI - KAN KIRMIZI YAYIN ZEMİNİ */
.hero-editorial-panel.is-son-dakika-active {
  background: linear-gradient(135deg, #8B0018 0%, #C8102E 50%, #720014 100%) !important;
  color: #FFFFFF !important;
  box-shadow: inset 0 0 3.5rem rgba(0, 0, 0, 0.4), 0 0.5rem 2rem rgba(200, 16, 46, 0.3) !important;
  border-right-color: rgba(255, 255, 255, 0.15) !important;
  position: relative;
  overflow: hidden;
  transition: background 0.5s cubic-bezier(0.25, 1, 0.5, 1), color 0.5s ease, box-shadow 0.5s ease;
}

/* TV Grafik Işık Parlama (Glare Sweep) Efekti */
.hero-editorial-panel.is-son-dakika-active::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 45%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: kjGlareSweep 3.5s infinite ease-in-out;
  pointer-events: none;
  z-index: 6;
}

@keyframes kjGlareSweep {
  0% { left: -60%; }
  40% { left: 140%; }
  100% { left: 140%; }
}



/* Metinler & Tipografi Bembeyaz & Yüksek Kontrast */
.hero-editorial-panel.is-son-dakika-active .hero-editorial-title a,
.hero-editorial-panel.is-son-dakika-active .hero-editorial-summary,
.hero-editorial-panel.is-son-dakika-active .hero-counter,
.hero-editorial-panel.is-son-dakika-active .hero-simple-link,
.hero-editorial-panel.is-son-dakika-active .hero-simple-link span {
  color: #FFFFFF !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-editorial-title a:hover {
  color: #FFE4E6 !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-editorial-summary {
  color: rgba(255, 255, 255, 0.92) !important;
}

.hero-editorial-panel.is-son-dakika-active .counter-divider,
.hero-editorial-panel.is-son-dakika-active .total-num {
  color: rgba(255, 255, 255, 0.65) !important;
}

.hero-editorial-panel.is-son-dakika-active .current-num {
  color: #FFFFFF !important;
}

/* Canlı TV KJ Rozeti */
.hero-editorial-panel.is-son-dakika-active .hero-live-badge {
  background: #FFFFFF !important;
  color: #C8102E !important;
  border: none !important;
  font-weight: 800 !important;
  box-shadow: 0.25rem 0.375rem 1rem rgba(0, 0, 0, 0.35) !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-live-badge .live-text {
  color: #C8102E !important;
}

.hero-editorial-panel.is-son-dakika-active .live-dot {
  background-color: #C8102E !important;
  box-shadow: 0 0 0 0.25rem rgba(200, 16, 46, 0.25) !important;
  animation: pulseDotRed 1.2s infinite ease-in-out !important;
}

@keyframes pulseDotRed {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.6); }
  70% { transform: scale(1); box-shadow: 0 0 0 0.375rem rgba(200, 16, 46, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(200, 16, 46, 0); }
}

/* Navigasyon Ok Butonları & İlerleme Çizgisi (Kırmızı Üzerinde Yüksek Kontrast Bembeyaz Çizgi) */
.hero-editorial-panel.is-son-dakika-active .hero-panel-bottom {
  border-top: 0.0625rem solid #FFFFFF !important;
  border-top-color: #FFFFFF !important;
}

.hero-editorial-panel.is-son-dakika-active .progress-line-track {
  background-color: rgba(255, 255, 255, 0.25) !important;
}

.hero-editorial-panel.is-son-dakika-active .progress-line-fill {
  background-color: #FFFFFF !important;
  box-shadow: 0 0 0.625rem #FFFFFF !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-circle-arrow-btn {
  background-color: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #FFFFFF !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-circle-arrow-btn:hover {
  background-color: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #C8102E !important;
  box-shadow: 0 0.25rem 0.875rem rgba(0, 0, 0, 0.3) !important;
}

.hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 1.125rem 0.4375rem 1.25rem;
  background-color: var(--accent-color, #C8102E);
  color: #FFFFFF;
  border-radius: 0 0.25rem 0.25rem 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  margin-left: -2.5rem;
  box-shadow: 0.25rem 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
  z-index: 15;
  border: none;
  transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-live-badge .live-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #FFFFFF !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.35);
  animation: pulseDotWhite 1.5s infinite ease-in-out;
}

@keyframes pulseDotWhite {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 0.375rem rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.hero-live-badge .live-text {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.hero-counter {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-counter .current-num {
  font-weight: 800;
  color: var(--text-primary);
  font-size: 1rem;
}

.hero-counter .counter-divider {
  margin: 0 0.2rem;
  opacity: 0.5;
}

.hero-text-slider-layer {
  position: relative;
  width: 100%;
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  margin: auto 0;
  min-height: 14rem;
}

.hero-text-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.hero-text-item.active {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  flex: 1 1 auto !important;
  height: 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.hero-editorial-title {
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  /* KESİNTİSİZ TAM BAŞLIK OKUMA - Asla yarıda kesilmez */
  display: block !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
}

.hero-editorial-title a {
  color: inherit;
  transition: color var(--transition-fast);
}

.hero-editorial-title a:hover {
  color: var(--accent-color);
}

.hero-editorial-summary {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0.75rem;
  font-weight: 400;
  display: block;
  overflow: visible;
}

.hero-simple-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 0.5rem;
  text-decoration: none;
  transition: color var(--transition-fast);
  margin-bottom: 0.5rem;
}

.hero-simple-link span.material-symbols-rounded {
  font-size: 0.9375rem;
  transition: transform var(--transition-fast);
}

.hero-simple-link:hover {
  color: var(--accent-hover);
}

.hero-simple-link:hover span.material-symbols-rounded {
  transform: translateX(0.25rem);
}

/* Hero Slider 5'li Etkileşim Barı Mimarisi (Üst ve Alt Çizgiler Dikey Ayrıştırıcılara Tam Sıfır Bitişik) */
.hero-social-dock {
  margin-top: auto !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  border-top: none !important;
  background: transparent !important;
  box-shadow: none !important;
  width: 100%;
}

.hero-social-dock .social-dock-actions {
  border-top: 0.0625rem solid var(--divider-color) !important;
  border-bottom: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-social-dock .social-dock-actions {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.35) !important;
}

.hero-social-dock .dock-action-btn {
  color: var(--text-muted, #64748B) !important;
  background: transparent !important;
  height: 2.25rem;
  padding: 0 !important;
  margin: 0 !important;
  border-right: 0.0625rem solid var(--divider-color) !important;
}

.hero-social-dock .dock-action-btn:last-child {
  border-right: none !important;
}

.hero-social-dock .dock-action-btn:hover {
  color: var(--text-muted, #64748B) !important;
  background: rgba(0, 0, 0, 0.04) !important;
}

/* Son Dakika / Kırmızı Zemin Üzerinde %100 Saf Beyaz İkonlar & Rakamlar */
.hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn,
.hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn i,
.hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn .dock-count {
  color: #FFFFFF !important;
  background: transparent !important;
  opacity: 1 !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn {
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.3) !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn:last-child {
  border-right: none !important;
}

.hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn:hover,
.hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn:hover i,
.hero-editorial-panel.is-son-dakika-active .hero-social-dock .dock-action-btn:hover .dock-count {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

/* Tek Bölme Çizgisi ve Alt Navigasyon Barı */
.hero-panel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0 !important;
  padding-top: 0.625rem !important;
  border-top: 0.0625rem solid var(--divider-color);
  width: 100%;
  flex-shrink: 0;
}

.hero-editorial-panel.is-son-dakika-active .hero-panel-bottom {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.35) !important;
}

.hero-panel-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.hero-nav-arrow-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-circle-arrow-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: var(--bg-surface-hover);
  border: 0.0625rem solid var(--divider-color);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.hero-circle-arrow-btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #FFFFFF;
  transform: scale(1.05);
}

.hero-visual-stage {
  position: relative;
  width: 100%;
  min-height: 35rem;
  overflow: hidden;
}

.hero-visual-stage .hero-slides-inner {
  height: 100% !important;
  min-height: 35rem !important;
  border-radius: 0 !important;
}

.hero-slides-inner {
  position: relative;
  height: 35rem;
  min-height: 35rem;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}

.hero-slides-inner::after {
  display: none;
}

/* Arka Plan Kayar Görsel Katmanı */
.hero-bg-slider-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.48s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.hero-bg-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

.hero-bg-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: block;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.01);
}

.hero-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.1875rem;
  font-size: 0.78125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-left: 0.375rem;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.hero-read-more span.material-symbols-rounded {
  font-size: 0.8125rem;
  transition: transform var(--transition-fast);
}

.hero-read-more:hover {
  color: var(--accent-hover);
}

.hero-read-more:hover span.material-symbols-rounded {
  transform: translateX(0.1875rem);
}

.hero-nav-row-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: auto;
  padding-bottom: 0;
}

.progress-line-track {
  flex: 1;
  height: 0.2rem;
  background-color: rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
}

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

.progress-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: var(--radius-pill);
  transition: width 0.4s ease;
}

.hero-nav-text-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
  flex-shrink: 0;
}

.nav-text-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-primary);
  transition: opacity var(--transition-fast);
}

.nav-text-btn .material-symbols-rounded {
  font-size: 1rem;
}

.nav-text-btn:hover {
  opacity: 0.7;
}

/* ==========================================================================
   Finans Bandı (Manşet Altına Tam Bitişik Birleşik Kutu)
   ========================================================================== */
.finance-ticker-wrapper {
  position: relative;
  z-index: 20;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
}

.finance-card-centered {
  background: var(--bg-surface-solid);
  border: none !important;
  border-radius: 0.25rem !important;
  box-shadow: var(--shadow-sm) !important;
  padding: 0.875rem 1.5rem;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem;
  width: 100%;
}


:root[data-theme="dark"] .finance-card-centered {
  background: rgba(18, 22, 30, 0.65);
  border: none !important;
  box-shadow: 0 1.25rem 3.5rem rgba(0, 0, 0, 0.5), inset 0 0.0625rem 0.0625rem rgba(255, 255, 255, 0.1);
}

.finance-ticker-items-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex: 1;
  min-width: 0;
  gap: 0.75rem;
  flex-wrap: nowrap !important;
  padding-right: 2.25rem !important;
  border-right: 0.0625rem solid var(--divider-color);
  overflow: hidden;
}

.finance-weather-col {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0;
  white-space: nowrap;
  padding-left: 1.5rem !important;
}

.weather-hero-layout {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.weather-hero-icon {
  font-size: 2.125rem;
  color: #F59E0B;
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
}

.weather-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.0625rem;
}

.weather-city-top {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.weather-temp-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.weather-big-temp {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.finance-weather-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.1875rem;
}

.finance-weather-sub i {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.finance-col {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  white-space: nowrap;
  border-right: 0.0625rem solid var(--divider-color);
  padding-right: clamp(0.5rem, 0.9vw, 1.25rem);
}

.finance-col:last-child {
  border-right: none !important;
  padding-right: 1.25rem !important;
}

.finance-name {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.finance-val-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}

.finance-val {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}

.finance-val.finance-updated.up {
  color: var(--success-color, #10b981);
}

.finance-val.finance-updated.down {
  color: var(--danger-color, #ef4444);
}



.finance-badge {
  font-size: 0.8125rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
}

.finance-badge.up {
  color: var(--success-color);
}

.finance-badge.down {
  color: var(--danger-color);
}

/* ==========================================================================
   News Grid & Thin Clean Typography
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 1.25rem;
}

.news-card {
  background-color: var(--bg-surface-solid);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.news-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-md);
}

/* 1. Üst Kısım: Beyaz Zeminli Başlık + 2-3 Satırlık Özet Kutusu */
.card-header-block {
  padding: 1.125rem 1.25rem 0.875rem 1.25rem;
  background-color: var(--bg-surface-solid);
  border-bottom: 0.0625rem solid var(--divider-color);
}

.card-title {
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.015em;
}

.card-summary {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 2. Orta Kısım: Sıfır Radius Tam Genişlik Görsel */
.card-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--bg-primary);
  position: relative;
  border-radius: 0 !important;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  transition: transform 0.5s ease;
}

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

/* 3. Alt Kısım: Birleşik Alt Bar */
.card-footer-row {
  margin-top: auto;
  padding: 0.75rem 1.25rem;
  background-color: var(--bg-surface-solid);
  border-top: 0.0625rem solid var(--divider-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.card-time-group {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.card-time-group .material-symbols-rounded {
  font-size: 0.875rem;
}

.card-footer-right-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-right-tools {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.75rem;
  flex-wrap: nowrap;
}

.card-category-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0;
  border-radius: 0;
  background: none !important;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

:root[data-theme="dark"] .card-category-badge {
  background: none !important;
  color: var(--text-muted);
}

.card-category-badge:hover {
  background: none !important;
  color: var(--text-primary);
}

.card-share-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.card-share-btn {
  width: auto;
  height: auto;
  background: none !important;
  border-radius: 0;
  padding: 0.125rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
  transition: color var(--transition-fast);
}

.card-share-btn:hover,
.card-share-wrapper.active .card-share-btn {
  color: var(--text-primary);
  background: none !important;
}

.share-popover-menu {
  position: absolute;
  bottom: 2.25rem;
  right: 0;
  background: var(--bg-surface-solid);
  backdrop-filter: blur(1.5rem);
  -webkit-backdrop-filter: blur(1.5rem);
  border: 0.0625rem solid var(--divider-color);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  padding: 0.375rem 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.375rem);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 50;
}

.card-share-wrapper.active .share-popover-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.share-social-item {
  width: auto;
  height: auto;
  background: none !important;
  border-radius: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.share-social-item:hover {
  color: var(--text-primary);
  transform: scale(1.15);
  background: none !important;
}

.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   YENİ MODERN CAM FOOTER BAR (Header ile Birebir Tam Şablon Simetrisi & 2 Sütunlu Bağlantılar)
   ========================================================================== */
.site-footer-wrapper {
  margin-top: 1.25rem;
  padding-bottom: 0;
}

.footer-glass-card {
  background: var(--bg-surface);
  backdrop-filter: blur(2.5rem) saturate(1.8);
  -webkit-backdrop-filter: blur(2.5rem) saturate(1.8);
  border-radius: 0.25rem 0.25rem 0 0;
  box-shadow: 0 -0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  padding: 3rem 3.5rem 1.75rem 3.5rem;
  display: flex;
  flex-direction: column;
}

:root[data-theme="dark"] .footer-glass-card {
  background: rgba(20, 23, 30, 0.55);
  box-shadow: 0 -0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col-brand .site-logo {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.footer-col-brand .footer-slogan {
  font-size: 0.84375rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
}

.footer-col-brand .social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.25rem;
}

.footer-col-brand .social-icon-item {
  color: var(--text-muted);
  font-size: 1.125rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-col-brand .social-icon-item:hover {
  color: var(--text-primary);
  transform: translateY(-0.125rem);
}

.footer-column-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

/* 2 Sütunlu Şık Madde Başlıklı Footer Bağlantı Listeleri */
.footer-links-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-2col li a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.84375rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-links-2col li a i {
  font-size: 0.625rem;
  color: var(--accent-color);
  opacity: 0.8;
  transition: transform var(--transition-fast);
}

.footer-links-2col li a:hover {
  color: var(--text-primary);
}

.footer-links-2col li a:hover i {
  transform: translateX(0.125rem);
  opacity: 1;
}

/* Legal Links Right Above Bottom Bar */
.footer-legal-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.footer-legal-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--text-primary);
}

.footer-legal-links .legal-dot {
  opacity: 0.35;
  font-size: 0.5rem;
}

/* Minimalist Bottom Bar */
.footer-bottom-bar {
  padding-top: 0.75rem;
  border-top: 0.0625rem solid var(--divider-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ==========================================================================
   Creative Stream Expander Capsule (Haber Akışı Dokunuşu)
   ========================================================================== */
.stream-expander-wrapper {
  position: relative;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stream-divider-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent 0%, var(--divider-color) 25%, var(--divider-color) 75%, transparent 100%);
  z-index: 1;
}

.stream-expander-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.5rem 0.625rem 0.5rem 1.25rem;
  background: var(--bg-surface-solid);
  border: 0.0625rem solid var(--divider-color);
  border-radius: 6.25rem;
  box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(1.5rem);
  -webkit-backdrop-filter: blur(1.5rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

:root[data-theme="dark"] .stream-expander-card {
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.3);
}

.stream-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stream-pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  box-shadow: 0 0 0.5rem var(--accent-color);
  animation: pulseGlow 2s infinite ease-in-out;
}

.stream-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.stream-load-btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.625rem 0.5rem 1.125rem;
  background: var(--bg-primary);
  border: 0.0625rem solid var(--border-color);
  border-radius: 6.25rem;
  color: var(--text-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stream-btn-text {
  white-space: nowrap;
}

.stream-load-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-0.0625rem);
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
}

.stream-btn-icon-ring {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.stream-load-btn:hover .stream-btn-icon-ring {
  background: var(--accent-color);
  color: #ffffff;
}

.stream-btn-icon-ring .material-symbols-rounded {
  font-size: 1.125rem;
  transition: transform 0.25s ease;
}

.stream-load-btn:hover .stream-btn-icon-ring .material-symbols-rounded {
  transform: translateY(0.125rem);
}

.stream-load-btn.loading {
  opacity: 0.85;
  cursor: wait;
  pointer-events: none;
}

.stream-load-btn.loading .stream-btn-icon-ring .material-symbols-rounded {
  animation: spinLoader 0.75s linear infinite;
}

.stream-load-btn.finished,
.stream-load-btn.finished:hover,
.stream-load-btn.finished:focus,
.stream-load-btn.finished:active {
  opacity: 1 !important;
  cursor: default !important;
  pointer-events: none !important;
  border-color: rgba(34, 197, 94, 0.4) !important;
  color: #166534 !important;
  background: rgba(34, 197, 94, 0.08) !important;
  box-shadow: none !important;
  transform: none !important;
}

.stream-load-btn.finished .stream-btn-icon-ring {
  background: #22C55E !important;
  color: #FFFFFF !important;
}

[data-theme="dark"] .stream-load-btn.finished,
[data-theme="dark"] .stream-load-btn.finished:hover,
[data-theme="dark"] .stream-load-btn.finished:focus,
[data-theme="dark"] .stream-load-btn.finished:active {
  border-color: rgba(74, 222, 128, 0.3) !important;
  color: #4ADE80 !important;
  background: rgba(34, 197, 94, 0.12) !important;
}

.stream-counter {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding-right: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.card-fade-in {
  animation: cardAppear 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardAppear {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spinLoader {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

/* ==========================================================================
   News Detail Page (Haber Detay Sayfası Mimarisi)
   ========================================================================== */
.detail-container {
  max-width: 82rem;
  margin: 0 auto;
  padding-top: 1.75rem;
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.news-detail-article {
  max-width: 58rem;
  margin-left: auto;
  margin-right: auto;
}

.detail-back-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.detail-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  background-color: var(--bg-surface);
  border: 0.0625rem solid var(--divider-color);
  border-radius: 6.25rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-back-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateX(-0.25rem);
}

.detail-top-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.125rem;
  background-color: var(--accent-color);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6.25rem;
  box-shadow: 0 0.25rem 0.875rem rgba(200, 16, 46, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.detail-top-category-badge:hover {
  transform: translateY(-0.0625rem);
  box-shadow: 0 0.375rem 1.125rem rgba(200, 16, 46, 0.35);
}

/* Tümüyle Birleşik Master Kart (Başlık + Resim + Sosyal Etkileşim Barı) */
.detail-master-card {
  background-color: var(--bg-surface-solid);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.25rem;
  box-shadow: var(--shadow-sm);
}

.detail-card-header {
  padding: 1.125rem 1.25rem 0.875rem 1.25rem;
  background-color: var(--bg-surface-solid);
  border-bottom: 0.0625rem solid var(--divider-color);
}

.detail-title {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0 !important;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.detail-hero-frame {
  border-radius: 0 !important;
  border: none !important;
  overflow: hidden;
  margin-bottom: 0 !important;
  box-shadow: none !important;
}

.detail-hero-img {
  width: 100%;
  max-height: 30rem;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
}

/* Birleşik Köşeli Tam Alanı Kaplayan Etkileşim Barı & Tek Satır Meta */
.detail-social-dock {
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  background-color: var(--bg-surface-solid);
  border: none !important;
  border-top: 0.0625rem solid var(--divider-color) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.social-dock-actions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  border-bottom: 0.0625rem solid var(--divider-color);
}

.dock-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  height: 2.375rem;
  padding: 0;
  background: var(--bg-surface-solid);
  border: none;
  border-right: 0.0625rem solid var(--divider-color);
  border-radius: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted, #64748B) !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dock-action-btn i {
  font-size: 0.875rem;
  color: var(--text-muted, #64748B) !important;
  transition: transform 0.2s ease;
}

.dock-action-btn .dock-count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted, #64748B) !important;
}

.dock-action-btn:last-child,
.dock-action-btn.views-btn {
  border-right: none;
}

/* Standart Hover Durumu - Gri Renk Korunur */
.dock-action-btn:hover {
  background: var(--bg-surface-hover, rgba(0, 0, 0, 0.04)) !important;
  color: var(--text-muted, #64748B) !important;
}

.dock-action-btn:hover i,
.dock-action-btn:hover .dock-count {
  color: var(--text-muted, #64748B) !important;
}

.dock-action-btn:hover i {
  transform: scale(1.12);
}

/* Aktif (Beğenilmiş / Kaydedilmiş) Durum - İçi dolu fakat içi boş halindeki aynı gri renk */
.dock-action-btn.liked,
.dock-action-btn.like-btn.active,
.dock-action-btn.bookmarked,
.dock-action-btn.bookmark-btn.active {
  background: var(--bg-surface-solid) !important;
  color: var(--text-muted, #64748B) !important;
}

.dock-action-btn.liked i,
.dock-action-btn.like-btn.active i,
.dock-action-btn.bookmarked i,
.dock-action-btn.bookmark-btn.active i {
  color: var(--text-muted, #64748B) !important;
}

@keyframes heartPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.35);
  }

  100% {
    transform: scale(1);
  }
}

.dock-share-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.dock-share-wrapper .dock-action-btn {
  width: 100%;
  height: 100%;
  border-right: 0.0625rem solid var(--divider-color);
  border-radius: 0;
}

.dock-share-popover {
  position: absolute;
  bottom: calc(100% + 0.625rem);
  left: 0;
  background: var(--bg-surface-solid);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 100;
  min-width: 11.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dock-share-popover.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dock-share-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.dock-share-item:hover {
  background: var(--bg-primary);
}

.dock-share-item.whatsapp i {
  color: #25D366;
}

.dock-share-item.twitter i {
  color: var(--text-primary);
}

.dock-share-item.facebook i {
  color: #1877F2;
}

.dock-share-item.copy-link i {
  color: var(--accent-color);
}

.social-dock-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 1rem;
  font-size: 0.78125rem;
  color: var(--text-muted);
  font-weight: 500;
  width: 100%;
}

.dock-meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}

.dock-meta-item .material-symbols-rounded {
  font-size: 0.9375rem;
}

.dock-meta-divider {
  opacity: 0.35;
}

@media (max-width: 48rem) {
  .detail-card-header {
    padding: 0.625rem 0.875rem 0.45rem 0.875rem;
  }

  .detail-title {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .social-dock-meta {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }
}

/* Dynamic Social Media Embed Cards & Responsive Media Embeds */
.article-embed-card {
  margin: 1.75rem 0;
  display: flex;
  justify-content: center;
  width: 100%;
  clear: both;
}

.twitter-embed-wrapper {
  width: 100%;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  min-height: 12rem;
}

.twitter-embed-wrapper .twitter-tweet,
blockquote.twitter-tweet,
.twitter-tweet {
  margin: 0 auto !important;
  border: none !important;
  border-left: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  outline: none !important;
}

.youtube-embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  background-color: #000000;
}

.youtube-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Yorumlar Bölümü */
.detail-comments-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 0.0625rem solid var(--divider-color);
  width: 100%;
  box-sizing: border-box;
}

/* İlgili Haberler Bölüm Başlığı & Grid */
.related-section-wrapper {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 0.0625rem solid var(--divider-color);
  width: 100%;
  box-sizing: border-box;
}

.related-section-wrapper .news-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.25rem;
  width: 100%;
  box-sizing: border-box;
  clear: both !important;
}

.related-section-wrapper .news-grid .news-card:first-child {
  grid-column-start: 1 !important;
}

@media (max-width: 48rem) {
  .related-section-wrapper .news-grid {
    grid-template-columns: 1fr !important;
  }
  .related-section-wrapper .news-grid .news-card:first-child {
    grid-column-start: auto !important;
  }
}

.related-header-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.related-title-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  display: inline-block;
  flex-shrink: 0;
}

@media (max-width: 48rem) {
  .related-header-title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}

.comments-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.comment-form-card {
  background: var(--bg-surface-solid);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.comment-input {
  width: 100%;
  background: var(--bg-primary);
  border: 0.0625rem solid var(--divider-color);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text-primary);
  resize: vertical;
  outline: none;
  transition: border-color var(--transition-fast);
}

.comment-input:focus {
  border-color: var(--accent-color);
}

.comment-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.875rem;
  flex-wrap: wrap;
}

.comment-notice {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.comment-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 6.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.comment-submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-0.0625rem);
  box-shadow: 0 0.25rem 0.875rem rgba(200, 16, 46, 0.3);
}

.detail-info-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.detail-info-right-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.detail-info-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.detail-info-item i,
.detail-info-item .material-symbols-rounded {
  font-size: 0.9375rem;
  color: var(--accent-color);
}

.detail-info-author {
  font-weight: 700;
  color: var(--text-primary);
}

.detail-stats-group {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.detail-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 0.0625rem solid var(--divider-color);
  border-radius: 6.25rem;
  transition: all 0.25s ease;
}

.detail-stat-pill i {
  color: var(--accent-color);
  font-size: 0.8125rem;
}

.detail-stat-pill:hover {
  border-color: var(--accent-color);
  transform: translateY(-0.0625rem);
}

.detail-share-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-share-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 0.0625rem solid var(--divider-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: all 0.25s ease;
  cursor: pointer;
}

.detail-share-btn:hover {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
  transform: translateY(-0.125rem);
}

.detail-hero-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.25rem;
  border: 0.0625rem solid var(--divider-color);
  box-shadow: var(--shadow-md);
}

.detail-hero-img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  display: block;
}

.detail-spot-box {
  background-color: var(--bg-surface);
  border-left: 0.25rem solid var(--accent-color);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.65;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.02);
}

.detail-body-content {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
}

.detail-body-content p {
  margin-bottom: 1.5rem;
}

.detail-body-content h2,
.detail-body-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 2.25rem;
  margin-bottom: 1.125rem;
  letter-spacing: -0.015em;
}

.detail-body-content blockquote {
  background-color: var(--bg-surface);
  border-left: 0.25rem solid var(--accent-color);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.detail-tags-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 0.0625rem solid var(--divider-color);
  border-bottom: 0.0625rem solid var(--divider-color);
  margin-bottom: 3.5rem;
}

.detail-tag-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background-color: var(--bg-surface);
  border: 0.0625rem solid var(--divider-color);
  border-radius: 6.25rem;
  transition: all 0.25s ease;
}

.detail-tag-item:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

.related-section-wrapper {
  padding-top: 2.5rem;
}

.related-header-title {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-primary);
}

.related-title-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  display: inline-block;
}

/* Responsive Footer */
@media (max-width: 63.9375rem) {
  .hero-glass-box {
    max-width: 100%;
  }

  .finance-card-centered {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-glass-card {
    padding: 2rem;
  }
}

@media (max-width: 47.9375rem) {
  .header-nav-links {
    display: none;
  }

  .detail-container {
    padding-top: 1.25rem;
  }

  /* Mobilde header bar için sabit kibar boyutlar ve zemin beyaz duruşu */
  .header-b10-bar {
    padding: 0.625rem 1rem !important;
    background: var(--bg-surface-solid) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    transition: background-color var(--transition-fast), box-shadow var(--transition-fast) !important;
  }

  .header-b10-bar.scrolled {
    background: var(--bg-surface-solid) !important;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12) !important;
  }

  :root[data-theme="dark"] .header-b10-bar {
    background: var(--bg-surface-solid) !important;
  }

  :root[data-theme="dark"] .header-b10-bar.scrolled {
    background: var(--bg-surface-solid) !important;
  }

  .site-logo,
  .header-b10-bar.scrolled .site-logo {
    font-size: 1.4rem !important;
    transition: none !important;
  }

  .site-logo .logo-b10,
  .site-logo .logo-dot,
  .site-logo .logo-media {
    transition: none !important;
  }

  .hero-container-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 1.5rem !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .hero-unified-block {
    border-radius: 0 !important;
    width: 100% !important;
  }

  .hero-slider-section {
    border-radius: 0 !important;
    margin-bottom: 1rem !important;
    width: 100% !important;
  }

  .hero-slides-inner {
    height: 30rem !important;
    min-height: 30rem !important;
    border-radius: 0 !important;
    width: 100% !important;
  }

  .hero-bg-image {
    height: 100%;
    object-position: center 10%;
  }

  .hero-fixed-container {
    bottom: 0.75rem !important;
    left: 0.75rem !important;
    width: calc(100% - 1.5rem) !important;
  }

  .hero-glass-box {
    padding: 0.875rem 1rem !important;
    border-radius: 0.25rem !important;
    margin-bottom: 0 !important;
  }

  .hero-title {
    font-size: 1.125rem;
    line-height: 1.25;
    margin-bottom: 0.35rem;
  }

  .hero-summary {
    font-size: 0.78125rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    -webkit-line-clamp: 2;
  }

  .hero-nav-row-compact {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 0.0625rem solid var(--divider-color);
    width: 100%;
    flex-shrink: 0;
  }

  /* Finance-ticker: Manşete Alttan Tam Bitişik Birleşik Mobil Kutu */
  .finance-ticker-wrapper {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    position: relative;
    z-index: 20;
    width: 100% !important;
  }

  .finance-card-centered {
    border: none !important;
    border-top: 0.0625rem solid var(--divider-color) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.625rem;
    align-items: center;
    padding: 0.5rem 0.75rem;
    overflow: hidden;
    width: 100% !important;
  }

  .finance-ticker-items-container {
    display: block !important;
    flex-wrap: unset !important;
    height: 2.75rem !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scroll-snap-type: y mandatory !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    position: relative !important;
    border-right: 0.0625rem solid var(--divider-color) !important;
    padding-right: 0.5rem !important;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  }

  .finance-ticker-items-container::-webkit-scrollbar {
    display: none !important;
  }

  .finance-ticker-items-container .finance-col {
    height: 2.75rem !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 0.125rem !important;
    border-right: none !important;
    padding-right: 0 !important;
    flex: none !important;
  }

  .finance-ticker-items-container .finance-name {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1;
    margin: 0;
  }

  .finance-ticker-items-container .finance-val-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    line-height: 1;
    margin: 0;
  }

  .finance-ticker-items-container .finance-val {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
  }

  .finance-ticker-items-container .finance-badge {
    font-size: 0.6875rem;
    padding: 0.08rem 0.3rem;
    border-radius: var(--radius-sm);
    line-height: 1;
  }

  .finance-weather-col {
    border-left: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    display: flex;
    justify-content: center;
  }

  .weather-hero-layout {
    gap: 0.5rem;
  }

  .weather-hero-icon {
    font-size: 1.75rem;
  }

  .weather-big-temp {
    font-size: 0.875rem;
  }

  .finance-weather-sub {
    font-size: 0.6875rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-wrapper .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .footer-glass-card {
    border-radius: 0 !important;
    padding: 2rem 1.25rem 1.25rem 1.25rem !important;
    width: 100% !important;
  }

  .footer-legal-row {
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 0.625rem;
  }

  .footer-legal-links {
    flex-wrap: nowrap;
    gap: 0.375rem;
    font-size: 0.6875rem;
    white-space: nowrap;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
    font-size: 0.75rem;
  }

  /* News Detail Mobile Single-Line Optimizations */
  .detail-title {
    font-size: 1.625rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .detail-hero-info-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    margin-bottom: 1.75rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .detail-hero-info-bar::-webkit-scrollbar {
    display: none;
  }

  .detail-info-left {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .detail-info-right-group {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding-top: 0;
    border-top: none;
    flex-shrink: 0;
  }

  .detail-info-item {
    font-size: 0.75rem;
  }

  .detail-stats-group {
    gap: 0.375rem;
  }

  .detail-stat-pill {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }

  .detail-stat-pill .stat-label {
    display: none;
  }

  .detail-share-group {
    gap: 0.25rem;
  }

  .detail-share-btn {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 0.75rem;
  }

  /* Stream Expander Capsule Mobile Rules */
  .stream-expander-card {
    padding: 0.375rem 0.5rem;
    gap: 0.5rem;
    max-width: 100%;
    justify-content: center;
  }

  .stream-info,
  .stream-counter {
    display: none;
  }

  .stream-load-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    justify-content: center;
  }

  /* Mobile Sticky Header Stabilization (En Üst Sıfır Boşluk) */
  .site-header-wrapper {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .site-header-wrapper .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .header-b10-bar {
    padding: 0.625rem 1rem !important;
    border-radius: 0 !important;
    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 0.75rem !important;
  }

  .header-b10-bar .site-logo {
    font-size: 1.45rem;
  }

  .header-b10-bar.scrolled {
    padding: 0.45rem 0.875rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12);
  }

  .header-b10-bar.scrolled .site-logo {
    font-size: 1.25rem;
  }

  .expandable-search-wrapper.active {
    width: 2.375rem !important;
  }

  .expandable-search-input {
    display: none !important;
  }

  .mobile-menu-toggle-btn {
    display: inline-flex !important;
  }
}

/* ==========================================================================
   Full-Header Mobile Glass Search Overlay (Kusursuz Mobil Arama Barı)
   ========================================================================== */
.mobile-search-overlay {
  position: absolute;
  inset: 0;
  z-index: 1200;
  background: var(--bg-surface-solid);
  backdrop-filter: blur(3rem) saturate(1.8);
  -webkit-backdrop-filter: blur(3rem) saturate(1.8);
  border-radius: 0 0 0.25rem 0.25rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.12);
}

:root[data-theme="dark"] .mobile-search-overlay {
  background: rgba(18, 21, 28, 0.95);
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.45);
}

.mobile-search-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-search-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  background: var(--bg-primary);
  border: 0.0625rem solid var(--divider-color);
  border-radius: 6.25rem;
  padding: 0.375rem 0.875rem;
}

.mobile-search-icon {
  font-size: 1.25rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.mobile-search-field {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mobile-search-field::placeholder {
  color: var(--text-muted);
  opacity: 0.9;
  font-weight: 500;
}

.mobile-search-close-btn {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background: var(--bg-surface);
  border: 0.0625rem solid var(--divider-color);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.mobile-search-close-btn:hover {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
}

/* ==========================================================================
   Expandable Search Bar Engine (Masaüstü Sola Doğru Süzülen Bar)
   ========================================================================== */
.header-right-tools {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  position: relative;
}

.expandable-search-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  height: 2.375rem;
  width: 2.375rem;
  z-index: 100;
}

.expandable-search-wrapper.active {
  width: 2.375rem !important;
}

.expandable-search-input {
  position: absolute;
  right: 0;
  top: 0;
  height: 2.375rem;
  width: 0;
  opacity: 0;
  pointer-events: none;
  border-radius: 6.25rem;
  background: var(--bg-surface, #FFFFFF);
  border: 0.0625rem solid var(--divider-color, rgba(0, 0, 0, 0.12));
  padding: 0 2.5rem 0 1rem;
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 600;
  outline: none;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.18);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  z-index: 101;
}

.expandable-search-input::placeholder {
  color: var(--text-muted);
  opacity: 0.95;
  font-weight: 500;
}

:root[data-theme="dark"] .expandable-search-input {
  background: rgba(20, 23, 30, 0.96);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.5);
}

:root[data-theme="dark"] .expandable-search-input::placeholder {
  color: #94A3B8;
  opacity: 1;
}

.expandable-search-wrapper.active .expandable-search-input {
  width: 18rem !important;
  opacity: 1;
  pointer-events: auto;
}

.search-toggle-btn {
  position: relative;
  z-index: 102;
}

/* ==========================================================================
   Mobile Off-Canvas Glass Drawer Menu
   ========================================================================== */
.theme-toggle-icon-btn,
.mobile-menu-toggle-btn,
.search-toggle-btn {
  display: inline-flex;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  background: transparent !important;
  border: none !important;
  color: var(--text-primary) !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle-btn {
  display: none;
}

.theme-toggle-icon-btn:hover,
.mobile-menu-toggle-btn:hover,
.search-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.06) !important;
  color: var(--accent-color) !important;
  transform: scale(1.08);
}

:root[data-theme="dark"] .theme-toggle-icon-btn:hover,
:root[data-theme="dark"] .mobile-menu-toggle-btn:hover,
:root[data-theme="dark"] .search-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--accent-color) !important;
}

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0.25rem);
  -webkit-backdrop-filter: blur(0.25rem);
  opacity: 0;
  pointer-events: none;
  display: none;
  transition: opacity 0.35s ease;
  z-index: 1000;
}

.mobile-drawer-backdrop.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 20rem;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-surface);
  backdrop-filter: blur(2rem) saturate(180%);
  -webkit-backdrop-filter: blur(2rem) saturate(180%);
  border-left: 0.0625rem solid var(--divider-color);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  box-shadow: -0.5rem 0 3rem rgba(0, 0, 0, 0.2);
}

.mobile-menu-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 0.0625rem solid var(--divider-color);
}

.mobile-drawer-close-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 0.0625rem solid var(--divider-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mobile-drawer-close-btn:hover {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
}

.mobile-drawer-body {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-drawer-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.mobile-drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.mobile-drawer-nav-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.6875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: all 0.25s ease;
}

.mobile-drawer-nav-item i {
  font-size: 1.125rem;
  color: var(--accent-color);
  width: 1.5rem;
  text-align: center;
  transition: all 0.25s ease;
}

.mobile-drawer-nav-item:hover {
  background: var(--bg-surface-hover);
  color: var(--accent-color);
  transform: translateX(0.25rem);
}

.mobile-drawer-nav-item:hover i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.mobile-drawer-nav-item.active {
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 0.25rem 0.875rem rgba(225, 29, 72, 0.3);
}

.mobile-drawer-nav-item.active i {
  color: #ffffff;
}

.mobile-drawer-divider {
  height: 0.0625rem;
  background: var(--divider-color);
  margin: 1.25rem 0;
}

.mobile-drawer-corporate-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.mobile-drawer-corporate-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.mobile-drawer-corporate-list a:hover {
  color: var(--accent-color);
}

.mobile-drawer-corporate-list i {
  font-size: 0.625rem;
  color: var(--accent-color);
}

.mobile-drawer-footer {
  margin-top: 0.5rem;
}

.mobile-drawer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ==========================================================================
   YENİ ANASAYFA KUSURSUZ MOBİL UYUMLULUK (Mobile Responsive Engine)
   ========================================================================== */
@media (max-width: 48rem) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .hero-container-wrapper {
    margin-bottom: 1rem;
  }

  /* Son Dakika Ticker Bandı Mobil */
  .breaking-news-card-ticker {
    height: 2.5rem;
    margin-bottom: 0.875rem;
  }

  .breaking-badge-button {
    padding: 0 0.75rem !important;
    gap: 0 !important;
    justify-content: center;
  }

  .breaking-badge-button span:not(.breaking-icon) {
    display: none !important;
  }

  .breaking-clock-badge {
    padding: 0 0.5rem;
    font-size: 0.75rem;
  }

  .breaking-ticker-viewport {
    padding-left: 0.5rem;
  }

  .breaking-title {
    font-size: 0.8125rem;
  }

  .breaking-nav-btns {
    display: none !important;
  }

  /* Hero Split Layout Mobil Dikey Katmanlama (Görsel Üstte + Metin Altta) */
  .hero-split-layout {
    display: flex;
    flex-direction: column;
    height: auto !important;
    max-height: none !important;
    min-height: unset !important;
    border-radius: 0.375rem;
    overflow: hidden;
  }

  /* Görsel Sahnesi Üstte */
  .hero-visual-stage,
  .hero-visual-stage .hero-slides-inner,
  .hero-slides-inner {
    height: 13.5rem !important;
    min-height: 13.5rem !important;
    max-height: 13.5rem !important;
    order: 1;
  }

  /* Metin Paneli Altta (Milimetrik Kilitli Yükseklik - Sıfır Zıplama) */
  .hero-editorial-panel {
    order: 2;
    padding: 1rem 0.875rem 0.75rem 0.875rem !important;
    height: 20.5rem !important;
    min-height: 20.5rem !important;
    max-height: 20.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    border-right: none;
    border-top: 0.0625rem solid var(--divider-color);
    overflow: hidden !important;
  }

  .hero-text-slider-layer {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    margin: auto 0 !important;
    overflow: hidden !important;
    min-height: 0 !important;
    height: 100% !important;
  }

  .hero-text-item.active {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    justify-content: center !important;
  }

  .hero-panel-top {
    margin-bottom: 0.375rem !important;
  }

  .hero-live-badge {
    margin-left: -0.875rem !important;
    padding: 0.25rem 0.75rem !important;
    font-size: 0.6875rem !important;
  }

  .hero-editorial-title {
    font-size: 1.0625rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.25rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .hero-editorial-summary {
    font-size: 0.8125rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.25rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .hero-simple-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.375rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.25rem !important;
    position: relative !important;
    z-index: 5 !important;
  }

  .hero-social-dock .dock-action-btn {
    height: 2.125rem !important;
  }

  .hero-panel-bottom {
    margin-top: 0 !important;
    padding-top: 0.5rem !important;
    border-top: 0.0625rem solid var(--divider-color) !important;
  }

  .hero-editorial-panel.is-son-dakika-active .hero-panel-bottom {
    border-top-color: rgba(255, 255, 255, 0.35) !important;
  }

  .hero-circle-arrow-btn {
    width: 1.875rem !important;
    height: 1.875rem !important;
  }
}

/* ==========================================================================
   LÜKS ANKET MODÜLÜ (POLL MODULE) CSS STİLLERİ - PROMINENT IMAGE & GLASS UI
   ========================================================================== */
.poll-card-wrapper {
  position: relative;
  background: linear-gradient(135deg, var(--ikincil-renk, #0F172A) 0%, #192231 50%, var(--ikincil-renk, #0F172A) 100%);
  border: none !important;
  outline: none !important;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.28);
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #FFFFFF;
}

/* Akıllı Görsel Katmanı (Top Center Hizalama & Alta Doğru Şeffaflaşan Yumuşak Geçiş) */
.poll-smart-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.poll-smart-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center !important; /* Yüz/Kafa her zaman üstte berrak görünür */
  display: block;
  opacity: 0.72;
  filter: brightness(0.85) contrast(1.05);
}

.poll-smart-fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.05) 0%,
    rgba(15, 23, 42, 0.15) 28%,
    rgba(15, 23, 42, 0.78) 48%,
    rgba(15, 23, 42, 0.95) 70%,
    var(--ikincil-renk, #0F172A) 100%
  );
  z-index: 2;
}

.poll-card-content {
  position: relative;
  z-index: 3;
  padding: 1rem 1rem 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end; /* Soru ve seçenekler alta hizalanır */
  gap: 0.5rem;
}

.poll-card-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: auto; /* Üst rozet en tepede sabit kalır */
}

.poll-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  background-color: var(--accent-color, #C8102E);
  color: #FFFFFF;
  font-size: 0.6875rem;
  font-weight: 800;
  border-radius: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.4);
}

.poll-badge-icon {
  font-size: 0.9375rem;
}

.poll-total-votes-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(0.5rem);
  padding: 0.25rem 0.5625rem;
  border-radius: 0.25rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
}

.poll-card-body-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.poll-question-title {
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.35;
  color: #FFFFFF;
  margin: 0;
  font-family: var(--font-heading);
  text-shadow: 0 0.0625rem 0.375rem rgba(0, 0, 0, 0.8);
}

.poll-options-container {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  width: 100%;
}

.poll-option-item {
  width: 100%;
  position: relative;
}

.poll-option-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 0.625rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(0.5rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  border-radius: 0.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.75rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.poll-option-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-0.0625rem);
  box-shadow: 0 0.25rem 0.875rem rgba(0, 0, 0, 0.3);
}

.poll-option-text strong,
.poll-option-text b,
.poll-option-text-result strong,
.poll-option-text-result b {
  font-weight: 800 !important;
  color: #FFFFFF !important;
}

.poll-radio-dot {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  border: 0.125rem solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.poll-option-btn:hover .poll-radio-dot {
  border-color: var(--accent-color, #C8102E);
  background-color: rgba(200, 16, 46, 0.2);
}

.radio-inner {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #FFFFFF;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.poll-option-btn:hover .radio-inner {
  opacity: 1;
  transform: scale(1);
}

.poll-option-text {
  flex: 1;
  line-height: 1.25;
}

.poll-result-bar-wrap {
  width: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(0.375rem);
  padding: 0.4375rem 0.625rem;
  border-radius: 0.25rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
}

.poll-result-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
}

.poll-option-text-result {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.poll-percentage-badge {
  font-weight: 800;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.0625rem 0.3125rem;
  border-radius: 0.1875rem;
  font-size: 0.6875rem;
}

.poll-progress-track {
  height: 0.375rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0.25rem;
  overflow: hidden;
}

.poll-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color, #C8102E) 0%, #F87171 100%);
  border-radius: 0.25rem;
  transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.poll-footer-note {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.12);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.poll-voted-status-msg {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 500;
}

/* -------------------------------------------------------------------------- */
/* Instagram-Style Multi-Media Carousel (Slider) Component                    */
/* -------------------------------------------------------------------------- */
.insta-media-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  background-color: transparent;
}

.insta-carousel-track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.insta-carousel-track::-webkit-scrollbar {
  display: none;
}

.insta-carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  overflow: hidden;
}

.insta-carousel-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.insta-carousel-item img.card-image,
.insta-carousel-item video.card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Detail Hero Frame Container: Full Cover, Zero Side Bars */
.detail-hero-frame.insta-media-carousel {
  background-color: transparent;
  width: 100%;
}

.detail-hero-frame.insta-media-carousel .insta-carousel-item img.detail-hero-img,
.detail-hero-frame.insta-media-carousel .insta-carousel-item video.detail-hero-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: 36rem;
  object-fit: cover;
}

/* Minimal Top Right Badge (Instagram Style Icon Only) */
.insta-carousel-badge {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  z-index: 10;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
  color: #FFFFFF;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.insta-carousel-badge i {
  font-size: 0.75rem;
  color: #FFFFFF;
}

/* Video Badge Play Overlay Icon */
.insta-video-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(0.25rem);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  pointer-events: none;
  box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.insta-carousel-item:hover .insta-video-badge {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(200, 16, 46, 0.9);
}

/* Minimal Arrow Buttons (No Circle Border / No White Background) */
.insta-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  filter: drop-shadow(0 0.125rem 0.375rem rgba(0, 0, 0, 0.75));
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.insta-media-carousel:hover .insta-carousel-nav {
  opacity: 0.85;
}

.insta-carousel-nav:hover {
  opacity: 1 !important;
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.2);
}

.insta-carousel-nav.prev {
  left: 0.625rem;
}

.insta-carousel-nav.next {
  right: 0.625rem;
}

.insta-carousel-nav .material-symbols-rounded {
  font-size: 2.25rem;
  font-weight: 700;
}

/* Dots Indicator (Bottom Center • • •) */
.insta-carousel-dots {
  position: absolute;
  bottom: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.5rem;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(0.375rem);
  border-radius: 1rem;
  pointer-events: none;
}

.insta-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.25s ease, transform 0.25s ease;
}

.insta-dot.active {
  background: #FFFFFF;
  transform: scale(1.3);
}

@media (max-width: 48rem) {
  .insta-carousel-nav {
    display: none;
  }

  .insta-carousel-badge {
    font-size: 0.625rem;
    padding: 0.1875rem 0.4375rem;
  }
}

/* ==========================================
   B10.media Dynamic Custom Pages System UI
   ========================================== */
.page-editorial-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color, #e2e8f0);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.page-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-breadcrumb a:hover {
  color: var(--accent-color);
}

.page-breadcrumb .sep {
  font-size: 0.625rem;
  opacity: 0.6;
}

.page-breadcrumb .current {
  color: var(--text-primary);
  font-weight: 700;
}

.page-main-title {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.page-lead-summary {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
  max-width: 54rem;
}

/* Page Module Container & Rich Content Box */
.page-module-container {
  margin-bottom: 3.5rem;
}

.page-rich-content-box {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-md, 0.75rem);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.page-rich-content-box h2,
.page-rich-content-box h3 {
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.page-rich-content-box p {
  margin-bottom: 1.25rem;
}

.page-rich-content-box ul,
.page-rich-content-box ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.page-rich-content-box li {
  margin-bottom: 0.5rem;
}

/* Contact Info Cards */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info-card {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-md, 0.75rem);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.contact-info-card .card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(200, 16, 46, 0.08);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-info-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Contact Form Layout */
.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 64rem) {
  .contact-form-layout {
    grid-template-columns: 1fr;
  }
}

.contact-form-card,
.contact-map-card {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-md, 0.75rem);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.form-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-card-title i {
  color: var(--accent-color);
}

.form-card-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.custom-glass-form .form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 40rem) {
  .custom-glass-form .form-grid-2col {
    grid-template-columns: 1fr;
  }
}

.custom-glass-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.custom-glass-form label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.custom-glass-form input,
.custom-glass-form select,
.custom-glass-form textarea {
  padding: 0.6875rem 0.875rem;
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-sm, 0.375rem);
  font-family: inherit;
  font-size: 0.875rem;
  background: var(--bg-primary, #ffffff);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-glass-form input:focus,
.custom-glass-form select:focus,
.custom-glass-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}

.btn-submit-glass {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--accent-color, #c8102e);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm, 0.375rem);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-submit-glass:hover {
  transform: translateY(-1px);
  background: #a00c24;
}

.form-alert-box {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm, 0.375rem);
  font-size: 0.875rem;
  font-weight: 600;
}

.form-alert-box.success {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.map-embed-wrapper {
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border-color, #e2e8f0);
}

/* Künye Staff Cards */
.kunye-board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.kunye-staff-card {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-md, 0.75rem);
  padding: 1.5rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kunye-staff-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.staff-role-badge {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  background: rgba(200, 16, 46, 0.08);
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.staff-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.staff-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Reklam Packages Grid */
.section-subheading {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-subheading i {
  color: var(--accent-color);
}

.reklam-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.reklam-pkg-card {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-md, 0.75rem);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reklam-pkg-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.pkg-badge {
  font-size: 0.6875rem;
  font-weight: 800;
  color: #15803d;
  background: #dcfce7;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  align-self: flex-start;
  margin-bottom: 0.75rem;
}

.pkg-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pkg-size {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pkg-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent-color);
  margin-top: auto;
  margin-bottom: 1.25rem;
}

.btn-pkg-action {
  display: block;
  text-align: center;
  padding: 0.625rem 1rem;
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-pkg-action:hover {
  background: #a00c24;
}

/* Careers List */
.careers-list-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.career-job-card {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius-md, 0.75rem);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.job-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.job-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.btn-job-apply {
  padding: 0.5rem 1.25rem;
  background: var(--text-primary, #0f172a);
  color: #ffffff;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-job-apply:hover {
  background: var(--accent-color);
}