/* ===== PRESS.TR - ANA CSS ===== */
:root {
  --red: #c0392b;
  --red-dark: #962d22;
  --red-light: #e74c3c;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --gray: #6c757d;
  --gray-light: #f8f9fa;
  --gray-border: #dee2e6;
  --white: #ffffff;
  --text: #212529;
  --text-light: #6c757d;
  --font: 'Roboto', sans-serif;
  --font-serif: 'Merriweather', serif;
  --shadow: 0 2px 8px rgba(0,0,0,.10);
  --shadow-md: 0 4px 16px rgba(0,0,0,.14);
  --radius: 6px;
  --transition: .2s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font); color: var(--text); background: #f0f2f5; font-size: 15px; line-height: 1.6; overflow-x: hidden; max-width: 100vw; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; width: 100%; }

/* ─── SON DAKİKA BANDI ─────────────────────────────────────── */
.breaking-bar {
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  height: 38px;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100vw;
}
.breaking-label {
  background: var(--dark);
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  gap: 6px;
}
.breaking-ticker { flex: 1; overflow: hidden; position: relative; }
.ticker-inner {
  display: flex;
  gap: 60px;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}
.ticker-inner a { color: #fff; font-size: 13px; font-weight: 500; }
.ticker-inner a:hover { text-decoration: underline; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header { background: #111111; box-shadow: 0 2px 12px rgba(0,0,0,.4); }

.header-top { background: #0a0a0a; color: #aaa; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.06); }
.header-top-inner { display: flex; justify-content: space-between; align-items: center; height: 36px; }
.header-date { display: flex; align-items: center; gap: 6px; }
.header-social { display: flex; gap: 2px; }
.header-social a { color: #ccc; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 4px; transition: var(--transition); }
.header-social a:hover { background: var(--red); color: #fff; }

.header-main { padding: 12px 0; background: #111111; }
.header-main-inner { display: flex; align-items: center; gap: 24px; justify-content: space-between; }

.site-logo { display: flex; flex-direction: column; gap: 2px; text-decoration: none; line-height: 1; }
.logo-svg { display: block; }
.logo-tagline { font-size: 11px; font-weight: 600; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; padding-left: 52px; }
.site-logo--footer .logo-tagline { color: #888; }

.header-ad { flex: 1; max-width: 728px; }

.header-search { display: flex; }
.header-search form { display: flex; border: 2px solid rgba(255,255,255,.2); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.08); }
.header-search input { border: none; padding: 8px 12px; font-size: 14px; outline: none; width: 220px; font-family: var(--font); background: transparent; color: #fff; }
.header-search button { background: var(--red); color: #fff; border: none; padding: 8px 14px; cursor: pointer; transition: var(--transition); }
.header-search button:hover { background: var(--red-dark); }

/* ─── NAVİGASYON ─────────────────────────────────────────── */
.main-nav { background: #1a0000; border-top: 2px solid var(--red); }
.main-nav .container { display: flex; align-items: center; }
.nav-menu { display: flex; list-style: none; overflow-x: auto; scrollbar-width: none; }
.nav-menu::-webkit-scrollbar { display: none; }
.nav-menu li a { display: block; color: #ddd; padding: 12px 14px; font-size: 13.5px; font-weight: 500; white-space: nowrap; transition: var(--transition); }
.nav-menu li a:hover, .nav-menu li a.active { background: var(--red); color: #fff; }
.nav-menu li a.nav-breaking { color: #ff6b6b; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; padding: 10px; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.main-content { padding: 24px 0; min-height: 60vh; }
.content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 24px; }
.section { margin-bottom: 32px; min-width: 0; }
.content-main { min-width: 0; overflow: hidden; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; border-bottom: 3px solid var(--red); padding-bottom: 10px; }
.section-title { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--dark); }
.section-title span { position: relative; }
.section-more { font-size: 13px; color: var(--red); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ─── SLIDER ─────────────────────────────────────────────── */
.slider-section { margin-bottom: 32px; }
.slider { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-md); background: #000; }
.slider-track { display: flex; transition: transform .5s ease; }
.slide { min-width: 100%; position: relative; max-height: 480px; overflow: hidden; }
.slide img { width: 100%; height: 480px; object-fit: cover; opacity: .85; }
.slide-placeholder { width: 100%; height: 480px; background: linear-gradient(135deg, var(--dark) 0%, var(--red) 100%); }
.slide-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 24px 24px; background: linear-gradient(to top, rgba(0,0,0,.9) 0%, transparent 100%); color: #fff; }
.slide-cat { background: var(--red); color: #fff; padding: 3px 10px; border-radius: 4px; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; display: inline-block; }
.slide-info h2 { font-family: var(--font-serif); font-size: clamp(18px, 3vw, 28px); font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.slide-info p { font-size: 14px; opacity: .85; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.slide-time { font-size: 12px; opacity: .7; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.2); color: #fff; border: none; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 16px; transition: var(--transition); z-index: 10; }
.slider-btn:hover { background: var(--red); }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }
.slider-dots { position: absolute; bottom: 12px; right: 16px; display: flex; gap: 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* ─── NEWS CARDS ─────────────────────────────────────────── */
.news-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-img-link { display: block; overflow: hidden; position: relative; aspect-ratio: 16/9; background: var(--gray-light); }
.card-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .card-img-link img { transform: scale(1.04); }
.card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f0f0f0, #e0e0e0); color: #ccc; font-size: 2.5rem; }
.card-body { padding: 14px; }
.card-cat { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 6px; }
.card-title { font-family: var(--font-serif); font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.card-title a { color: var(--dark); }
.card-title a:hover { color: var(--red); }
.card-title--sm { font-size: 14px; }
.card-summary { font-size: 13px; color: var(--text-light); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-light); flex-wrap: wrap; align-items: center; }
.card-meta span { display: flex; align-items: center; gap: 4px; }

/* ─── MANŞET + SÜRMANŞET ──────────────────────────────────── */
.manset-section { margin-bottom: 32px; }
.manset-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px; align-items: stretch; }

.manset-main {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); background: #000; min-height: 420px;
}
.manset-main-link { display: block; position: relative; height: 100%; min-height: 420px; color: #fff; }
.manset-main-link img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.manset-main:hover .manset-main-link img { transform: scale(1.04); }
.manset-main-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, var(--dark) 0%, var(--red) 100%); }
.manset-main-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 36px 28px 26px; background: linear-gradient(to top, rgba(0,0,0,.92) 10%, rgba(0,0,0,.5) 60%, transparent 100%);
}
.manset-cat { background: var(--red); color: #fff; padding: 3px 10px; border-radius: 4px; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; display: inline-block; margin-right: 6px; }
.manset-title { font-family: var(--font-serif); font-size: clamp(22px, 3.2vw, 32px); font-weight: 900; line-height: 1.25; margin-bottom: 10px; }
.manset-summary { font-size: 14.5px; opacity: .88; line-height: 1.5; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.manset-meta { display: flex; gap: 16px; font-size: 12.5px; opacity: .8; flex-wrap: wrap; }
.manset-meta span { display: flex; align-items: center; gap: 5px; }

.surmanset-list { display: flex; flex-direction: column; gap: 12px; }
.surmanset-item { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; flex: 1; transition: var(--transition); }
.surmanset-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.surmanset-item a { display: flex; gap: 12px; align-items: center; height: 100%; color: var(--dark); }
.surmanset-img { width: 110px; min-width: 110px; height: 80px; overflow: hidden; background: var(--gray-light); }
.surmanset-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.surmanset-item:hover .surmanset-img img { transform: scale(1.06); }
.surmanset-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 1.4rem; }
.surmanset-body { padding: 6px 10px 6px 0; flex: 1; min-width: 0; }
.surmanset-cat { font-size: 10.5px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .4px; display: block; margin-bottom: 3px; }
.surmanset-body h3 { font-size: 13.5px; font-weight: 700; line-height: 1.35; color: var(--dark); margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.surmanset-item:hover .surmanset-body h3 { color: var(--red); }
.surmanset-time { font-size: 11px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }

/* Grid layouts */
.featured-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.featured-grid .news-card:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }
.featured-grid .news-card:first-child .card-title { font-size: 22px; }
.news-grid { display: grid; gap: 16px; }
.news-grid--3 { grid-template-columns: repeat(3, 1fr); }
.news-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ─── YAZARLAR ────────────────────────────────────────────── */
.authors-section { background: var(--white); padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow); }
.authors-slider { position: relative; overflow: hidden; }
.authors-track { display: flex; gap: 16px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; scroll-snap-type: x mandatory; }
.authors-track::-webkit-scrollbar { display: none; }
.author-card { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 100px; text-align: center; scroll-snap-align: start; color: var(--dark); font-size: 13px; font-weight: 600; transition: var(--transition); }
.author-card:hover { color: var(--red); }
.author-card img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gray-border); transition: var(--transition); }
.author-card:hover img { border-color: var(--red); }
.author-avatar { width: 70px; height: 70px; border-radius: 50%; background: var(--gray-light); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--gray); }
.authors-btn { position: absolute; top: 50%; transform: translateY(-50%); background: var(--red); color: #fff; border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 14px; z-index: 5; }
.authors-prev { left: 0; }
.authors-next { right: 0; }

/* ─── POPULAR ─────────────────────────────────────────────── */
.popular-scroll { display: flex; gap: 16px; overflow-x: auto; scrollbar-width: thin; padding-bottom: 8px; max-width: 100%; }
.popular-scroll::-webkit-scrollbar { height: 4px; }
.popular-scroll::-webkit-scrollbar-track { background: var(--gray-light); }
.popular-scroll::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }
.popular-card { min-width: 200px; max-width: 200px; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); flex-shrink: 0; }
.popular-card a { display: block; color: var(--dark); }
.popular-card img { width: 100%; height: 120px; object-fit: cover; }
.popular-placeholder { width: 100%; height: 120px; background: var(--gray-light); display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 2rem; }
.popular-info { padding: 10px; }
.popular-info h4 { font-size: 13px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.popular-info span { font-size: 11px; color: var(--text-light); }

/* ─── NEWS LIST ───────────────────────────────────────────── */
.news-list-compact { display: flex; flex-direction: column; gap: 16px; }
.news-list-item { display: flex; gap: 14px; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.list-img { width: 140px; min-width: 140px; overflow: hidden; }
.list-img img { width: 140px; height: 95px; object-fit: cover; transition: transform .3s; }
.news-list-item:hover .list-img img { transform: scale(1.04); }
.list-body { padding: 12px; flex: 1; }
.list-body h3 { font-size: 15px; font-weight: 600; line-height: 1.4; margin-bottom: 6px; }
.list-body h3 a { color: var(--dark); }
.list-body h3 a:hover { color: var(--red); }

/* ─── SIDEBAR ─────────────────────────────────────────────── */
.widget { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px; margin-bottom: 20px; }
.widget-title { font-family: var(--font-serif); font-size: 16px; font-weight: 700; color: var(--dark); padding-bottom: 10px; border-bottom: 2px solid var(--red); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.popular-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.popular-list li a { font-size: 13.5px; color: var(--dark); font-weight: 500; line-height: 1.4; }
.popular-list li a:hover { color: var(--red); }
.cat-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.cat-list li a { display: flex; align-items: center; gap: 8px; padding: 8px 10px; font-size: 14px; border-radius: 4px; color: var(--dark); transition: var(--transition); }
.cat-list li a:hover { background: var(--gray-light); color: var(--red); }
.social-buttons { display: flex; flex-direction: column; gap: 8px; }
.btn-social { display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-radius: var(--radius); font-size: 14px; font-weight: 600; color: #fff; transition: var(--transition); }
.btn-twitter { background: #000; }
.btn-facebook { background: #1877f2; }
.btn-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.btn-telegram { background: #0088cc; }

/* ─── BADGES ──────────────────────────────────────────────── */
.badge { display: inline-block; padding: 2px 8px; border-radius: 3px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.badge-breaking { background: var(--red); color: #fff; }
.badge-lg { font-size: 13px; padding: 4px 12px; }

/* ─── HABER DETAY ─────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--red); }
.breadcrumb i { font-size: 10px; }
.article-detail { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; margin-bottom: 28px; }
.article-header { margin-bottom: 20px; }
.article-cat { font-size: 12px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; display: block; }
.article-title { font-family: var(--font-serif); font-size: clamp(22px, 4vw, 34px); font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 12px; }
.article-summary { font-size: 17px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; font-weight: 400; border-left: 4px solid var(--red); padding-left: 16px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.meta-author { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--dark); }
.meta-author img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.meta-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--gray-light); display: flex; align-items: center; justify-content: center; }
.share-buttons { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.share-buttons span { font-size: 13px; font-weight: 600; color: var(--text-light); }
.share-btn { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; border: none; cursor: pointer; transition: var(--transition); }
.share-twitter { background: #000; }
.share-facebook { background: #1877f2; }
.share-whatsapp { background: #25d366; }
.share-telegram { background: #0088cc; }
.share-copy { background: var(--gray); }
.article-image { margin-bottom: 24px; border-radius: var(--radius); overflow: hidden; }
.article-image img { width: 100%; max-height: 500px; object-fit: cover; }
.article-image figcaption { font-size: 12px; color: var(--text-light); padding: 8px 12px; background: var(--gray-light); font-style: italic; }
.article-video { margin-bottom: 24px; border-radius: var(--radius); overflow: hidden; }
.article-video iframe, .article-video video { width: 100%; aspect-ratio: 16/9; border: none; }
.article-content { font-size: 16px; line-height: 1.8; color: var(--text); }
.article-content p { margin-bottom: 1.2em; }
.article-content h2, .article-content h3 { font-family: var(--font-serif); margin: 1.5em 0 .6em; color: var(--dark); }
.article-content img { border-radius: var(--radius); margin: 1em 0; }
.article-content blockquote { border-left: 4px solid var(--red); padding: 12px 20px; background: var(--gray-light); margin: 1.5em 0; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--text-light); }
.article-tags { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--gray-border); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.tag { background: var(--gray-light); color: var(--dark); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; transition: var(--transition); }
.tag:hover { background: var(--red); color: #fff; }
.article-nav { display: flex; gap: 16px; margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--gray-border); }
.article-nav-btn { flex: 1; display: flex; align-items: center; gap: 12px; padding: 14px; background: var(--gray-light); border-radius: var(--radius); color: var(--dark); transition: var(--transition); font-size: 13px; }
.article-nav-btn:hover { background: var(--red); color: #fff; }
.article-nav-btn--right { justify-content: flex-end; text-align: right; }
.article-nav-btn small { display: block; color: var(--text-light); font-size: 11px; margin-bottom: 2px; }
.article-nav-btn:hover small { color: rgba(255,255,255,.7); }

/* Galeri */
.article-gallery h3 { font-family: var(--font-serif); font-size: 18px; margin-bottom: 12px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 120px; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.05); }
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.lightbox-box { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-box img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-box button { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }

/* ─── SAYFALAMA ───────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.page-btn { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--radius); background: var(--white); color: var(--dark); font-size: 14px; box-shadow: var(--shadow); transition: var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--red); color: #fff; }

/* ─── SAYFA BAŞLIĞI ───────────────────────────────────────── */
.page-header { background: var(--white); padding: 20px 24px; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 24px; border-left: 5px solid var(--red); }
.page-header h1 { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--dark); }
.page-header p { color: var(--text-light); margin-top: 6px; }

/* ─── ARŞİV ───────────────────────────────────────────────── */
.archive-layout { display: grid; grid-template-columns: 1fr 250px; gap: 24px; }
.archive-sidebar { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px; }
.archive-list { list-style: none; }
.archive-list li a { display: flex; justify-content: space-between; align-items: center; padding: 8px 10px; border-radius: 4px; color: var(--dark); font-size: 14px; transition: var(--transition); }
.archive-list li a:hover, .archive-list li a.active { background: var(--red); color: #fff; }
.archive-count { background: var(--gray-light); color: var(--text-light); padding: 2px 8px; border-radius: 20px; font-size: 12px; }
.archive-list li a.active .archive-count { background: rgba(255,255,255,.2); color: #fff; }

/* ─── İLETİŞİM ────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; }
.search-form-big { display: flex; gap: 10px; margin-bottom: 28px; }
.search-form-big input { flex: 1; padding: 12px 16px; border: 2px solid var(--gray-border); border-radius: var(--radius); font-size: 15px; font-family: var(--font); }
.search-form-big button { background: var(--red); color: #fff; border: none; padding: 12px 24px; border-radius: var(--radius); cursor: pointer; font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 14px; border: 1.5px solid var(--gray-border); border-radius: var(--radius); font-size: 14px; font-family: var(--font); outline: none; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,.1); }
.contact-info { background: var(--white); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-info h3 { font-family: var(--font-serif); margin-bottom: 16px; }
.contact-info p { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.contact-social { display: flex; gap: 10px; margin-top: 16px; }
.contact-social a { width: 40px; height: 40px; background: var(--dark); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.contact-social a:hover { background: var(--red); }
.contact-form-wrap { background: var(--white); padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow); }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; border: none; padding: 10px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); text-decoration: none; font-family: var(--font); }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ─── STATİK SAYFALAR ─────────────────────────────────────── */
.static-content { background: var(--white); padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); font-size: 15px; line-height: 1.8; }
.static-content h3 { font-family: var(--font-serif); font-size: 20px; margin: 24px 0 12px; color: var(--dark); }
.static-content h4 { font-size: 16px; margin: 16px 0 8px; color: var(--dark); }
.masthead-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.masthead-table th, .masthead-table td { padding: 10px 14px; border: 1px solid var(--gray-border); text-align: left; }
.masthead-table th { background: var(--gray-light); font-weight: 600; width: 180px; }
.masthead-team { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-top: 16px; }
.masthead-member { text-align: center; padding: 20px; background: var(--gray-light); border-radius: var(--radius); }
.masthead-member img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; }
.masthead-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--gray-border); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--gray); margin: 0 auto 12px; }
.masthead-member h4 { font-weight: 700; margin-bottom: 4px; }
.masthead-member span { font-size: 12px; color: var(--text-light); text-transform: capitalize; }

/* ─── YAZAR ────────────────────────────────────────────────── */
.author-profile { background: var(--white); padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 28px; }
.author-profile-header { display: flex; gap: 24px; align-items: flex-start; }
.author-big-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--red); }
.author-big-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--gray-light); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--gray); }

/* ─── BOŞLUK ───────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-light); }
.empty-state i { font-size: 3rem; margin-bottom: 16px; opacity: .4; display: block; }
.ad-banner { margin: 20px 0; text-align: center; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: #bbb; padding: 48px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--red); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #bbb; font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--red); }
.footer-col p { font-size: 14px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-col p a { color: #bbb; }
.footer-about p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.1); color: #ddd; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: 13px; color: #888; }
.footer-bottom p + p { margin-top: 4px; }
.btn-contact { display: inline-block; background: var(--red); color: #fff; padding: 8px 18px; border-radius: var(--radius); font-size: 14px; margin-top: 12px; }

/* ─── WHATSAPP / SCROLL ───────────────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 80px; right: 20px; z-index: 999;
  background: #25d366; color: #fff; width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: var(--transition); animation: pulse 2.5s infinite;
}
.whatsapp-btn:hover { background: #128c7e; color: #fff; transform: scale(1.1); }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 28px rgba(37,211,102,.7); } }

.scroll-top {
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  background: var(--dark); color: #fff; width: 44px; height: 44px;
  border-radius: 50%; border: none; font-size: 16px; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: var(--transition);
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--red); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .featured-grid .news-card:first-child { grid-column: 1 / -1; grid-row: auto; }
  .news-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .manset-grid { grid-template-columns: 1fr; }
  .manset-main, .manset-main-link { min-height: 340px; }
  .surmanset-list { flex-direction: row; flex-wrap: wrap; }
  .surmanset-item { flex: 1 1 calc(50% - 6px); min-width: 240px; }
}
@media (max-width: 768px) {
  .logo-press, .logo-dot, .logo-tr { font-size: 28px; }
  .header-top { display: none; }
  .header-ad { display: none; }
  .header-main { padding: 10px 0; }
  .header-main-inner { flex-wrap: wrap; gap: 10px; }
  .site-logo .logo-svg { height: 38px; }
  .logo-tagline { padding-left: 42px; font-size: 10px; }
  .header-search { order: 3; width: 100%; }
  .header-search form { width: 100%; }
  .header-search input { width: 100%; flex: 1; }
  .nav-toggle { display: block; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark); z-index: 100; max-height: 70vh; overflow-y: auto; }
  .nav-menu.open { display: flex; }
  .nav-menu li a { padding: 13px 16px; }
  .main-nav { position: relative; }
  .featured-grid { grid-template-columns: 1fr; }
  .news-grid--3, .news-grid--4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-layout { grid-template-columns: 1fr; }
  .archive-layout { grid-template-columns: 1fr; }
  .article-detail { padding: 16px; }
  .article-nav { flex-direction: column; }
  .author-profile-header { flex-direction: column; align-items: center; text-align: center; }
  .container { padding: 0 12px; }
  .manset-main, .manset-main-link { min-height: 280px; }
  .manset-main-overlay { padding: 22px 16px 16px; }
  .manset-title { font-size: 19px; }
  .manset-summary { display: none; }
  .surmanset-list { flex-direction: column; }
  .surmanset-item { flex: none; min-width: 0; }
  .surmanset-img { width: 90px; min-width: 90px; height: 68px; }
  .masthead-table { display: block; overflow-x: auto; white-space: nowrap; }
  .breaking-label { font-size: 11px; padding: 0 10px; }
  .news-list-item { flex-direction: row; }
  .list-img { width: 110px; min-width: 110px; }
  .list-img img { width: 110px; height: 78px; }
}
@media (max-width: 480px) {
  .news-grid--3, .news-grid--4 { grid-template-columns: 1fr; }
  .list-img { width: 90px; min-width: 90px; }
  .list-img img { width: 90px; height: 64px; }
  .slide img, .slide-placeholder { height: 220px; }
  .slide-info { padding: 18px 14px 14px; }
  .slide-info h2 { font-size: 15px; }
  .slide-info p { display: none; }
  .popular-card { min-width: 150px; max-width: 150px; }
  .manset-main, .manset-main-link { min-height: 220px; }
  .manset-title { font-size: 16px; -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .manset-meta { font-size: 11px; gap: 10px; }
  .surmanset-body h3 { font-size: 12.5px; }
  .surmanset-img { width: 76px; min-width: 76px; height: 58px; }
  .header-search input { font-size: 13px; }
  .whatsapp-btn { width: 48px; height: 48px; font-size: 22px; right: 14px; bottom: 70px; }
  .scroll-top { width: 38px; height: 38px; right: 14px; bottom: 16px; }
  .section-title { font-size: 17px; }
  .article-title { font-size: 21px; }
  .card-title { font-size: 14.5px; }
}
@media (max-width: 360px) {
  .surmanset-item a { flex-direction: column; align-items: flex-start; }
  .surmanset-img { width: 100%; height: 130px; }
}

/* ─── YAZARLAR V2 ─────────────────────────────────────────── */
.authors-section { background: var(--white); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 32px; }
.authors-wrapper { position: relative; display: flex; align-items: center; gap: 0; min-width: 0; max-width: 100%; }
.authors-viewport { flex: 1; overflow: hidden; min-width: 0; }
.authors-track { display: flex; gap: 16px; padding: 8px 4px; transition: transform .4s ease; }

/* Yazar Kartı V2 */
.author-card-v2 {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  min-width: 130px; max-width: 130px; text-decoration: none; color: var(--dark);
  flex-shrink: 0; text-align: center; cursor: pointer;
}
.author-card-inner {
  position: relative; width: 90px; height: 90px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--gray-border); transition: border-color .25s, transform .25s;
  flex-shrink: 0;
}
.author-card-v2:hover .author-card-inner { border-color: var(--red); transform: scale(1.05); }
.author-card-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.author-avatar-v2 {
  width: 100%; height: 100%; background: linear-gradient(135deg, var(--dark), var(--red));
  display: flex; align-items: center; justify-content: center;
}
.author-avatar-v2 span { color: #fff; font-size: 32px; font-weight: 900; font-family: var(--font-serif); }

/* Hover overlay */
.author-card-overlay {
  position: absolute; inset: 0; background: rgba(192,57,43,.85);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s; color: #fff; gap: 4px;
  border-radius: 50%;
}
.author-card-v2:hover .author-card-overlay { opacity: 1; }
.author-card-overlay i { font-size: 18px; }
.author-card-overlay span { font-size: 10px; font-weight: 700; }

/* Yazar bilgi alanı */
.author-card-info { width: 100%; }
.author-card-info strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 2px; }
.author-card-v2:hover .author-card-info strong { color: var(--red); }
.author-role { font-size: 11px; color: var(--red); font-weight: 600; display: block; margin-bottom: 4px; }
.author-bio-short { font-size: 11px; color: var(--text-light); line-height: 1.4; display: none; }

/* Ok butonları */
.authors-arrow {
  background: var(--white); border: 2px solid var(--gray-border); color: var(--dark);
  width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; cursor: pointer; transition: var(--transition);
  font-size: 14px; flex-shrink: 0; z-index: 5;
}
.authors-arrow:hover { background: var(--red); border-color: var(--red); color: #fff; }
.authors-arrow-prev { margin-right: 8px; }
.authors-arrow-next { margin-left: 8px; }

/* Geniş ekranda biyografi göster */
@media (min-width: 1200px) {
  .author-card-v2 { min-width: 150px; max-width: 150px; }
  .author-bio-short { display: block; }
}
@media (max-width: 480px) {
  .author-card-v2 { min-width: 100px; max-width: 100px; }
  .author-card-inner { width: 70px; height: 70px; }
  .author-avatar-v2 span { font-size: 24px; }
}

/* ─── PRESSNEWS.TR LOGO & HEADER OVERRIDE ─────────────────── */
.header-search input::placeholder { color: rgba(255,255,255,.4); }
.header-top-inner { min-height: 34px; }


/* ─── CANLI WİDGET BARI (ALTIN + HAVA DURUMU) ──────────────────────────── */
.live-widgets-bar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  overflow: hidden;
}
.live-widgets-inner {
  display: flex;
  gap: 0;
  min-height: 80px;
}

/* Altın Fiyatları */
.lw-gold {
  flex: 1;
  padding: 14px 16px;
  border-right: 2px solid var(--gray-light);
  min-width: 0;
}
.lw-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--red);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lw-gold-items {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.lw-gold-item {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fafafa;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12.5px;
  white-space: nowrap;
}
.lw-gold-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 12px;
}
.lw-gold-price {
  font-weight: 800;
  color: #b8860b;
  font-size: 13px;
}
.lw-gold-change {
  font-size: 11px;
  font-weight: 700;
}
.lw-gold-change.up   { color: #27ae60; }
.lw-gold-change.down { color: var(--red); }
.lw-updated {
  display: block;
  font-size: 10px;
  color: #aaa;
  margin-top: 6px;
}
.lw-loading { font-size: 13px; color: #aaa; }
.lw-error   { font-size: 12px; color: var(--red); }

/* Hava Durumu */
.lw-weather {
  width: 220px;
  min-width: 200px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.lw-weather .lw-title { color: #7ec8e3; }
.lw-weather-city {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 6px;
}
.lw-weather-main {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lw-weather-icon { font-size: 28px; line-height: 1; }
.lw-weather-temp {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.lw-weather-desc {
  font-size: 12px;
  color: #bbb;
  margin-top: 4px;
}
.lw-weather-details {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  font-size: 11px;
  color: #999;
}
.lw-weather-details i { color: #7ec8e3; }

/* Responsive */
@media (max-width: 768px) {
  .live-widgets-inner { flex-direction: column; }
  .lw-gold { border-right: none; border-bottom: 2px solid var(--gray-light); }
  .lw-weather { width: 100%; min-width: 0; }
  .lw-gold-items { gap: 4px; }
  .lw-gold-item { font-size: 11px; padding: 4px 7px; }
}
@media (max-width: 480px) {
  .lw-gold-item { padding: 3px 6px; }
  .lw-gold-name { display: none; }
}

/* ─── SİDEBAR POPULAR LIST ─────────────────────────────────────────────── */
.popular-list { list-style: none; }
.popular-list-item { border-bottom: 1px solid var(--gray-light); }
.popular-list-item:last-child { border-bottom: none; }
.popular-list-item a {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 0; color: var(--dark); text-decoration: none;
  transition: var(--transition);
}
.popular-list-item a:hover { color: var(--red); }
.popular-list-item img {
  width: 64px; height: 48px; object-fit: cover;
  border-radius: 4px; flex-shrink: 0;
}
.popular-list-placeholder {
  width: 64px; height: 48px; background: var(--gray-light);
  border-radius: 4px; display: flex; align-items: center;
  justify-content: center; color: #ccc; flex-shrink: 0;
}
.popular-list-info { flex: 1; min-width: 0; }
.popular-list-title {
  display: block; font-size: 13px; font-weight: 600;
  line-height: 1.4; margin-bottom: 4px;
}
.popular-list-meta { font-size: 11px; color: var(--text-light); }
