/* ============================================================
   BİR ZAMANLAR BULDAN — Ana CSS
   Seçenek 3: Siyah + Kavun Turuncusu
   ============================================================ */

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

/* ---- Değişkenler (Modern Açık Tema — ta73 stili) ---- */
:root {
  --bg:           #ffffff;
  --bg-card:      #ffffff;
  --bg-alt:       #f6f7f9;
  --masthead-bg:  #ffffff;
  --masthead-txt: #16202e;
  --heading:      #16202e;
  --text:         #2b3644;
  --text-light:   #7b8494;
  --accent:       #ea580c;
  --accent-dark:  #c2410c;
  --accent-light: #fb923c;
  --accent-gold:  #eab308;
  --accent-soft:  #fff4ec;
  --border:       #e6e8ec;
  --border-light: #f0f2f5;
  --shadow:       rgba(22, 32, 46, 0.06);
  --shadow-hover: rgba(22, 32, 46, 0.14);
  --strip-bg:     #ea580c;
  --strip-txt:    #ffffff;

  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Manrope', sans-serif;
  --font-body:    'Manrope', sans-serif;

  --radius:    14px;
  --radius-sm: 8px;
  --transition: 0.22s ease;
  --max-width:  1280px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  transition: background-color 0.3s ease, color 0.3s ease;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---- Tipografi ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.2;
  font-weight: 700;
}

.site-title {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--heading);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--accent);
}

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

/* ---- Layout ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 60px 0; }
section:nth-child(even) { background-color: var(--bg-alt); }

/* ============================================================
   MASTHEAD
   ============================================================ */
.masthead {
  background-color: var(--masthead-bg);
  color: var(--masthead-txt);
}

/* Turuncu şerit — en üstte */
.masthead::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--accent);
}

.masthead-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-light);
  max-width: var(--max-width);
  margin: 0 auto;
}

.masthead-date { display: flex; align-items: center; gap: 8px; }
.masthead-date i { color: var(--accent); }

.masthead-brand {
  text-align: center;
  padding: 36px 24px 18px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.masthead-brand .site-title {
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  color: var(--heading);
  letter-spacing: 0.05em;
  line-height: 1;
}

/* "BİR ZAMANLAR" turuncu, "BULDAN" koyu */
.masthead-brand .site-title .highlight { color: var(--accent); }

.masthead-brand .site-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 1vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 10px;
}

/* İnce çift çizgi */
.masthead-divider {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 0;
}
.masthead-divider::before,
.masthead-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.masthead-divider-ornament {
  color: var(--accent);
  font-size: 1rem;
  padding: 0 16px;
  letter-spacing: 8px;
}

/* Navigasyon */
.masthead-nav {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.masthead-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
  padding: 9px 16px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.nav-links a.active {
  color: var(--accent-dark);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1.5px rgba(234,88,12,0.35);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-search, .btn-theme {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  width: 38px;
  height: 38px;
  border-radius: 99px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.btn-search:hover, .btn-theme:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Arama */
.search-bar {
  display: none;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
}
.search-bar.open { display: block; }
.search-bar form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
}
.search-bar input {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}
.search-bar input::placeholder { color: var(--text-light); }
.search-bar input:focus { border-color: var(--accent); }
.search-bar button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background var(--transition);
}
.search-bar button:hover { background: var(--accent-dark); }

/* ============================================================
   İSTATİSTİK ŞERİDİ
   ============================================================ */
.stats-strip {
  background: var(--accent);
  padding: 0;
}

.stats-strip .container {
  display: flex;
  align-items: stretch;
  height: 64px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.25);
  flex: 1;
  justify-content: center;
  transition: background var(--transition);
  cursor: default;
}
.stat-item:first-child { border-left: none; }
.stat-item:last-child  { border-right: none; }
.stat-item:hover { background: rgba(0,0,0,0.1); }

.stat-icon { font-size: 1.2rem; color: rgba(255,255,255,0.85); }

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.stat-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  line-height: 1;
}

.stat-text { display: flex; flex-direction: column; gap: 3px; }

/* ============================================================
   GAZETE MANŞETİ HERO
   ============================================================ */
.manshet-section { padding-bottom: 48px; }

/* Tam genişlik siyah bant */
.manshet-header-wrap {
  background: #0a0a0a;
  border-bottom: 4px solid #ea580c;
  margin-bottom: 24px;
}

/* İç flex düzeni */
.manshet-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  padding: 36px 0 32px;
}

.manshet-header-left { flex: 1; min-width: 0; }

.manshet-ornament {
  font-size: 0.68rem;
  color: #ea580c;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  opacity: 0.65;
}

.manshet-site-name {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 10px;
}

.manshet-accent { color: #ea580c; }

.manshet-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  margin-bottom: 14px;
  font-style: italic;
}

.manshet-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.manshet-stats i { color: #ea580c; margin-right: 4px; }
.manshet-sep { color: #ea580c; }

.manshet-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Günün sözcüğü kutusu */
.manshet-word-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid #ea580c;
  border-radius: 6px;
  padding: 18px 22px;
  min-width: 230px;
  max-width: 280px;
  flex-shrink: 0;
}

.manshet-word-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ea580c;
  margin-bottom: 8px;
}

.manshet-word-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.manshet-word-def {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 10px;
}

.manshet-word-more {
  font-size: 0.7rem;
  font-weight: 700;
  color: #ea580c;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.manshet-word-more:hover { text-decoration: underline; }

/* 4x2 Fotoğraf grid */
.manshet-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.manshet-card {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background: #111;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.manshet-card:hover {
  transform: translateY(-4px);
  border-color: #ea580c;
  box-shadow: 0 8px 24px rgba(234,88,12,0.18);
}

.manshet-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.3s, transform 0.3s;
}

.manshet-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.manshet-card-placeholder {
  width: 100%;
  height: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #2a2a2a;
  font-size: 1.8rem;
  background: #111;
}

.manshet-card-info {
  padding: 9px 12px;
  background: var(--bg-card);
  border-top: 2px solid var(--border);
  transition: border-color 0.25s;
}

.manshet-card:hover .manshet-card-info { border-color: #ea580c; }

.manshet-card-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.manshet-card-year {
  font-size: 0.62rem;
  font-weight: 700;
  color: #ea580c;
  font-family: var(--font-heading);
}

@media (max-width: 900px) {
  .manshet-grid        { grid-template-columns: repeat(3, 1fr); }
  .manshet-header      { flex-direction: column; gap: 24px; }
  .manshet-word-box    { max-width: 100%; min-width: 0; width: 100%; }
}
@media (max-width: 600px) {
  .manshet-grid        { grid-template-columns: repeat(2, 1fr); }
  .manshet-stats       { gap: 8px; }
  .manshet-site-name   { font-size: 1.6rem; }
}

/* Butonlar */
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--heading);
  border: 2px solid var(--heading);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--heading);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   AKAN FOTOĞRAF ŞERİDİ
   ============================================================ */
.slider-section {
  padding: 28px 0;
  background: var(--masthead-bg);
  overflow: hidden;
  position: relative;
}

/* Turuncu kenar çizgisi üst-alt */
.slider-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  z-index: 3;
}

.slider-fade-left,
.slider-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.slider-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--masthead-bg), transparent);
}
.slider-fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--masthead-bg), transparent);
}

.slider-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: slide-left 38s linear infinite;
}
.slider-track:hover { animation-play-state: paused; }

@keyframes slide-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.slider-item {
  flex-shrink: 0;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.slider-item img {
  width: 170px;
  height: 115px;
  object-fit: cover;
  display: block;
  filter: grayscale(30%) brightness(0.8);
  transition: filter var(--transition), transform var(--transition);
}

.slider-item:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.slider-item-year {
  position: absolute;
  bottom: 6px;
  left: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 3px;
  font-family: var(--font-heading);
}

/* ============================================================
   FOTOĞRAF GRİDİ
   ============================================================ */
.photo-grid-section { padding: 60px 0; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.photo-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 6px var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px var(--shadow-hover);
}

.photo-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

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

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

/* Hover'da altta turuncu şerit */
.photo-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--accent);
  padding: 8px 10px;
  transform: translateY(100%);
  transition: transform 0.28s ease;
}
.photo-card:hover .photo-card-overlay { transform: translateY(0); }

.photo-card-overlay-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.photo-card-footer {
  padding: 9px 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid var(--border-light);
}

.photo-card-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.photo-card-year {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-heading);
  flex-shrink: 0;
  margin-left: 6px;
}

.grid-more { text-align: center; margin-top: 36px; }

.see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: gap var(--transition), color var(--transition);
}
.see-all:hover { gap: 14px; color: var(--accent-dark); }

/* ============================================================
   HİKAYELER & MAKALELER
   ============================================================ */
.editorial-section { padding: 60px 0; }

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.editorial-col { min-width: 0; }

.editorial-col-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: var(--heading);
  padding-bottom: 14px;
  border-bottom: 3px solid var(--accent);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.editorial-col-title i { color: var(--accent); }

.editorial-item {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: padding-left var(--transition);
}
.editorial-item:last-of-type { border-bottom: none; }
.editorial-item:hover { padding-left: 6px; }

.editorial-more { margin-top: 18px; }

.editorial-empty {
  padding: 32px 20px;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: 8px;
  color: var(--text-light);
}
.editorial-empty i { font-size: 1.8rem; color: var(--border); margin-bottom: 10px; display: block; }
.editorial-empty p { font-size: 0.82rem; margin-bottom: 14px; font-style: italic; }
.editorial-empty .see-all { font-size: 0.75rem; }

.editorial-item-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  text-align: right;
  transition: color var(--transition);
}
.editorial-item:hover .editorial-item-num { color: var(--accent); }

.editorial-item-content { flex: 1; }

.editorial-item-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.4;
  margin-bottom: 5px;
  transition: color var(--transition);
}
.editorial-item:hover .editorial-item-title { color: var(--accent); }

.editorial-item-meta {
  font-size: 0.72rem;
  color: var(--text-light);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.editorial-item-meta span { display: flex; align-items: center; gap: 4px; }
.editorial-item-meta i { color: var(--accent); }

/* ============================================================
   VİDEOLAR
   ============================================================ */
.videos-section { padding: 60px 0; }

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

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: block;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px var(--shadow-hover);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity var(--transition), transform var(--transition);
}
.video-card:hover .video-thumb img { opacity: 1; transform: scale(1.04); }

.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  padding-left: 4px;
  transition: transform var(--transition), background var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.video-card:hover .video-play { transform: translate(-50%,-50%) scale(1.12); background: var(--accent-dark); }

.video-info { padding: 14px; }
.video-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.4;
  margin-bottom: 6px;
}
.video-meta {
  font-size: 0.7rem;
  color: var(--text-light);
  display: flex;
  gap: 8px;
}

/* ============================================================
   EN ESKİ FOTOĞRAFLAR
   ============================================================ */
.oldest-section { padding: 60px 0; }

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

.oldest-card {
  cursor: pointer;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
  text-decoration: none;
}
.oldest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px var(--shadow-hover);
}

.oldest-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.oldest-card:hover img { transform: scale(1.05); }

.oldest-card-label {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(rgba(0,0,0,0.75), transparent);
  padding: 12px 12px 28px;
}

.oldest-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.oldest-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 30px 12px 12px;
}
.oldest-title {
  font-family: var(--font-heading);
  font-size: 0.73rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-alt);
  color: var(--text);
  padding: 56px 0 0;
  border-top: 4px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .site-title {
  font-size: 1.5rem;
  color: var(--heading);
  margin-bottom: 14px;
}

.footer-brand .site-title .highlight { color: var(--accent); }

.footer-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-email {
  font-size: 0.8rem;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-light);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-links a:hover { color: var(--accent); }
.footer-links a::before { content: '›'; color: var(--accent); font-size: 1.1rem; line-height: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 0.73rem;
  color: var(--text-light);
}

/* ============================================================
   TARİHİ BELGELER — ANA SAYFA
   ============================================================ */
.belgeler-section {
  padding: 64px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.belgeler-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.belgeler-sub { font-size: 0.82rem; color: var(--text-light); font-style: italic; margin-top: 4px; }
.belgeler-header .see-all { white-space: nowrap; }

.belgeler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.belge-on-kart {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.belge-on-kart:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 32px rgba(234,88,12,0.14);
}

.belge-on-kapak {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-alt);
}
.belge-on-kapak img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(40%) brightness(0.75);
  transition: filter .35s, transform .35s;
}
.belge-on-kart:hover .belge-on-kapak img {
  filter: sepia(10%) brightness(0.9);
  transform: scale(1.04);
}
.belge-on-no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--border); font-size: 2.5rem;
}
.belge-on-yil {
  position: absolute;
  bottom: 10px; left: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  line-height: 1;
}

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

.belge-on-tur {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.belge-on-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.4;
  margin-bottom: 8px;
}
.belge-on-meta {
  display: flex;
  gap: 12px;
  font-size: 0.7rem;
  color: var(--text-light);
  flex-wrap: wrap;
  margin-bottom: 12px;
  flex: 1;
}
.belge-on-meta i { color: var(--accent); margin-right: 3px; }
.belge-on-oku {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}
.belge-on-kart:hover .belge-on-oku { gap: 8px; }

/* ============================================================
   RESPONSİF
   ============================================================ */
@media (max-width: 1100px) {
  .photo-grid   { grid-template-columns: repeat(4, 1fr); }
  .oldest-grid  { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .manshet-grid     { grid-template-columns: repeat(2, 1fr); }
  .photo-grid       { grid-template-columns: repeat(3, 1fr); }
  .editorial-grid   { grid-template-columns: 1fr 1fr; gap: 28px; }
  .video-grid       { grid-template-columns: repeat(2, 1fr); }
  .oldest-grid      { grid-template-columns: repeat(3, 1fr); }
  .belgeler-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .stats-strip .container { flex-wrap: wrap; height: auto; padding: 8px 0; }
  .stat-item { padding: 10px 20px; min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
}

@media (max-width: 640px) {
  .photo-grid       { grid-template-columns: repeat(2, 1fr); }
  .video-grid       { grid-template-columns: 1fr; }
  .oldest-grid      { grid-template-columns: repeat(2, 1fr); }
  .editorial-grid   { grid-template-columns: 1fr; }
  .belgeler-grid    { grid-template-columns: 1fr; }
  .nav-links        { display: none; }
  .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
  .masthead-brand .site-title { font-size: clamp(1.5rem, 7vw, 2.5rem); }
}

/* ---- Placeholder (demo) ---- */
.demo-img {
  background: linear-gradient(135deg, #eef0f3 0%, #e2e5ea 100%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c3c9d2;
  font-size: 2.5rem;
}
