/* =====================================================================
   HaberPro Default Theme - Milliyet Style v2
   ===================================================================== */

:root {
    --brand: #c8102e;
    --brand-dark: #a30d24;
    --brand-light: #e63946;
    --black: #0a0a0a;
    --gray-900: #1a1a1a;
    --gray-800: #2a2a2a;
    --gray-700: #404040;
    --gray-600: #6b6b6b;
    --gray-500: #8a8a8a;
    --gray-400: #b0b0b0;
    --gray-300: #d4d4d4;
    --gray-200: #e8e8e8;
    --gray-100: #f4f4f4;
    --gray-50:  #fafafa;
    --white: #ffffff;

    --text: #0f0f0f;
    --text-soft: #404040;
    --text-muted: #6b6b6b;
    --link: #0f0f0f;
    --link-hover: var(--brand);

    --border: #e5e5e5;
    --border-soft: #f0f0f0;

    --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
    --shadow:    0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);

    --serif: 'Merriweather', 'Georgia', 'Times New Roman', Times, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    --container: 1280px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0; padding: 0;
    font-family: var(--sans);
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'cv11', 'ss01', 'kern';
}
a { color: var(--link); text-decoration: none; transition: color .15s; }
a:hover { color: var(--link-hover); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-family: var(--serif); font-weight: 700; line-height: 1.25; color: var(--text); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 16px; }

/* =====================================================================
   TOP BAR (üst gri şerit - sosyal medya + tarih)
   ===================================================================== */
.topbar {
    background: var(--gray-100);
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
}
.topbar .container {
    display: flex;
    align-items: center;
    height: 32px;
    gap: 16px;
}
.topbar .date { font-weight: 600; color: var(--text-soft); }
.topbar nav { margin-left: auto; display: flex; gap: 12px; align-items: center; }
.topbar nav a { color: var(--text-muted); font-weight: 500; }
.topbar nav a:hover { color: var(--brand); }
.topbar nav a.topbar-plugin {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--brand);
    color: #fff !important;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11.5px;
    margin-left: 4px;
}
.topbar nav a.topbar-plugin:hover { background: #b91c1c; color: #fff !important; }
.topbar nav a.topbar-plugin svg { flex-shrink: 0; }
.topbar .social { display: flex; gap: 8px; align-items: center; margin-left: 16px; }
.topbar .social a {
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 3px; color: var(--text-muted);
}
.topbar .social a:hover { color: var(--brand); }
.topbar .social svg { width: 14px; height: 14px; }

/* =====================================================================
   HEADER (logo + arama + giriş + menü)
   ===================================================================== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}
.site-header .container {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
}
.brand {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -1px;
    line-height: 1;
    font-style: italic;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.brand:hover { color: var(--brand-dark); }
.brand sup { font-size: 14px; vertical-align: super; }
.brand-logo { max-height: 56px; max-width: 280px; height: auto; width: auto; display: block; }

.header-search {
    flex: 1;
    max-width: 520px;
    position: relative;
}
.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    max-height: 480px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}
.search-dropdown.show { display: block; }
.search-dropdown .item {
    display: flex;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-soft);
    text-decoration: none;
    color: var(--text);
    transition: background .12s;
}
.search-dropdown .item:hover { background: var(--gray-100); }
.search-dropdown .item:last-child { border-bottom: 0; }
.search-dropdown .thumb {
    width: 56px; height: 40px;
    object-fit: cover;
    border-radius: 3px;
    background: var(--gray-200);
    flex-shrink: 0;
}
.search-dropdown .info { flex: 1; min-width: 0; }
.search-dropdown .cat-tag {
    color: var(--brand);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px;
}
.search-dropdown .ttl {
    font-size: 13px;
    line-height: 1.35;
    font-family: var(--serif);
    font-weight: 600;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.search-dropdown .footer-hint {
    padding: 10px 14px;
    background: var(--gray-50);
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 700;
}
.search-dropdown .empty { padding: 20px; text-align: center; color: var(--text-muted); font-size: 13px; }
.header-search input {
    width: 100%;
    padding: 10px 44px 10px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    background: var(--gray-50);
    outline: none;
    transition: all .15s;
    font-family: inherit;
}
.header-search input:focus {
    border-color: var(--brand);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200,16,46,.08);
}
.header-search button {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 44px;
    border: 0; background: var(--brand);
    color: var(--white);
    border-radius: 0 6px 6px 0;
    display: flex; align-items: center; justify-content: center;
}
.header-search button:hover { background: var(--brand-dark); }
.header-search svg { width: 16px; height: 16px; }

.header-actions { display: flex; gap: 8px; align-items: center; }
.btn-menu, .btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: all .15s;
    text-decoration: none;
}
.btn-menu:hover { background: var(--gray-100); }
.btn-login {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
}
.btn-login:hover {
    background: var(--brand-dark);
    color: var(--white);
    border-color: var(--brand-dark);
}
.btn-menu svg, .btn-login svg { width: 14px; height: 14px; }

/* =====================================================================
   ANA NAVIGASYON (kırmızı son dakika + kategoriler)
   ===================================================================== */
.main-nav {
    border-bottom: 2px solid var(--brand);
    background: var(--white);
    position: sticky;
    top: 73px; /* header altı */
    z-index: 49;
}
.main-nav-inner {
    display: flex;
    align-items: stretch;
    height: 48px;
    overflow: hidden;
}
.son-dakika-btn {
    background: var(--brand);
    color: var(--white);
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    flex-shrink: 0;
    text-decoration: none;
}
.son-dakika-btn:hover { color: var(--white); background: var(--brand-dark); }
.son-dakika-btn .dot {
    width: 8px; height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

.cat-nav {
    display: flex;
    align-items: stretch;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav a {
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .3px;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    text-decoration: none;
    transition: all .15s;
}
.cat-nav a:hover, .cat-nav a.active {
    color: var(--brand);
    border-bottom-color: var(--brand);
}
.cat-nav .cat-nav-plugin {
    background: var(--brand);
    color: #fff !important;
    margin-right: 4px;
    padding: 0 12px;
    border-radius: 4px;
    border-bottom-color: transparent !important;
    align-self: center;
    height: 30px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.cat-nav .cat-nav-plugin svg { flex-shrink: 0; }
.cat-nav .cat-nav-plugin-first {
    margin-left: auto;
}
.cat-nav .cat-nav-plugin:hover {
    background: #b91c1c;
    color: #fff !important;
}

/* Plugin nav - scroll dışında sabit */
.plugin-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
    flex-shrink: 0;
    border-left: 1px solid var(--border, #e2e8f0);
    margin-left: 8px;
}
.plugin-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: var(--brand);
    color: #fff !important;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .3px;
    white-space: nowrap;
    transition: background .15s;
}
.plugin-nav-item:hover { background: #b91c1c; }
.plugin-nav-item svg { flex-shrink: 0; }

/* Galeri/Video sabit kutu */
.extra-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 6px;
    flex-shrink: 0;
}
.extra-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 11px;
    color: var(--text);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .3px;
    white-space: nowrap;
    border-radius: 5px;
    transition: background .15s, color .15s;
}
.extra-nav-item:hover { background: #f1f5f9; color: var(--brand); }
.extra-nav-item svg { flex-shrink: 0; }

@media (max-width: 1100px) {
    .plugin-nav-item span, .extra-nav-item span { display: none; }
    .plugin-nav-item, .extra-nav-item { padding: 8px 10px; }
}
.footer-links a svg {
    width: 12px; height: 12px; vertical-align: -2px; margin-right: 4px;
    opacity: .7;
}

/* =====================================================================
   SON HABERLER ŞERİTİ (haber tickerı)
   ===================================================================== */
.ticker {
    background: var(--gray-100);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    margin-top: 12px;
    border-top: 1px solid var(--border);
}
.ticker-inner {
    display: flex;
    align-items: stretch;
    height: 40px;
}
.ticker-label {
    background: var(--brand);
    color: var(--white);
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    flex-shrink: 0;
}
.ticker-label .dot {
    width: 6px; height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    margin-left: 8px;
    border-left: 1px solid var(--border-soft);
    padding-left: 8px;
}
.ticker-track {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 16px;
    gap: 36px;
    animation: ticker-scroll 12s linear infinite;
    white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track a {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}
.ticker-track a::before {
    content: '•';
    color: var(--brand);
    margin-right: 8px;
    font-weight: 900;
}
.ticker-track a:hover { color: var(--brand); }
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =====================================================================
   FINANS ŞERİTİ
   ===================================================================== */
.finans {
    background: var(--gray-900);
    color: var(--white);
    padding: 12px 0;
}
.finans-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.finans-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border-right: 1px solid rgba(255,255,255,.1);
}
.finans-item:last-child { border-right: 0; }
.finans-item .label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--gray-400);
    letter-spacing: .5px;
    font-weight: 700;
}
.finans-item .value {
    font-size: 18px;
    font-weight: 800;
    margin-top: 2px;
}
.finans-item .change {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
}
.change.up   { color: #4ade80; background: rgba(34,197,94,.15); }
.change.down { color: #f87171; background: rgba(239,68,68,.15); }

/* =====================================================================
   MANSET (büyük + yan)
   ===================================================================== */
.manset {
    padding: 24px 0;
    background: var(--white);
}
.manset-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}
.manset-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--gray-200);
}
.manset-card .cover {
    position: relative;
    overflow: hidden;
}
.manset-card .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.manset-card:hover .cover img { transform: scale(1.04); }
.manset-card .cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.85));
}
.manset-card .info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    color: var(--white);
    z-index: 2;
}
.manset-card .cat {
    display: inline-block;
    background: var(--brand);
    color: var(--white);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
    border-radius: 2px;
}
.manset-card h2, .manset-card h3 {
    color: var(--white);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.manset-big {
    aspect-ratio: 16/9;
}
.manset-big h2 { font-size: 32px; line-height: 1.2; }
.manset-big .cover img { aspect-ratio: 16/9; }

.manset-side-list {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
}
.manset-side {
    aspect-ratio: 16/9;
}
.manset-side h3 { font-size: 16px; line-height: 1.3; }
.manset-side .info { padding: 14px; }
.manset-side .cat { padding: 2px 8px; font-size: 10px; margin-bottom: 6px; }

/* =====================================================================
   ANA İÇERİK GRİDİ (sol haber listesi + sağ sidebar)
   ===================================================================== */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    padding: 32px 0;
}

/* Section başlığı */
.section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--text);
}
.section-head h2 {
    font-size: 22px;
    margin: 0;
    flex: 1;
}
.section-head .more {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-muted);
    font-weight: 700;
}
.section-head .more:hover { color: var(--brand); }
.section-head.brand-bar { border-bottom-color: var(--brand); }
.section-head.brand-bar h2 { color: var(--brand); }

/* =====================================================================
   HABER KARTLARI
   ===================================================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.news-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.news-card .cover {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--gray-200);
    border-radius: 3px;
    margin-bottom: 12px;
    position: relative;
}
.news-card .cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.news-card:hover .cover img { transform: scale(1.05); }
.news-card .cat {
    display: inline-block;
    color: var(--brand);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}
.news-card h3 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 6px;
    transition: color .15s;
}
.news-card:hover h3 { color: var(--brand); }
.news-card .meta {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}
.news-card .meta .author { font-weight: 600; color: var(--text-soft); }

/* List style (sidebar veya küçük haberler) */
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-list .item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.news-list .cover {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 3px;
    background: var(--gray-200);
}
.news-list .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.news-list .item:hover .cover img { transform: scale(1.05); }
.news-list h4 {
    font-size: 14px;
    line-height: 1.35;
    font-family: var(--serif);
    transition: color .15s;
    margin: 0;
}
.news-list .item:hover h4 { color: var(--brand); }
.news-list .meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

/* Kategori bandı */
.category-band { margin-bottom: 40px; }
.category-band .grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}
.category-band .featured .cover { aspect-ratio: 16/10; }
.category-band .featured h3 { font-size: 22px; }

/* =====================================================================
   SIDEBAR
   ===================================================================== */
.sidebar { display: flex; flex-direction: column; gap: 28px; }

.widget {
    background: var(--white);
    border-radius: 4px;
}
.widget-head {
    background: var(--gray-900);
    color: var(--white);
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.widget-head a {
    color: var(--gray-400);
    font-size: 11px;
    font-weight: 700;
}
.widget-head a:hover { color: var(--white); }
.widget-body {
    padding: 16px;
    border: 1px solid var(--border);
    border-top: 0;
}

/* Hava Durumu */
.widget-weather { background: linear-gradient(135deg, #2a87d6, #1f6dba); color: var(--white); padding: 18px; border-radius: 4px; }
.widget-weather select {
    width: 100%;
    padding: 8px 12px;
    border: 0;
    border-radius: 4px;
    background: rgba(255,255,255,.15);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 12px;
    font-family: inherit;
    font-size: 13px;
}
.widget-weather select option { color: var(--text); }
.widget-weather .main { display: flex; align-items: center; gap: 16px; }
.widget-weather .icon { font-size: 56px; line-height: 1; }
.widget-weather .temp { font-size: 48px; font-weight: 800; line-height: 1; font-family: var(--serif); }
.widget-weather .label { font-size: 14px; opacity: .9; }
.widget-weather .stats { margin-top: 14px; font-size: 12px; display: flex; gap: 16px; opacity: .85; }
.widget-weather .weather-info { flex: 1; min-width: 0; }

/* Namaz Vakitleri */
.widget-prayer {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 16px;
}
.widget-prayer .prayer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, #0f766e, #047857);
    color: #fff;
}
.widget-prayer .prayer-head h3 { margin: 0; font-size: 14px; font-weight: 700; }
.widget-prayer .prayer-city { font-size: 12px; opacity: .9; font-weight: 500; }
.widget-prayer .prayer-list { padding: 4px 0; }
.widget-prayer .prayer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
    transition: background .15s;
}
.widget-prayer .prayer-row:last-child { border-bottom: 0; }
.widget-prayer .prayer-row.active {
    background: #ecfdf5;
    border-left: 3px solid #10b981;
    padding-left: 13px;
}
.widget-prayer .prayer-row.active .prayer-name { color: #047857; font-weight: 700; }
.widget-prayer .prayer-row.active .prayer-time { color: #047857; font-weight: 700; }
.widget-prayer .prayer-name { color: #475569; font-weight: 500; }
.widget-prayer .prayer-time { color: #0f172a; font-weight: 600; font-variant-numeric: tabular-nums; }

/* Yazarlar */
.authors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.author-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
    padding: 12px 6px;
    border-radius: 4px;
    transition: background .15s;
}
.author-card:hover { background: var(--gray-100); }
.author-card .avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    margin: 0 auto 8px;
    background: var(--gray-200);
    overflow: hidden;
}
.author-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-card .name {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1.2;
}
.author-card .title-line {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 3px;
    line-height: 1.3;
}

/* Anket */
.poll-question {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.35;
}
.poll-option {
    display: block;
    padding: 10px 12px;
    background: var(--gray-100);
    margin-bottom: 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all .15s;
    border: 1px solid transparent;
}
.poll-option:hover { border-color: var(--brand); background: var(--white); }
.poll-result {
    position: relative;
    padding: 10px 12px;
    background: var(--gray-100);
    margin-bottom: 8px;
    border-radius: 4px;
    font-size: 13px;
    overflow: hidden;
}
.poll-result .bar {
    position: absolute;
    top: 0; bottom: 0; left: 0;
    background: rgba(200,16,46,.15);
    z-index: 0;
}
.poll-result .label, .poll-result .pct {
    position: relative; z-index: 1;
}
.poll-result .pct { float: right; font-weight: 700; color: var(--brand); }

/* Burç */
.burc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.burc-item {
    text-align: center;
    padding: 10px 4px;
    border-radius: 4px;
    text-decoration: none;
    color: var(--text);
    font-size: 11px;
    font-weight: 600;
    transition: all .15s;
}
.burc-item:hover { background: var(--brand); color: var(--white); }
.burc-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    color: var(--brand);
    transition: color .15s;
}
.burc-item .icon svg { width: 28px; height: 28px; }
.burc-item:hover .icon { color: #fff; }

/* Reklam alanı */
.ad-slot {
    background: var(--gray-100);
    border: 1px dashed var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 40px 16px;
    margin-bottom: 24px;
}
.ad-slot img { margin: 0 auto; }

/* =====================================================================
   POST DETAY (Milliyet birebir profesyonel)
   ===================================================================== */
.post-page { padding: 28px 0 60px; }
.post-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
.post-main {}

.breadcrumb {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { color: var(--gray-400); }

.post-cat {
    display: inline-block;
    background: var(--brand);
    color: var(--white);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 14px;
    border-radius: 2px;
    text-decoration: none;
}
.post-cat:hover { background: var(--brand-dark); color: var(--white); }

.post-title {
    font-size: 38px;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 700;
}

.post-summary {
    font-size: 18px;
    line-height: 1.55;
    color: var(--text-soft);
    font-family: var(--serif);
    font-style: italic;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 4px solid var(--brand);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-muted);
}
.post-meta .author-info { display: flex; align-items: center; gap: 10px; }
.post-meta .author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    overflow: hidden;
}
.post-meta .author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-meta .author-name { font-weight: 700; color: var(--text); font-size: 14px; }
.post-meta .author-name a { color: var(--text); }
.post-meta .author-name a:hover { color: var(--brand); }
.post-meta .by { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.post-meta .date { display: flex; align-items: center; gap: 6px; }
.post-meta .stat { display: flex; align-items: center; gap: 4px; }
.post-meta .stat svg { width: 14px; height: 14px; opacity: .7; }
.post-meta .spacer { flex: 1; }

.post-cover {
    margin-bottom: 24px;
    border-radius: 4px;
    overflow: hidden;
    background: var(--gray-200);
}
.post-cover img { width: 100%; height: auto; display: block; }
.post-cover .caption {
    padding: 10px 14px;
    background: var(--gray-100);
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

.post-content {
    font-size: 18px;
    line-height: 1.75;
    color: var(--gray-800);
    font-family: var(--serif);
}
.post-content p { margin: 0 0 22px; }
.post-content h2 {
    font-size: 26px;
    margin: 36px 0 14px;
    color: var(--text);
    font-family: var(--serif);
}
.post-content h3 {
    font-size: 21px;
    margin: 28px 0 12px;
    color: var(--text);
}
.post-content a {
    color: var(--brand);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.post-content a:hover { color: var(--brand-dark); }
.post-content blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    background: var(--gray-100);
    border-left: 4px solid var(--brand);
    font-size: 19px;
    font-style: italic;
    color: var(--text);
    border-radius: 0 4px 4px 0;
}
.post-content blockquote p:last-child { margin: 0; }
.post-content ul, .post-content ol {
    padding-left: 28px;
    margin: 0 0 22px;
}
.post-content ul li, .post-content ol li { margin-bottom: 8px; }
.post-content img {
    border-radius: 4px;
    margin: 24px 0;
}
.post-content strong { font-weight: 700; color: var(--text); }
.post-content code {
    background: var(--gray-100);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: .9em;
    font-family: 'SF Mono', Monaco, Menlo, monospace;
}

/* Paylaş */
.share-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 24px 0;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.share-row .label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: .5px;
    margin-right: 4px;
}
.share-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text-soft);
    transition: all .15s;
    background: var(--white);
}
.share-btn:hover {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
    transform: translateY(-1px);
}
.share-btn svg { width: 16px; height: 16px; }

/* Etiketler */
.post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 24px 0;
}
.post-tags a {
    display: inline-block;
    padding: 6px 12px;
    background: var(--gray-100);
    border: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    transition: all .15s;
}
.post-tags a::before { content: '#'; opacity: .5; }
.post-tags a:hover {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
}

/* Yazar kartı */
.author-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: 4px;
    margin: 30px 0;
}
.author-box .avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-200);
    flex-shrink: 0;
}
.author-box .avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-box .name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}
.author-box .name a { color: var(--text); }
.author-box .name a:hover { color: var(--brand); }
.author-box .bio {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
}

/* İlgili haberler */
.related-section { margin: 40px 0; }

/* Yorumlar */
.comments-section { margin: 40px 0 0; padding-top: 30px; border-top: 2px solid var(--brand); }
.comments-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.comments-head h3 { font-size: 20px; }
.comments-count {
    background: var(--brand);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 8px;
    font-family: var(--sans);
}
.comment-form {
    background: var(--gray-100);
    padding: 18px;
    border-radius: 4px;
    margin-bottom: 24px;
}
.comment-form .row { margin-bottom: 12px; }
.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    background: var(--white);
    outline: none;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--brand); }
.comment-form textarea { min-height: 100px; resize: vertical; }
.comment-form .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.comment-form button {
    background: var(--brand);
    color: var(--white);
    border: 0;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.comment-form button:hover { background: var(--brand-dark); }

.comment {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-soft);
}
.comment:last-child { border-bottom: 0; }
.comment .avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}
.comment .head {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
}
.comment .name { font-weight: 700; font-size: 14px; }
.comment .date { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .3px; }
.comment .body { font-size: 14px; line-height: 1.55; color: var(--text-soft); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    margin-top: 60px;
    padding: 40px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    font-style: italic;
    margin-bottom: 14px;
    line-height: 1;
}
.footer-about { font-size: 13px; line-height: 1.6; color: var(--gray-400); margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}
.footer-social a:hover { background: var(--brand); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 16px;
    font-family: var(--sans);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
    color: var(--gray-400);
    font-size: 13px;
    transition: color .15s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
}
.footer-bottom a { color: var(--gray-400); }
.footer-bottom a:hover { color: var(--white); }

/* =====================================================================
   GENERIC SAYFA (kategori, arama, yazar, etiket)
   ===================================================================== */
.page-head {
    background: var(--gray-100);
    padding: 28px 0;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.page-head h1 {
    font-size: 30px;
    margin: 0;
}
.page-head .subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 6px;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin: 36px 0;
}
.pagination a, .pagination span {
    padding: 8px 14px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    text-decoration: none;
}
.pagination a:hover { border-color: var(--brand); color: var(--brand); }
.pagination .current {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
}
.pagination .disabled { opacity: .4; cursor: not-allowed; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .post-grid, .main-grid { grid-template-columns: 1fr; }
    .sidebar { order: 2; }
}
@media (max-width: 768px) {
    .topbar nav { display: none; }
    .topbar nav a.topbar-plugin { display: inline-flex !important; }
    .topbar nav { display: flex; gap: 6px; }
    .topbar nav a:not(.topbar-plugin) { display: none; }
    .topbar .social { margin-left: auto; }
    .header-search { display: none; }
    .brand { font-size: 28px; }
    .manset-grid { grid-template-columns: 1fr; }
    .manset-big h2 { font-size: 22px; }
    .news-grid { grid-template-columns: 1fr; }
    .category-band .grid { grid-template-columns: 1fr; }
    .finans-inner { grid-template-columns: repeat(2, 1fr); }
    .post-title { font-size: 26px; }
    .post-summary { font-size: 16px; padding-left: 12px; }
    .post-content { font-size: 16px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .main-nav-inner { height: 44px; }
    .cat-nav a { padding: 0 10px; font-size: 13px; }
}

/* =====================================================================
   2026 MODERN: Reading progress, scroll-top, newsletter, dark mode
   ===================================================================== */

/* Reading progress bar */
.reading-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: var(--brand);
    z-index: 1000;
    transition: width .1s ease;
    width: 0%;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--white);
    border: 0;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 100;
    transition: all .2s;
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--brand-dark); transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; }

/* Newsletter widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: var(--white);
    padding: 22px 18px;
    border-radius: 4px;
    text-align: center;
}
.newsletter-widget h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
}
.newsletter-widget p {
    font-size: 13px;
    opacity: .9;
    margin-bottom: 14px;
    line-height: 1.5;
}
.newsletter-widget input {
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    margin-bottom: 8px;
    outline: 0;
}
.newsletter-widget button {
    width: 100%;
    padding: 10px;
    background: var(--gray-900);
    color: var(--white);
    border: 0;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .15s;
}
.newsletter-widget button:hover { background: var(--black); }
.newsletter-widget .msg {
    margin-top: 10px;
    font-size: 12px;
    min-height: 14px;
}

/* Trending widget özel stil */
.trending-list { display: flex; flex-direction: column; gap: 12px; }
.trending-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 8px 4px;
    border-bottom: 1px solid var(--border-soft);
}
.trending-item:last-child { border-bottom: 0; }
.trending-item .num {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 800;
    color: var(--brand);
    text-align: center;
    line-height: 1;
}
.trending-item h4 {
    font-size: 13px;
    line-height: 1.35;
    font-family: var(--sans);
    font-weight: 600;
}
.trending-item:hover h4 { color: var(--brand); }
.trending-item .stat {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Cookie consent banner */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--gray-900);
    color: var(--white);
    padding: 16px 20px;
    z-index: 999;
    display: none;
    box-shadow: 0 -4px 16px rgba(0,0,0,.15);
}
.cookie-banner.show { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.cookie-banner p { margin: 0; font-size: 13px; flex: 1; min-width: 280px; line-height: 1.5; }
.cookie-banner a { color: var(--brand-light); text-decoration: underline; }
.cookie-banner button {
    background: var(--brand);
    color: var(--white);
    border: 0;
    padding: 9px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.cookie-banner button:hover { background: var(--brand-dark); }

/* Dark mode (optional, toggle ile aktif) */
body.dark {
    --white: #1a1a1a;
    --gray-50: #222;
    --gray-100: #2a2a2a;
    --gray-200: #333;
    --gray-300: #444;
    --gray-400: #555;
    --gray-900: #0a0a0a;
    --text: #f0f0f0;
    --text-soft: #d0d0d0;
    --text-muted: #a0a0a0;
    --link: #f0f0f0;
    --border: #2f2f2f;
    --border-soft: #252525;
    background: #1a1a1a;
}
body.dark .site-header { background: #1a1a1a; border-bottom-color: #2f2f2f; }
body.dark .topbar { background: #0f0f0f; border-bottom-color: #222; }
body.dark .main-nav { background: #1a1a1a; }
body.dark .ad-slot { background: #222; }
body.dark .news-card .cover, body.dark .post-cover { background: #2a2a2a; }
body.dark .header-search input { background: #2a2a2a; color: #f0f0f0; border-color: #333; }
body.dark .post-content { color: #ddd; }

/* Theme toggle button */
.theme-toggle {
    background: none;
    border: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .15s;
}
.theme-toggle:hover { background: var(--gray-100); color: var(--brand); }
.theme-toggle svg { width: 18px; height: 18px; }
body.dark .theme-toggle { color: #ffd54a; }

/* =====================================================================
   MAIN MENU PANEL (off-canvas, sağdan kaydırmalı)
   ===================================================================== */
.main-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}
.main-menu-panel:not(.open) .main-menu-overlay { opacity: 0; }
.main-menu-panel:not(.open) .main-menu-inner { transform: translateX(100%); }
.main-menu-panel.open {
    pointer-events: auto;
}
.main-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    opacity: 0;
    transition: opacity .3s ease;
}
.main-menu-panel.open .main-menu-overlay { opacity: 1; }
.main-menu-inner {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 320px;
    max-width: 90vw;
    background: var(--white);
    box-shadow: -4px 0 16px rgba(0,0,0,.18);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease;
}
.main-menu-panel.open .main-menu-inner { transform: translateX(0); }
.main-menu-head {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-menu-head span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    font-weight: 700;
    color: var(--brand);
}
.main-menu-close {
    background: none;
    border: 0;
    padding: 6px;
    color: var(--text-soft);
    cursor: pointer;
    border-radius: 4px;
}
.main-menu-close:hover { background: var(--gray-100); }
.main-menu-close svg { width: 22px; height: 22px; }

.main-menu-search {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    gap: 6px;
}
.main-menu-search input {
    flex: 1;
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}
.main-menu-search input:focus { border-color: var(--brand); }
.main-menu-search button {
    background: var(--brand);
    color: #fff;
    border: 0;
    padding: 9px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}
.main-menu-search button:hover { background: var(--brand-dark); }

.main-menu-section {
    padding: 14px 20px 6px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.main-menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}
.main-menu-list li { border-bottom: 1px solid var(--border-soft); }
.main-menu-list a {
    display: block;
    padding: 12px 20px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    transition: all .12s;
}
.main-menu-list a:hover {
    background: var(--gray-100);
    color: var(--brand);
    padding-left: 24px;
}

.main-menu-panel.open ~ * { /* placeholder */ }

/* =====================================================================
   ANKET (POLL) STİLLERİ
   ===================================================================== */
.poll-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 18px;
    position: relative;
}
.poll-card .poll-status {
    position: absolute;
    top: 18px;
    right: 18px;
}
.poll-card .badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.poll-card .badge.active { background: #dcfce7; color: #166534; }
.poll-card .badge.closed { background: #f3f4f6; color: #6b7280; }

.poll-question {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
    padding-right: 80px;
    line-height: 1.3;
}
.poll-desc {
    color: var(--text-soft);
    font-size: 14px;
    margin: 0 0 18px;
    line-height: 1.5;
}

.poll-options { margin: 18px 0; }

.poll-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all .15s;
}
.poll-option:hover { background: var(--gray-100); border-color: var(--brand); }
.poll-option input[type=radio],
.poll-option input[type=checkbox] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--brand);
}
.poll-option:has(input:checked) {
    background: var(--brand-light);
    border-color: var(--brand);
}
.poll-opt-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.poll-vote-btn {
    background: var(--brand);
    color: #fff;
    border: 0;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background .12s;
    margin-top: 8px;
}
.poll-vote-btn:hover { background: var(--brand-dark); }
.poll-vote-btn:disabled { opacity: .6; cursor: wait; }

.poll-result {
    margin-bottom: 12px;
}
.poll-result-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.poll-result-head strong {
    color: var(--brand);
    font-size: 14px;
}
.poll-result-head strong small {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 11px;
    margin-left: 4px;
}
.poll-bar {
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
}
.poll-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-dark) 100%);
    border-radius: 4px;
    transition: width .6s ease;
}

.poll-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid var(--border-soft);
    font-size: 12px;
    color: var(--text-muted);
}

/* Sidebar widget anketi */
.poll-widget {
    background: linear-gradient(135deg, #fef2f2 0%, #fff 100%);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 20px;
}
.poll-widget h3 {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--brand);
    margin: 0 0 6px;
    line-height: 1.3;
}
.poll-widget .poll-w-question {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 14px;
    line-height: 1.4;
}
.poll-widget .poll-option {
    padding: 8px 10px;
    font-size: 13px;
}
.poll-widget .poll-result-head {
    font-size: 13px;
}
.poll-widget .poll-vote-btn {
    width: 100%;
    padding: 9px;
    font-size: 13px;
    margin-top: 6px;
}
.poll-widget .poll-footer {
    margin-top: 10px;
    padding-top: 10px;
    font-size: 11px;
}
.poll-widget a.poll-all-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 600;
}

/* =====================================================================
   ARAMA SAYFASI (search.phtml)
   ===================================================================== */
.search-head {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    padding: 36px 0 28px;
    margin-bottom: 24px;
}
.search-head h1 {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #fff;
}
.search-main-form {
    display: flex;
    gap: 8px;
    max-width: 720px;
}
.search-main-form input[type=text] {
    flex: 1;
    padding: 14px 18px;
    border: 0;
    border-radius: 4px;
    font-size: 16px;
    background: #fff;
    color: var(--text);
    outline: none;
}
.search-main-form .btn-search {
    padding: 14px 24px;
    background: rgba(0,0,0,.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .15s;
}
.search-main-form .btn-search:hover { background: rgba(0,0,0,.4); }
.search-main-form .btn-search svg { width: 18px; height: 18px; }
.search-meta {
    margin-top: 14px;
    font-size: 14px;
    color: rgba(255,255,255,.85);
}
.search-meta strong { color: #fff; }

/* Layout */
.search-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .search-layout { grid-template-columns: 1fr; }
}

/* Filters */
.search-filters {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 18px;
    align-self: start;
    position: sticky;
    top: 80px;
}
.filter-group { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--border-soft); }
.filter-group:last-of-type { border-bottom: 0; }
.filter-group h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 10px;
    color: var(--text-soft);
    font-weight: 700;
}
.filter-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 240px;
    overflow-y: auto;
}
.filter-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 4px 0;
    font-size: 13.5px;
    color: var(--text);
}
.filter-radio:hover { color: var(--brand); }
.filter-radio input[type=radio] { accent-color: var(--brand); }
.filter-select, .filter-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    background: #fff;
    margin-bottom: 6px;
    font-family: inherit;
}
.filter-label { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; display: block; }
.filter-apply {
    width: 100%;
    background: var(--brand);
    color: #fff;
    border: 0;
    padding: 10px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
    margin-top: 8px;
}
.filter-apply:hover { background: var(--brand-dark); }
.filter-reset {
    display: block;
    text-align: center;
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 12px;
    text-decoration: underline;
}

/* Results */
.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.search-result-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 220px 1fr;
    transition: all .15s;
}
.search-result-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transform: translateY(-1px);
}
@media (max-width: 600px) {
    .search-result-item { grid-template-columns: 1fr; }
}
.result-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; }
.result-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.search-result-item:hover .result-thumb img { transform: scale(1.05); }
.result-body { padding: 16px 20px; display: flex; flex-direction: column; }
.result-cat {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    align-self: flex-start;
    margin-bottom: 8px;
}
.result-title {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px;
}
.result-title a { color: var(--text); transition: color .15s; }
.result-title a:hover { color: var(--brand); }
.result-excerpt {
    color: var(--text-soft);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0 0 10px;
}
.result-excerpt mark, .result-title mark {
    background: #fff5b8;
    color: inherit;
    padding: 0 2px;
    border-radius: 2px;
    font-weight: 700;
}
.result-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: auto;
}
.result-meta span { display: inline-flex; align-items: center; gap: 4px; }

/* Pagination */
.search-pagination {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
.btn-load-more {
    background: #fff;
    border: 1px solid var(--border);
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 700;
    color: var(--brand);
    cursor: pointer;
    font-size: 14px;
    transition: all .15s;
}
.btn-load-more:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-load-more:disabled { opacity: .6; cursor: wait; }

/* Empty / suggestions */
.search-empty {
    text-align: center;
    padding: 60px 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
}
.search-empty h2 { color: var(--text); font-family: var(--serif); margin-bottom: 8px; }
.search-empty p { color: var(--text-muted); margin: 0; line-height: 1.6; }
.suggestions-box { margin-top: 18px; }
.suggestion-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 12px; }
.suggestion-pill {
    display: inline-block;
    padding: 6px 14px;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
}
.suggestion-pill:hover { background: var(--brand); color: #fff; }

/* =====================================================================
   BURÇ SAYFALARI - PROFESYONEL ASTROLOJİ TEMASI
   ===================================================================== */

/* ---------- LİSTE BANNER ---------- */
.zodiac-banner {
    position: relative;
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 50%, #4a1a5a 100%);
    color: #fff;
    overflow: hidden;
    margin-bottom: 32px;
}
.zodiac-banner-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255,215,0,.5), transparent),
        radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,.6), transparent),
        radial-gradient(2px 2px at 80% 60%, rgba(255,215,0,.4), transparent),
        radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,.5), transparent),
        radial-gradient(1.5px 1.5px at 70% 80%, rgba(255,215,0,.3), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(255,255,255,.4), transparent);
    background-size: 400px 300px;
    background-position: 0 0, 50px 30px, 100px 80px, 150px 100px, 200px 60px, 250px 120px;
    opacity: .8;
}
.zodiac-banner-content {
    position: relative;
    padding: 56px 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.zodiac-banner-eyebrow {
    font-size: 12px;
    letter-spacing: 4px;
    color: #ffd700;
    margin-bottom: 12px;
    font-weight: 700;
}
.zodiac-banner h1 {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.5px;
}
.zodiac-banner p {
    font-size: 15px;
    color: rgba(255,255,255,.75);
    margin: 0;
}
.zodiac-banner-stars {
    font-size: 36px;
    color: #ffd700;
    display: flex;
    gap: 12px;
    opacity: .6;
}
.zodiac-banner-stars span:nth-child(odd) { animation: zodiac-twinkle 3s ease-in-out infinite; }
.zodiac-banner-stars span:nth-child(even) { animation: zodiac-twinkle 4s ease-in-out infinite .5s; }
@keyframes zodiac-twinkle {
    0%, 100% { opacity: .3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* ---------- LİSTE GRID ---------- */
.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}
.zodiac-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
    text-decoration: none;
    color: inherit;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}
.zodiac-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px;
    height: 120px;
    background: var(--el-bg);
    border-radius: 0 0 0 100%;
    opacity: .8;
    transition: all .3s;
}
.zodiac-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
    transform: translateY(-4px);
    border-color: var(--el-text);
}
.zodiac-card:hover::before {
    width: 160px;
    height: 160px;
}
.zodiac-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    position: relative;
}
.zodiac-symbol-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%);
    color: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.15), inset 0 0 0 2px rgba(255,215,0,.2);
}
.zodiac-symbol {
    font-size: 32px;
    line-height: 1;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.zodiac-symbol svg { width: 36px; height: 36px; }
.zodiac-card-title { flex: 1; min-width: 0; }
.zodiac-card-title h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 4px;
    line-height: 1.1;
}
.zodiac-card-date {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}
.zodiac-element-badge {
    background: var(--el-bg);
    color: var(--el-text);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    align-self: flex-start;
    position: relative;
    z-index: 1;
}
.zodiac-el-icon { font-size: 11px; }
.zodiac-card-excerpt {
    font-family: var(--serif);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-soft);
    margin: 0 0 14px;
    position: relative;
}
.zodiac-card-foot {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid var(--border-soft);
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Info box */
.zodiac-info-box {
    text-align: center;
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 28px;
    margin-bottom: 40px;
}
.zodiac-info-icon {
    font-size: 32px;
    color: #d97706;
    margin-bottom: 8px;
}
.zodiac-info-box h3 {
    font-family: var(--serif);
    font-size: 18px;
    color: #78350f;
    margin: 0 0 8px;
}
.zodiac-info-box p {
    color: #78350f;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- DETAY SAYFASI ---------- */
.zodiac-detail-banner {
    position: relative;
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 50%, var(--el-color) 130%);
    color: #fff;
    overflow: hidden;
    margin-bottom: 32px;
}
.zodiac-detail-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 15% 25%, rgba(255,215,0,.5), transparent),
        radial-gradient(1px 1px at 50% 15%, rgba(255,255,255,.6), transparent),
        radial-gradient(2px 2px at 85% 50%, rgba(255,215,0,.4), transparent),
        radial-gradient(1px 1px at 25% 75%, rgba(255,255,255,.5), transparent),
        radial-gradient(1.5px 1.5px at 75% 80%, rgba(255,215,0,.3), transparent);
    background-size: 500px 350px;
    opacity: .7;
}
.zodiac-detail-head {
    position: relative;
    padding: 32px 0 48px;
}
.zodiac-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.7);
    margin-bottom: 24px;
}
.zodiac-breadcrumb a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
}
.zodiac-breadcrumb a:hover { color: #ffd700; }
.zodiac-breadcrumb .active { color: #fff; font-weight: 600; }
.zodiac-detail-hero {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.zodiac-detail-symbol-wrap {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle at 30% 30%, #ffd700 0%, #d4a017 60%, #8b6914 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 12px 32px rgba(0,0,0,.3),
                inset 0 0 0 4px rgba(255,255,255,.2),
                inset 0 -8px 20px rgba(0,0,0,.2);
    position: relative;
}
.zodiac-detail-symbol-wrap::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255,215,0,.3);
    border-style: dashed;
    animation: zodiac-rotate 30s linear infinite;
}
@keyframes zodiac-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.zodiac-detail-symbol {
    font-size: 70px;
    color: #1a1f3a;
    line-height: 1;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.zodiac-detail-symbol svg { width: 80px; height: 80px; stroke-width: 3.5; }
.zodiac-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    color: #ffd700;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}
.zodiac-detail-hero h1 {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.5px;
}
.zodiac-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: rgba(255,255,255,.85);
}
.zodiac-detail-meta strong { color: #fff; }
.zodiac-detail-meta .dot { opacity: .4; }

/* Detay grid */
.zodiac-detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    margin-bottom: 48px;
}
@media (max-width: 900px) {
    .zodiac-detail-grid { grid-template-columns: 1fr; }
}

/* İçerik kartı */
.zodiac-content-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}
.zodiac-content-head {
    background: linear-gradient(135deg, #fef9e7 0%, #fef3c7 100%);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #fde68a;
}
.zodiac-content-icon {
    font-size: 24px;
    color: #d97706;
}
.zodiac-content-head h2 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: #78350f;
    margin: 0;
}
.zodiac-content-body {
    padding: 32px;
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.85;
    color: var(--text);
    letter-spacing: .2px;
}
.zodiac-content-foot {
    padding: 14px 28px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-soft);
    color: var(--text-muted);
    font-size: 12px;
}

/* Karakter özellikleri */
.zodiac-traits-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
}
.zodiac-traits-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--text);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ffd700;
    display: inline-block;
}
.zodiac-traits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}
.trait-item {
    padding: 16px;
    background: var(--bg-alt);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
}
.trait-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 6px;
}
.trait-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    font-family: var(--serif);
}
.trait-desc {
    font-size: 12px;
    color: var(--text-soft);
    margin-top: 4px;
    font-style: italic;
}

/* Diğer burçlar paneli */
.zodiac-other-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 80px;
}
.zodiac-other-head {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%);
    color: #fff;
    padding: 16px 20px;
}
.zodiac-other-head h3 {
    font-family: var(--serif);
    font-size: 16px;
    margin: 0;
    color: #ffd700;
    letter-spacing: .3px;
}
.zodiac-other-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-soft);
}
.zodiac-other-item {
    background: #fff;
    padding: 12px 14px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .15s;
    border-left: 3px solid transparent;
}
.zodiac-other-item:hover {
    background: var(--bg-alt);
    border-left-color: var(--item-color);
}
.zodiac-other-item.active {
    background: var(--bg-alt);
    border-left-color: var(--item-color);
    font-weight: 700;
}
.zodiac-other-symbol {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%);
    color: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.zodiac-other-symbol svg { width: 18px; height: 18px; stroke-width: 3; }
.zodiac-other-info { flex: 1; min-width: 0; }
.zodiac-other-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
.zodiac-other-element {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-top: 2px;
}

/* Not found */
.zodiac-not-found {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
}
.zodiac-not-found-icon {
    font-size: 60px;
    color: #ffd700;
    margin-bottom: 12px;
}
.zodiac-not-found h1 {
    font-family: var(--serif);
    color: var(--text);
    margin-bottom: 12px;
}
.zodiac-not-found p {
    color: var(--text-muted);
}
.zodiac-not-found a {
    color: var(--brand);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 600px) {
    .zodiac-banner h1 { font-size: 32px; }
    .zodiac-detail-hero h1 { font-size: 32px; }
    .zodiac-detail-symbol-wrap { width: 100px; height: 100px; }
    .zodiac-detail-symbol { font-size: 54px; }
    .zodiac-content-body { padding: 22px; font-size: 16px; }
    .zodiac-other-list { grid-template-columns: 1fr; }
}

/* =====================================================================
   ÜYE SİSTEMİ
   ===================================================================== */

/* Auth kartları (giriş/kayıt) */
.member-auth-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 36px 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.member-auth-head { text-align: center; margin-bottom: 24px; }
.member-auth-head h1 {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--text);
    margin: 0 0 8px;
}
.member-auth-head p { color: var(--text-soft); font-size: 14px; margin: 0; }
.member-auth-head a { color: var(--brand); font-weight: 600; }
.member-auth-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px 14px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 13px;
    border-left: 3px solid #dc2626;
}
.member-auth-success {
    background: #dcfce7;
    color: #166534;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    border-left: 3px solid #16a34a;
    line-height: 1.6;
}
.field-error { color: #dc2626; font-size: 12px; margin-top: 4px; }
.btn-auth-primary {
    width: 100%;
    background: var(--brand);
    color: #fff;
    border: 0;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background .15s;
}
.btn-auth-primary:hover { background: var(--brand-dark); }
.btn-auth-secondary {
    display: block;
    text-align: center;
    background: var(--bg-soft);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all .15s;
}
.btn-auth-secondary:hover { background: var(--bg-alt); }
.member-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
    color: var(--text-muted);
    font-size: 12px;
}
.member-auth-divider::before, .member-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Profil banner */
.member-profile-banner {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    color: #fff;
    padding: 36px 0 28px;
    margin-bottom: 28px;
}
.member-profile-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.member-profile-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,.3);
    object-fit: cover;
    background: #fff;
}
.member-profile-info { flex: 1; min-width: 240px; }
.member-profile-info h1 {
    font-family: var(--serif);
    font-size: 32px;
    margin: 0 0 6px;
    color: #fff;
}
.member-profile-meta {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    margin-bottom: 8px;
}
.member-profile-bio {
    color: rgba(255,255,255,.9);
    font-size: 14px;
    margin: 8px 0 0;
    max-width: 600px;
    line-height: 1.5;
}
.member-profile-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.btn-member-primary {
    background: var(--brand);
    color: #fff;
    border: 0;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    transition: background .15s;
}
.btn-member-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-member-secondary {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    transition: all .15s;
    display: inline-block;
    text-align: center;
}
.btn-member-secondary:hover { background: rgba(255,255,255,.25); color: #fff; }
/* Profil dışında (sidebar'da) farklı renk */
.widget .btn-member-secondary {
    background: var(--bg-soft);
    color: var(--text);
    border-color: var(--border);
}
.widget .btn-member-secondary:hover { background: var(--bg-alt); color: var(--text); }

/* Stats */
.member-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}
.member-stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px;
    text-align: center;
}
.member-stat .num {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
}
.member-stat .label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 6px;
    font-weight: 700;
}

/* Tabs */
.member-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 18px;
    overflow-x: auto;
}
.member-tab {
    background: none;
    border: 0;
    padding: 12px 20px;
    color: var(--text-soft);
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-size: 14px;
    white-space: nowrap;
    transition: all .15s;
    font-family: inherit;
}
.member-tab:hover { color: var(--text); }
.member-tab.active {
    color: var(--brand);
    border-bottom-color: var(--brand);
}

.member-tab-content { display: none; }
.member-tab-content.active { display: block; }

.member-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
@media (max-width: 768px) {
    .member-row { grid-template-columns: 1fr; }
}

.member-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.member-card-head {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.member-card-head h3 {
    font-family: var(--serif);
    font-size: 16px;
    margin: 0;
    color: var(--text);
}
.member-card-head a { color: var(--brand); font-size: 12px; font-weight: 700; text-transform: uppercase; }

.member-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.member-mini-list { padding: 8px; }
.member-mini-item {
    display: flex;
    gap: 12px;
    padding: 8px;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: background .15s;
}
.member-mini-item:hover { background: var(--bg-soft); }
.member-mini-item img { width: 60px; height: 60px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.member-mini-item .cat {
    font-size: 10px;
    color: var(--brand);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-bottom: 3px;
}
.member-mini-item .ttl {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.member-author-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    padding: 14px;
}
.member-author-tile {
    text-align: center;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    border-radius: 6px;
    transition: background .15s;
}
.member-author-tile:hover { background: var(--bg-soft); }
.member-author-tile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 6px;
    display: block;
}
.member-author-tile .name { font-size: 12px; font-weight: 600; line-height: 1.3; color: var(--text); }

.member-cat-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px; }
.member-cat-tile {
    background: var(--brand-light);
    color: var(--brand);
    padding: 8px 14px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .15s;
}
.member-cat-tile:hover { background: var(--brand); color: #fff; }

.member-news-list {
    display: flex;
    flex-direction: column;
    padding: 8px;
}
.member-news-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 14px;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: background .15s;
    border-bottom: 1px solid var(--border-soft);
}
.member-news-item:last-child { border-bottom: 0; }
.member-news-item:hover { background: var(--bg-soft); }
.member-news-item img { width: 100px; height: 70px; border-radius: 4px; object-fit: cover; }
.member-news-item .cat {
    font-size: 10px;
    color: var(--brand);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-bottom: 4px;
}
.member-news-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.4;
    color: var(--text);
    font-family: var(--serif);
}
.member-news-item .note {
    font-size: 12px;
    color: var(--text-soft);
    background: #fef9e7;
    padding: 4px 8px;
    border-radius: 3px;
    margin-top: 4px;
    font-style: italic;
    border-left: 2px solid #d97706;
}
.member-news-item .meta { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

.member-msg { font-size: 13px; padding: 8px 12px; margin-top: 12px; border-radius: 4px; min-height: 1em; }
.member-msg.success { background: #dcfce7; color: #166534; }
.member-msg.error { background: #fee2e2; color: #991b1b; }

/* Feed sayfası */
.member-feed-list { display: flex; flex-direction: column; gap: 14px; }
.member-feed-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.feed-source {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-soft);
    background: var(--bg-alt);
}
.feed-source img { width: 32px; height: 32px; border-radius: 50%; }
.feed-source .src-cat-icon {
    width: 32px; height: 32px;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
}
.feed-source .src-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .3px; }
.feed-source strong { color: var(--text); font-size: 13px; }
.feed-content {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    text-decoration: none;
    color: inherit;
    transition: background .15s;
}
.feed-content:hover { background: var(--bg-soft); }
.feed-cover { width: 100%; height: 100%; min-height: 140px; object-fit: cover; }
.feed-body { padding: 18px; }
.feed-body h2 {
    font-family: var(--serif);
    font-size: 20px;
    margin: 0 0 8px;
    line-height: 1.3;
    color: var(--text);
}
.feed-body p { color: var(--text-soft); font-size: 13.5px; margin: 0 0 10px; line-height: 1.5; }
.feed-meta { display: flex; gap: 14px; font-size: 12px; color: var(--text-muted); }
@media (max-width: 600px) {
    .feed-content { grid-template-columns: 1fr; }
    .feed-cover { aspect-ratio: 16/9; min-height: 0; }
}

/* Yazar profil sayfası */
.author-banner {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%);
    color: #fff;
    padding: 36px 0 28px;
    margin-bottom: 28px;
}
.author-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.author-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid #ffd700;
    object-fit: cover;
    background: #fff;
    flex-shrink: 0;
}
.author-info { flex: 1; min-width: 240px; }
.author-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    color: #ffd700;
    margin-bottom: 8px;
    font-weight: 700;
}
.author-info h1 {
    font-family: var(--serif);
    font-size: 36px;
    margin: 0 0 4px;
    color: #fff;
}
.author-username { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 10px; }
.author-bio {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    margin: 0 0 14px;
    max-width: 600px;
    line-height: 1.6;
}
.author-stats-row {
    display: flex;
    gap: 18px;
    color: rgba(255,255,255,.85);
    font-size: 13px;
}
.author-stats-row strong { color: #fff; font-size: 16px; }
.author-actions { display: flex; gap: 8px; }

.btn-follow, .btn-following {
    padding: 10px 24px;
    border-radius: 22px;
    border: 0;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: all .15s;
}
.btn-follow {
    background: #ffd700;
    color: #1a1f3a;
}
.btn-follow:hover { background: #fff; }
.btn-following {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
}
.btn-following:hover { background: rgba(220,38,38,.4); }
.btn-follow:disabled, .btn-following:disabled { opacity: .6; cursor: wait; }

/* Header üye dropdown */
.member-header-menu {
    position: relative;
    cursor: pointer;
    user-select: none;
}
.member-header-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
    object-fit: cover;
    transition: border-color .15s;
}
.member-header-menu:hover .member-header-avatar { border-color: var(--brand); }
.member-header-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all .15s;
    z-index: 100;
    overflow: hidden;
}
.member-header-menu.open .member-header-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mhd-head {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-soft);
    background: var(--bg-soft);
}
.mhd-head strong { display: block; color: var(--text); font-size: 14px; }
.mhd-head small { color: var(--text-muted); font-size: 12px; }
.member-header-dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: background .15s;
}
.member-header-dropdown a:hover { background: var(--bg-soft); }
.member-header-dropdown .mhd-divider {
    height: 1px;
    background: var(--border-soft);
    margin: 4px 0;
}
.member-header-dropdown .mhd-logout { color: #dc2626; font-weight: 600; }

/* Beğeni / Kayıt butonları (post detay için) */
.post-action-btn {
    background: #fff;
    border: 1px solid var(--border);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-soft);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .15s;
    font-family: inherit;
}
.post-action-btn:hover { border-color: var(--brand); color: var(--brand); }
.post-action-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.post-action-btn svg { width: 16px; height: 16px; }

/* =====================================================================
   AUTH SAYFALARI - 2 KOLONLU MODERN TASARIM
   (login/register/forgot/reset)
   ===================================================================== */
.auth-page {
    min-height: calc(100vh - 200px);
    background: var(--bg-soft);
    padding: 0;
    display: flex;
    align-items: stretch;
}
.auth-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
@media (max-width: 900px) {
    .auth-grid { grid-template-columns: 1fr; }
}

/* Sol marka tarafı */
.auth-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 50%, var(--brand-dark) 100%);
    color: #fff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    min-height: 600px;
}
@media (max-width: 900px) {
    .auth-hero { min-height: 280px; padding: 40px 30px; }
}
.auth-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255,215,0,.4), transparent),
        radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,.5), transparent),
        radial-gradient(2px 2px at 80% 60%, rgba(255,215,0,.3), transparent),
        radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,.4), transparent),
        radial-gradient(1.5px 1.5px at 70% 80%, rgba(255,215,0,.3), transparent);
    background-size: 400px 300px;
    opacity: .8;
    pointer-events: none;
}
.auth-hero-content {
    position: relative;
    z-index: 1;
    max-width: 460px;
}
.auth-hero-eyebrow {
    font-size: 12px;
    letter-spacing: 4px;
    color: #ffd700;
    margin-bottom: 18px;
    font-weight: 700;
}
.auth-hero h1 {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.15;
    letter-spacing: -.5px;
}
.auth-hero p {
    color: rgba(255,255,255,.85);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 24px;
}
.auth-hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.auth-hero-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,.92);
    font-size: 14px;
    line-height: 1.5;
}
.auth-hero-list svg {
    width: 18px;
    height: 18px;
    color: #ffd700;
    flex-shrink: 0;
    margin-top: 2px;
}
.auth-hero-decor {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    font-size: 28px;
    color: rgba(255,215,0,.4);
    margin-top: 30px;
}
.auth-hero-decor span:nth-child(odd) { animation: zodiac-twinkle 3s ease-in-out infinite; }
.auth-hero-decor span:nth-child(even) { animation: zodiac-twinkle 4s ease-in-out infinite .5s; }

/* Sağ form tarafı */
.auth-form-side {
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 600px) {
    .auth-form-side { padding: 40px 22px; }
}
.auth-form-wrap {
    width: 100%;
    max-width: 420px;
}
.auth-form-head { margin-bottom: 28px; }
.auth-form-head h2 {
    font-family: var(--serif);
    font-size: 30px;
    color: var(--text);
    margin: 0 0 8px;
    font-weight: 700;
}
.auth-form-head p {
    color: var(--text-soft);
    font-size: 14px;
    margin: 0;
}
.auth-form-head a {
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
}
.auth-form-head a:hover { text-decoration: underline; }

/* Alert kutuları */
.auth-alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13.5px;
    line-height: 1.5;
}
.auth-alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.auth-alert-error { background: #fef2f2; color: #991b1b; border-left: 3px solid #dc2626; }
.auth-alert-success { background: #f0fdf4; color: #166534; border-left: 3px solid #16a34a; }
.auth-alert-success strong { display: block; margin-bottom: 4px; }
.auth-alert-success p { margin: 0; opacity: .95; }
.auth-alert-error strong { display: block; margin-bottom: 4px; }
.auth-alert-error p { margin: 0; opacity: .9; }

.auth-debug {
    background: #fef9e7;
    border: 1px dashed #f59e0b;
    color: #78350f;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 12px;
    margin-top: 12px;
}
.auth-debug strong { display: block; margin-bottom: 6px; color: #92400e; }
.auth-debug p { margin: 0 0 6px; }
.auth-debug a { word-break: break-all; color: var(--brand); font-family: monospace; font-size: 11px; }

/* Form */
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.auth-forgot {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
}
.auth-forgot:hover { text-decoration: underline; }

.auth-input {
    position: relative;
    display: flex;
    align-items: center;
}
.auth-input > svg:first-child {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
    z-index: 1;
}
.auth-input input {
    width: 100%;
    padding: 12px 14px 12px 44px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: var(--text);
    transition: all .15s;
    font-family: inherit;
}
.auth-input input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .1);
}
.auth-input input::placeholder { color: var(--text-muted); }
.auth-input-prefix {
    position: absolute;
    left: 44px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    z-index: 1;
}
.auth-pass-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: 0;
    padding: 6px;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .15s;
}
.auth-pass-toggle:hover { color: var(--brand); }
.auth-pass-toggle svg { width: 18px; height: 18px; }
.auth-pass-toggle.show svg { color: var(--brand); }

.auth-hint { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }
.auth-field-error {
    color: #dc2626;
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.auth-row-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4px 0;
}
.auth-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
}
.auth-check input[type=checkbox] {
    accent-color: var(--brand);
    margin-top: 2px;
    flex-shrink: 0;
}
.auth-check a { color: var(--brand); font-weight: 600; text-decoration: none; }
.auth-check a:hover { text-decoration: underline; }

.auth-submit {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    border: 0;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, .25);
    font-family: inherit;
    margin-top: 4px;
}
.auth-submit:hover {
    box-shadow: 0 4px 16px rgba(220, 38, 38, .35);
    transform: translateY(-1px);
}
.auth-submit:active { transform: translateY(0); }
.auth-submit svg { width: 18px; height: 18px; }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-alt { display: flex; flex-direction: column; gap: 8px; }
.auth-alt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: var(--text);
    border: 1.5px solid var(--border);
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all .15s;
    cursor: pointer;
    font-family: inherit;
}
.auth-alt-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: #fef2f2;
}
.auth-alt-btn svg { width: 18px; height: 18px; }

/* Google login button */
.auth-google-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff !important;
    border: 1.5px solid #dadce0 !important;
    color: #3c4043 !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    transition: all .15s;
}
.auth-google-btn:hover {
    background: #f8f9fa !important;
    border-color: #5f6368 !important;
    box-shadow: 0 1px 3px rgba(60,64,67,.15);
}
.btn-google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 11px;
    background: #fff;
    border: 1.5px solid #dadce0;
    border-radius: 6px;
    color: #3c4043;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all .15s;
}
.btn-google-login:hover {
    background: #f8f9fa;
    border-color: #5f6368;
    box-shadow: 0 1px 3px rgba(60,64,67,.15);
}

/* Üst Manşet şeridi */
.upper-manset { background: linear-gradient(90deg, var(--brand-dark), var(--brand)); color: #fff; padding: 8px 0; margin-bottom: 14px; }
.upper-manset-strip { display: flex; align-items: center; gap: 16px; }
.upper-manset-label { background: #fff; color: var(--brand); padding: 4px 10px; border-radius: 3px; font-size: 11px; font-weight: 800; letter-spacing: .8px; flex-shrink: 0; }
.upper-manset-items { display: flex; gap: 28px; overflow: hidden; flex: 1; }
.upper-manset-item { color: #fff; text-decoration: none; font-size: 13px; white-space: nowrap; opacity: .92; transition: opacity .15s; }
.upper-manset-item:hover { opacity: 1; text-decoration: underline; }
.upper-manset-item strong { font-weight: 600; }

/* Tali Manşet bandı */
.secondary-manset { padding: 18px 0; margin-bottom: 24px; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: var(--bg-soft); }
.secondary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .secondary-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .secondary-grid { grid-template-columns: 1fr; } }
.secondary-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; text-decoration: none; color: inherit; transition: all .15s; display: block; }
.secondary-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.08); transform: translateY(-2px); }
.secondary-card .cover { aspect-ratio: 16/10; overflow: hidden; }
.secondary-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.secondary-card .cat { display: inline-block; background: var(--brand); color: #fff; font-size: 10px; padding: 3px 8px; font-weight: 700; text-transform: uppercase; margin: 8px 12px 0; border-radius: 2px; }
.secondary-card h3 { padding: 8px 12px 12px; font-family: var(--serif); font-size: 14px; font-weight: 700; line-height: 1.35; margin: 0; color: var(--text); }
.secondary-card:hover h3 { color: var(--brand); }

/* ===== Galeri & Video Frontend ===== */
.page-title-row { margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--brand); }
.page-title { font-family: var(--serif); font-size: 32px; margin: 0; color: var(--text); }
.page-sub { color: var(--text-muted); margin: 4px 0 0; font-size: 14px; }
.empty-page { text-align: center; padding: 60px; color: var(--text-muted); background: var(--bg-soft); border-radius: 8px; }

/* Galeri liste */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; transition: all .2s; display: block; }
.gallery-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.gc-cover { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.gc-cover img { width: 100%; height: 100%; object-fit: cover; }
.gc-photo-count { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,.75); color: #fff; padding: 4px 10px; border-radius: 14px; font-size: 12px; font-weight: 700; }
.gc-body { padding: 14px; }
.gc-cat { display: inline-block; background: var(--brand); color: #fff; padding: 3px 9px; border-radius: 3px; font-size: 11px; font-weight: 700; margin-bottom: 8px; }
.gc-body h3 { font-family: var(--serif); font-size: 17px; margin: 0 0 8px; line-height: 1.35; }
.gc-body p { font-size: 13px; color: var(--text-soft); margin: 0; line-height: 1.5; }

/* Galeri detay */
.gallery-detail { padding: 30px 0; }
.gd-head { text-align: center; margin-bottom: 30px; padding-bottom: 24px; border-bottom: 2px solid var(--border-soft); }
.gd-cat { display: inline-block; background: var(--brand); color: #fff; padding: 4px 14px; border-radius: 3px; font-size: 12px; font-weight: 700; text-decoration: none; margin-bottom: 12px; letter-spacing: .5px; }
.gd-head h1 { font-family: var(--serif); font-size: 36px; line-height: 1.2; margin: 0 0 14px; }
.gd-desc { color: var(--text-soft); font-size: 17px; line-height: 1.6; max-width: 720px; margin: 0 auto 14px; }
.gd-meta { color: var(--text-muted); font-size: 13px; }
.gd-meta span { margin-right: 4px; }
.gd-photos { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.gd-photo { margin: 0; cursor: zoom-in; border-radius: 8px; overflow: hidden; background: var(--bg-soft); transition: transform .2s; }
.gd-photo:hover { transform: scale(1.02); }
.gd-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.gd-photo figcaption { padding: 8px 12px; font-size: 12.5px; color: var(--text-soft); background: #fff; border-top: 1px solid var(--border-soft); }
.gd-other { padding: 40px 0; background: var(--bg-soft); margin-top: 40px; }
.gd-other h2 { font-family: var(--serif); font-size: 24px; margin: 0 0 18px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next { position: absolute; background: rgba(255,255,255,.15); border: 0; color: #fff; cursor: pointer; transition: background .15s; border-radius: 50%; }
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: rgba(255,255,255,.3); }
.lightbox .lb-close { top: 20px; right: 20px; width: 44px; height: 44px; font-size: 28px; line-height: 1; }
.lightbox .lb-prev, .lightbox .lb-next { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; font-size: 36px; line-height: 1; display: flex; align-items: center; justify-content: center; }
.lightbox .lb-prev { left: 20px; }
.lightbox .lb-next { right: 20px; }
.lightbox .lb-content { max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox .lb-content img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 4px; }
.lightbox .lb-caption { color: #fff; font-size: 15px; margin-top: 12px; max-width: 720px; margin-left: auto; margin-right: auto; }
.lightbox .lb-counter { color: rgba(255,255,255,.6); font-size: 13px; margin-top: 6px; }

/* Video liste */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .video-grid { grid-template-columns: 1fr; } }
.video-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; transition: all .2s; display: block; }
.video-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.vc-cover { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.vc-cover img { width: 100%; height: 100%; object-fit: cover; opacity: .92; transition: opacity .2s; }
.video-card:hover .vc-cover img { opacity: 1; }
.vc-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px; background: rgba(200,16,46,.92); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; transition: all .2s; padding-left: 5px; }
.video-card:hover .vc-play { background: var(--brand); transform: translate(-50%, -50%) scale(1.1); }
.vc-duration { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,.85); color: #fff; padding: 3px 8px; border-radius: 4px; font-size: 12px; font-weight: 700; }
.vc-body { padding: 12px 14px; }
.vc-cat { display: inline-block; background: var(--brand); color: #fff; padding: 2px 8px; border-radius: 3px; font-size: 11px; font-weight: 700; margin-bottom: 6px; }
.vc-body h3 { font-family: var(--serif); font-size: 16px; margin: 0; line-height: 1.35; color: var(--text); }
.video-card:hover .vc-body h3 { color: var(--brand); }

/* Video detay */
.video-detail { padding: 24px 0; }
.vd-player { aspect-ratio: 16/9; background: #000; border-radius: 8px; overflow: hidden; margin-bottom: 24px; }
.vd-player iframe, .vd-player video { width: 100%; height: 100%; border: 0; }
.vd-head { padding: 0 0 24px; border-bottom: 2px solid var(--border-soft); margin-bottom: 30px; }
.vd-cat { display: inline-block; background: var(--brand); color: #fff; padding: 4px 12px; border-radius: 3px; font-size: 12px; font-weight: 700; text-decoration: none; margin-bottom: 10px; }
.vd-head h1 { font-family: var(--serif); font-size: 28px; line-height: 1.3; margin: 0 0 10px; }
.vd-meta { color: var(--text-muted); font-size: 13px; margin-bottom: 14px; }
.vd-meta span { margin-right: 2px; }
.vd-desc { color: var(--text-soft); line-height: 1.7; font-size: 15px; }
.vd-other { padding: 40px 0; background: var(--bg-soft); margin-top: 40px; }
.vd-other h2 { font-family: var(--serif); font-size: 24px; margin: 0 0 18px; }

/* ===================================================================
   FOOTER PRO - Üst seviye, profesyonel
   =================================================================== */
.site-footer-pro { margin-top: 60px; background: #0f172a; color: #e2e8f0; }

/* Newsletter banner */
.footer-newsletter {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark, #b91c1c) 100%);
    padding: 36px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.footer-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
    pointer-events: none;
}
.footer-newsletter-inner {
    display: flex; align-items: center; gap: 30px; flex-wrap: wrap;
    position: relative; z-index: 1;
}
.footer-newsletter-text { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 280px; }
.footer-newsletter-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; flex-shrink: 0;
}
.footer-newsletter-text h3 { color: #fff; font-size: 22px; margin: 0 0 4px; font-weight: 700; }
.footer-newsletter-text p { margin: 0; opacity: .92; font-size: 14px; }
.footer-newsletter-form {
    display: flex; gap: 8px; min-width: 300px; flex: 1; max-width: 480px; position: relative;
}
.footer-newsletter-form input {
    flex: 1; padding: 14px 18px;
    border: 0; border-radius: 6px;
    font-size: 14px; font-family: inherit; outline: 0;
    background: rgba(255,255,255,.95);
}
.footer-newsletter-form button {
    padding: 14px 26px;
    background: #0f172a; color: #fff;
    border: 0; border-radius: 6px;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all .2s;
    font-family: inherit;
}
.footer-newsletter-form button:hover { background: #1e293b; transform: translateY(-1px); }

/* Ana footer */
.footer-main { padding: 50px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } .footer-brand-col { grid-column: 1/-1; margin-bottom: 10px; } }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand-col {}
.footer-logo {
    font-family: var(--serif, Georgia);
    font-size: 26px;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: .3px;
}
.footer-about {
    color: #94a3b8;
    font-size: 13.5px;
    line-height: 1.7;
    margin: 0 0 18px;
}

/* Sosyal */
.footer-social { display: flex; gap: 10px; margin-bottom: 18px; }
.footer-social a {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    color: #cbd5e1;
    transition: all .2s;
}
.footer-social a:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}
.footer-social a svg { width: 16px; height: 16px; }

/* İletişim mini */
.footer-contact-mini {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 14px;
}
.footer-contact-item {
    display: flex; align-items: center; gap: 8px;
    color: #94a3b8;
    font-size: 12.5px;
    margin-bottom: 6px;
}
.footer-contact-item svg { color: var(--brand); flex-shrink: 0; }

/* Kolon başlıkları */
.footer-col h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand);
    display: inline-block;
}

/* Linkler */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13.5px;
    transition: all .15s;
    display: inline-block;
}
.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

/* App badges */
.footer-app-badges { display: flex; flex-direction: column; gap: 8px; }
.app-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    padding: 10px 14px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all .2s;
}
.app-badge:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--brand);
    transform: translateY(-2px);
}
.app-badge svg { color: #fff; flex-shrink: 0; }
.app-badge div { display: flex; flex-direction: column; line-height: 1.1; }
.app-badge small { font-size: 9px; opacity: .7; text-transform: uppercase; letter-spacing: .5px; }
.app-badge strong { font-size: 13px; font-weight: 700; }

/* Alt çizgi */
.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 14px;
}
.footer-copy {
    color: #94a3b8;
    font-size: 13px;
}
.footer-copy strong { color: #fff; }
.footer-bottom-links {
    display: flex; align-items: center; gap: 8px;
    font-size: 12.5px;
    color: #64748b;
}
.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color .15s;
}
.footer-bottom-links a:hover { color: #fff; }
.footer-credit {
    color: #64748b;
    font-size: 12px;
}
.footer-credit strong { color: #cbd5e1; }

/* Eski footer class'ları geçersiz kıl */
.site-footer { display: none; }

/* ===== Manşet Slider (Milliyet tarzı) ===== */
.manset-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 8px;
    background: #1a1a1a;
}
.manset-slider-track { position: relative; width: 100%; height: 100%; }
.manset-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .55s ease;
    color: #fff;
    text-decoration: none;
    display: block;
}
.manset-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.manset-slide .cover {
    position: absolute;
    inset: 0;
}
.manset-slide .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.manset-slide .cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 40%, transparent 70%);
    pointer-events: none;
}
.manset-slide .info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 30px 28px;
    z-index: 1;
}
.manset-slide .info .cat {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
    border-radius: 3px;
}
.manset-slide .info h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,.6);
    font-family: var(--serif, Georgia);
}

/* Oklar */
.manset-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,.5);
    border: 0;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    border-radius: 50%;
}
.manset-arrow:hover { background: var(--brand); transform: translateY(-50%) scale(1.05); }
.manset-prev { left: 14px; }
.manset-next { right: 14px; }

/* Dots */
.manset-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}
.manset-dot {
    width: 28px;
    height: 4px;
    border: 0;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: all .2s;
    border-radius: 2px;
    padding: 0;
}
.manset-dot.active { background: var(--brand); width: 36px; }
.manset-dot:hover { background: rgba(255,255,255,.7); }

/* Sayaç */
.manset-counter {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0,0,0,.6);
    color: #fff;
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .manset-slide .info { padding: 16px 18px 22px; }
    .manset-slide .info h2 { font-size: 18px; }
    .manset-arrow { width: 36px; height: 36px; }
    .manset-prev { left: 8px; }
    .manset-next { right: 8px; }
    .manset-counter { top: 8px; right: 8px; padding: 3px 9px; font-size: 11px; }
}

/* Yazarlar listesi */
.authors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin-top: 20px; }
.author-card {
    display: flex; gap: 14px; padding: 18px;
    background: #fff; border: 1px solid var(--border); border-radius: 8px;
    text-decoration: none; color: inherit;
    transition: all .2s;
}
.author-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.08); transform: translateY(-2px); border-color: var(--brand); }
.author-avatar {
    width: 64px; height: 64px; border-radius: 50%; overflow: hidden;
    background: var(--brand); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-initial { color: #fff; font-size: 26px; font-weight: 700; font-family: var(--serif, Georgia); }
.author-body { flex: 1; min-width: 0; }
.author-name { margin: 0 0 4px; font-size: 17px; font-weight: 700; color: var(--text); }
.author-role { font-size: 12px; color: var(--brand); font-weight: 600; text-transform: uppercase; letter-spacing: .3px; margin-bottom: 8px; }
.author-bio { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0 0 10px; }
.author-stats { display: flex; gap: 14px; font-size: 12px; color: var(--text-muted); }
.author-stats strong { color: var(--text); font-weight: 700; }

/* Slider + sağ kolon hizalama */
.manset-grid { align-items: stretch; }
.manset-slider { height: 100%; min-height: 460px; aspect-ratio: auto; }
.manset-side-list {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 14px;
    height: 100%;
    min-height: 460px;
}
.manset-side {
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
}
.manset-side .cover { height: 100%; }
@media (max-width: 768px) {
    .manset-slider { min-height: 280px; aspect-ratio: 16/10; }
    .manset-side-list { min-height: auto; }
    .manset-side { aspect-ratio: 16/9; }
}

/* ===== Skyscraper Reklam Alanları ===== */
.sky-ad {
    position: fixed;
    top: 180px;
    width: 160px;
    z-index: 50;
    text-align: center;
}
.sky-ad-left {
    /* container'ın solu: (100vw - 1280px) / 2 - 170px */
    left: calc((100vw - 1280px) / 2 - 170px);
}
.sky-ad-right {
    right: calc((100vw - 1280px) / 2 - 170px);
}
.sky-ad-label {
    font-size: 9px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-align: center;
    font-weight: 700;
}
.sky-ad a {
    display: block;
    line-height: 0;
    border-radius: 4px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.sky-ad a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.sky-ad img {
    max-width: 160px;
    width: 100%;
    height: auto;
    display: block;
}

/* Ekran 1640px altında skyscraper'lar gizlenir (yer kalmaz) */
@media (max-width: 1640px) {
    .sky-ad-left, .sky-ad-right { display: none; }
}

/* Footer servisler ikonlu link listesi */
.footer-links-icon li { margin-bottom: 9px; }
.footer-links-icon a {
    display: flex; align-items: center; gap: 10px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 13.5px;
    transition: all .2s;
}
.footer-links-icon a:hover {
    color: #fff;
    transform: translateX(3px);
}
.footer-links-icon a:hover svg { color: var(--brand); }
.footer-links-icon svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
    color: #64748b;
    transition: color .2s;
}
