:root {
  --ink: #141414;
  --muted: #676767;
  --paper: #f7f5f0;
  --surface: #ffffff;
  --red: #c91f32;
  --red-dark: #991728;
  --gold: #d9a441;
  --green: #176b5b;
  --line: rgba(20, 20, 20, 0.12);
  --shadow: 0 18px 60px rgba(20, 20, 20, 0.14);
  --shadow-hover: 0 26px 70px rgba(20, 20, 20, 0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --ease: 220ms cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;
  --market-up: #34d399;
  --market-down: #f87171;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
}

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

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

[hidden] {
  display: none !important;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 245, 240, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.top-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 9px clamp(16px, 4vw, 56px);
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}

.weather-widget {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  font-weight: 700;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding-right: 20px;
}

.weather-icon {
  font-size: 16px;
}

.market-ticker {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.market-track {
  display: flex;
  gap: 40px;
  min-width: max-content;
  animation: marketScroll 22s linear infinite;
}

@keyframes marketScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.market-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.market-item .market-name {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
}

.market-item .market-change.is-up {
  color: var(--market-up);
}

.market-item .market-change.is-down {
  color: var(--market-down);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 84px;
  padding: 0 clamp(16px, 4vw, 56px);
}

.menu-button {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 10px;
  cursor: pointer;
  transition: border-color var(--ease);
}

.menu-button:hover {
  border-color: var(--red);
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 2px;
  transition: opacity var(--ease);
}

.brand:hover {
  opacity: 0.85;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
}

.brand-accent {
  color: var(--red);
}

.brand-rest {
  color: var(--ink);
}

.brand-tagline {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1 1 auto;
  justify-content: flex-end;
  color: #292929;
  font-weight: 700;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--red);
  transition: right var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--red);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  right: 0;
}

.search-form {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 4px 4px 14px;
  background: var(--surface);
}

.search-form input {
  border: none;
  background: transparent;
  font: inherit;
  font-size: 14px;
  width: 130px;
  color: var(--ink);
}

.search-form input:focus {
  outline: none;
}

.search-form button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  transition: background var(--ease);
}

.search-form button:hover {
  background: var(--red-dark);
}

/* Ana haber bölümü: kompakt slider + yan kartlar */

.hero-section {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
  padding: 16px clamp(16px, 4vw, 56px) 0;
}

.hero-slider {
  position: relative;
  height: clamp(320px, 38vw, 440px);
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius-lg);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0.05) 100%);
}

.hero-slide-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(24px, 5vw, 56px) clamp(16px, 6vw, 88px) clamp(56px, 8vw, 84px);
  max-width: 820px;
  color: #fff;
}

.hero-slide-content h2 {
  margin: 10px 0 12px;
  font-size: clamp(26px, 4.5vw, 52px);
  line-height: 1.05;
  color: #fff;
}

.hero-slide-content p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.6vw, 19px);
}

.hero-slide-content .news-date {
  color: rgba(255, 255, 255, 0.75);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--ease);
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

.hero-arrow-prev {
  left: 16px;
}

.hero-arrow-next {
  right: 16px;
}

.hero-pagination {
  position: absolute;
  z-index: 3;
  bottom: 14px;
  right: 16px;
  display: flex;
  gap: 6px;
}

.hero-page-button {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}

.hero-page-button:hover {
  background: rgba(255, 255, 255, 0.45);
}

.hero-page-button.is-active {
  background: var(--red);
  transform: scale(1.1);
}

.hero-slider .loading-state {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.hero-side-cards {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
}

.hero-side-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}

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

.hero-side-card img {
  width: 96px;
  height: 100%;
  object-fit: cover;
}

.hero-side-card-body {
  padding: 8px 10px 8px 0;
  display: grid;
  align-content: center;
  gap: 2px;
  min-width: 0;
}

.hero-side-card-body .category {
  padding: 2px 8px;
  font-size: 10px;
}

.hero-side-card-body .news-date {
  font-size: 11px;
  margin-left: 6px;
}

.hero-side-card-body h3 {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-side-card-body p {
  display: none;
}

/* Shared text styles */

.section-heading span,
.esalsat-band-eyebrow,
.category {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.category {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(217, 164, 65, 0.14);
}

.news-date {
  display: inline-block;
  margin-left: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(153, 23, 40, 0.35);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.button.secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Son Dakika ticker */

.ticker {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--red);
  color: #fff;
  padding: 12px clamp(16px, 4vw, 56px);
}

.ticker strong {
  flex: 0 0 auto;
  color: #fff;
  text-transform: uppercase;
}

.ticker-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 36px;
  min-width: max-content;
  animation: moveTicker 28s linear infinite;
}

@keyframes moveTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-45%);
  }
}

/* Sections */

.section {
  padding: clamp(54px, 8vw, 96px) clamp(16px, 4vw, 56px);
}

.section.compact {
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 64px);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.loading-state {
  color: var(--muted);
  padding: 24px 0;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--red);
  font-weight: 900;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 900;
}

.detail-article {
  max-width: 780px;
  margin: 0 auto;
}

.detail-image {
  width: 100%;
  height: clamp(240px, 40vw, 460px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}

.detail-article h1 {
  margin: 10px 0 18px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}

.detail-summary {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 20px;
}

.detail-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.detail-share a {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  transition: border-color var(--ease), color var(--ease);
}

.detail-share a:hover {
  border-color: var(--red);
  color: var(--red);
}

.detail-content p {
  margin: 0 0 16px;
  color: #333;
  font-size: 17px;
  line-height: 1.75;
}

#detail-video:not(:empty) {
  max-width: 780px;
  margin: 24px auto 0;
}

.detail-prev-next {
  max-width: 780px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.detail-nav-link {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.detail-nav-link:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.detail-nav-link span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.detail-nav-next {
  text-align: right;
}

.legal-page .legal-content {
  max-width: 720px;
  display: grid;
  gap: 12px;
}

.legal-content h3 {
  margin: 16px 0 0;
}

.legal-content p {
  color: #333;
  line-height: 1.7;
}

.legal-note {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--paper);
  border-radius: var(--radius-md);
  color: var(--muted) !important;
  font-size: 14px;
}

/* İletişim sayfası */

.contact-heading {
  max-width: 640px;
}

.contact-lead {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 620px;
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 12px;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}

.contact-info-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.contact-info-icon {
  font-size: 22px;
  flex: 0 0 auto;
}

.contact-info-item h3 {
  margin: 0 0 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--red);
  font-family: var(--font-body);
}

.contact-info-item a,
.contact-info-item > div > span {
  color: var(--ink);
  font-weight: 700;
}

.contact-info-item a:hover {
  color: var(--red);
}

.contact-info-platforms {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-info-platforms a {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.contact-info-platforms a:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(201, 31, 50, 0.06);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  resize: vertical;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(201, 31, 50, 0.12);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-submit {
  justify-self: start;
}

.contact-status {
  margin: 0;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
}

.contact-status.is-success {
  background: rgba(23, 107, 91, 0.12);
  color: var(--green);
}

.contact-status.is-error {
  background: rgba(153, 23, 40, 0.1);
  color: var(--red-dark);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .detail-prev-next {
    grid-template-columns: 1fr;
  }

  .detail-nav-next {
    text-align: left;
  }
}

.section-link::after {
  content: "\2192";
}

/* Feed grid: 2 large + small cards */

.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.feed-grid > .loading-state {
  grid-column: 1 / -1;
}

.feed-card,
.story-card {
  display: block;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}

.feed-card:hover,
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.feed-card img,
.story-card img {
  width: 100%;
  object-fit: cover;
}

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

.feed-card-body h3 {
  margin: 8px 0 8px;
  line-height: 1.15;
}

.feed-card-body p {
  margin: 0;
  color: var(--muted);
}

.feed-card-large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}

.feed-card-large img {
  height: 100%;
}

.feed-card-large .feed-card-body {
  align-self: end;
  padding: 26px;
}

.feed-card-large .feed-card-body h3 {
  font-size: 24px;
}

.feed-card-small {
  grid-column: span 2;
}

.feed-card-small img {
  height: 170px;
}

.feed-card-small .feed-card-body {
  padding: 16px;
}

.feed-card-small .feed-card-body h3 {
  font-size: 17px;
  margin: 8px 0 0;
}

.feed-card-small .feed-card-body p {
  display: none;
}

.story-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.story-card img {
  height: 190px;
}

.story-card .feed-card-body h3 {
  font-size: 19px;
}

/* ESalsat premium band */

.esalsat-band {
  margin: 20px clamp(16px, 4vw, 56px) 0;
  padding: clamp(22px, 3vw, 32px) clamp(20px, 4vw, 40px);
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.1), transparent 55%), linear-gradient(135deg, var(--red) 0%, var(--red-dark) 55%, #3d0a11 100%);
  color: #fff;
  border-radius: var(--radius-lg);
}

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

.esalsat-band-text {
  max-width: 620px;
}

.esalsat-band-eyebrow {
  color: var(--gold);
}

.esalsat-band-heading {
  margin: 6px 0 8px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
  color: #fff;
}

.esalsat-band-categories {
  margin: 4px 0 0;
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.esalsat-band-copy {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  white-space: pre-line;
  max-width: 560px;
}

.esalsat-band-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  max-width: 560px;
}

.esalsat-band-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease);
}

.esalsat-band-feature:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

.esalsat-band-feature-icon {
  font-size: 15px;
  flex: 0 0 auto;
}

.esalsat-band-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.esalsat-band-social {
  display: flex;
  gap: 8px;
}

.esalsat-band-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 900;
  transition: background var(--ease), border-color var(--ease);
}

.esalsat-band-social a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* Ana içerik + sidebar düzeni */

.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
  padding: 0 clamp(16px, 4vw, 56px) clamp(40px, 6vw, 64px);
}

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

.content-main .section,
.content-main .section.compact {
  padding-left: 0;
  padding-right: 0;
}

.content-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
}

.sidebar-card h3 {
  margin: 0 0 16px;
  font-size: 19px;
}

.most-read-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.most-read-list li a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.most-read-rank {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.most-read-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  transition: color var(--ease);
}

.most-read-list li a:hover .most-read-title {
  color: var(--red);
}

/* ESalsat teaser kartları */

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

.esalsat-teaser-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 24px 16px;
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}

.esalsat-teaser-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.esalsat-teaser-icon {
  font-size: 32px;
}

.esalsat-teaser-card strong {
  font-size: 15px;
}

.esalsat-teaser-card span {
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
}

/* Mini list (Eskişehir Son Dakika / Son Haberler) */

.mini-list {
  display: grid;
  gap: 14px;
  margin-bottom: 8px;
}

.mini-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}

.mini-list-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
}

.mini-list-item img {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.mini-list-item-body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.mini-list-item-body h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

/* Video Haberler (Reels tarzı) */

.video-reel-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.video-reel-card {
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: start;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}

.video-reel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.video-reel-card iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  display: block;
}

.video-thumb-link {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  background: var(--ink);
}

.video-thumb-link .play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 40px;
  background: rgba(0, 0, 0, 0.35);
}

.video-card-body {
  padding: 12px;
}

.video-card-body h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.video-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.video-empty-state {
  width: 100%;
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  font-size: 17px;
  font-weight: 700;
}

/* Footer */

.footer {
  padding: 40px clamp(16px, 4vw, 56px) 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-about .brand-wordmark {
  font-size: 24px;
}

.footer-about .brand-rest {
  color: #fff;
}

.footer-about p {
  margin: 10px 0 16px;
  max-width: 320px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  transition: border-color var(--ease), color var(--ease);
}

.footer-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-column h4 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column a {
  font-size: 14px;
  transition: color var(--ease);
}

.footer-column a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 16px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height var(--ease), opacity var(--ease), transform var(--ease), padding var(--ease);
  }

  .nav-links.is-open {
    max-height: 480px;
    opacity: 1;
    transform: translateY(0);
    padding: 10px 16px 16px;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 0;
  }

  .search-form {
    margin: 10px 0;
  }

  .feed-card-large {
    grid-column: span 6;
    grid-template-columns: 1fr;
  }

  .feed-card-large img {
    height: 240px;
  }

  .feed-card-small {
    grid-column: span 3;
  }

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

  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-side-cards {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }

  .hero-side-card {
    flex: 0 0 auto;
    width: 270px;
    scroll-snap-align: start;
  }

  .content-with-sidebar {
    grid-template-columns: 1fr;
  }

  .content-sidebar {
    order: 3;
  }
}

@media (max-width: 560px) {
  .top-strip {
    display: none;
  }

  .brand-wordmark {
    font-size: 24px;
  }

  .hero-slider {
    height: 260px;
  }

  .hero-slide-content h2 {
    font-size: 20px;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .ticker {
    align-items: flex-start;
    flex-direction: column;
  }

  .feed-card-small {
    grid-column: span 6;
  }

  .video-reel-card {
    width: 160px;
  }

  .mini-list-item img {
    width: 64px;
    height: 64px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .esalsat-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .esalsat-band-actions {
    width: 100%;
    justify-content: space-between;
  }

  .esalsat-band-features {
    grid-template-columns: 1fr;
    max-width: none;
  }

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