/* 
   Balıkesir Gazeteciler ve Yazarlar Cemiyeti (BGYC)
   Ana Tasarım Stili - Vanilla CSS
*/


/* CSS Variables */
:root {
    --primary: #0b1b3d;
    --primary-light: #0d2352;
    --primary-dark: #071128;
    --accent: #d4af37;
    --accent-hover: #c5a028;
    --accent-light: rgba(212, 175, 55, 0.1);
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --bg-light: #F5F6FA;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(11, 27, 61, 0.05), 0 4px 6px -2px rgba(11, 27, 61, 0.02);
    --shadow-premium: 0 20px 25px -5px rgba(11, 27, 61, 0.08), 0 10px 10px -5px rgba(11, 27, 61, 0.03);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
}

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

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

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

ul {
    list-style: none;
}

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

/* Common Layout Elements */
.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
}

.section-title {
    font-size: 28px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Paylaşım Butonları */
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}
.share-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.share-btn-facebook { background: #1877f2; }
.share-btn-facebook:hover { background: #1463cc; }
.share-btn-x { background: #000000; }
.share-btn-x:hover { background: #333333; }
.share-btn-whatsapp { background: #25d366; }
.share-btn-whatsapp:hover { background: #1da851; }
@media (max-width: 576px) {
    .share-btn { width: 40px; height: 40px; font-size: 16px; }
}

/* Header & Navigation */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 13px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar .container {
    max-width: 1560px;
    padding: 0 16px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info span {
    margin-right: 20px;
}

.top-bar-info span a,
.top-bar-info span a[x-apple-data-detectors] {
    color: inherit;
    text-decoration: none;
}

.top-bar-social a {
    color: rgba(255,255,255,0.7);
    margin-left: 4px;
    font-size: 16px;
    padding: 8px;
    display: inline-block;
}

.top-bar-social a:hover {
    color: var(--accent);
}

/* Üst Bar Sağ Grup (Arama + Sosyal) */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Arama Aç/Kapat Butonu */
.search-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.search-toggle-btn:hover,
.search-toggle-btn:focus-visible {
    background-color: rgba(255,255,255,0.1);
    color: var(--accent);
    outline: none;
}

.search-toggle-btn.active {
    background-color: var(--accent);
    color: var(--primary-dark);
}

/* Site İçi Arama Paneli (Üst bar altında açılır) */
.site-search-panel {
    position: relative;
    z-index: 1002;
    max-height: 0;
    overflow: hidden;
    background-color: var(--primary);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-search-panel.active {
    max-height: 140px;
}

.site-search-panel-inner {
    padding: 16px;
}

.site-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding: 4px 2px;
    transition: border-color 0.3s ease;
}

.site-search-form:focus-within {
    border-bottom-color: var(--accent);
}

.site-search-icon {
    color: rgba(255,255,255,0.55);
    font-size: 15px;
    flex-shrink: 0;
}

.site-search-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 10px 0;
}

/* Genel :focus-visible kuralı (erişilebilirlik) burada kutu içinde kutu görünümü
   yaratıyor; odak göstergesi zaten .site-search-form:focus-within alt çizgisiyle
   sağlandığı için input üzerindeki varsayılan anahat kapatılıyor. */
.site-search-input:focus-visible {
    outline: none;
}

.site-search-input::placeholder {
    color: rgba(255,255,255,0.45);
}

.site-search-submit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    background: transparent;
    color: var(--accent);
    border: none;
    padding: 8px 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.site-search-submit:hover {
    color: var(--accent-hover);
}

.site-search-submit:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

.site-search-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.site-search-close:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--text-light);
}

.site-search-close:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Arama açıkken sayfanın geri kalanını hafifçe karartan katman (mobil odak) */
.site-search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 17, 40, 0.35);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.site-search-overlay.active {
    display: block;
    opacity: 1;
}

.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    overflow: visible; /* Logo taşmasına izin ver */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    height: 100%;
    overflow: visible;
    align-self: flex-start;
}

.logo img {
    height: 100px;
    width: auto;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 3px 8px rgba(11,27,61,0.12));
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    border-left: 2px solid var(--accent);
    padding-left: 12px;
    user-select: none;
}

.logo-text-top {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--primary);
    line-height: 1.15;
    white-space: nowrap;
}

.logo-text-bottom {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    line-height: 1.15;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-item {
    margin-left: 25px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent);
    font-weight: 700;
}

/* Alt Menü (Cemiyet → Galeri) */
.nav-item.has-sub {
    position: relative;
}

.nav-sub {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 170px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(11,27,61,0.13);
    border: 1px solid var(--border-color);
    padding: 5px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1100;
}

.nav-item.has-sub:hover .nav-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-sub-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.nav-sub-link i {
    color: var(--accent);
    font-size: 12px;
}

.nav-sub-link:hover,
.nav-sub-link.active {
    background: var(--bg-light);
    color: var(--accent);
}

/* Mobil: alt menü her zaman görünür, girintili */
@media (max-width: 768px) {
    .nav-item.has-sub { position: static; }

    .nav-sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: transparent;
        padding: 0;
    }

    .nav-sub-link {
        justify-content: center;
        padding: 6px 0 6px 0;
        font-size: 13px;
        color: var(--text-muted);
        border-top: 1px dashed var(--border-color);
    }

    .nav-sub-link:hover,
    .nav-sub-link.active {
        background: transparent;
        color: var(--accent);
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

/* News Slider (Hero Area) */
/* ============================================
   HERO ALANI — 2 SÜTUN DÜZENİ
   ============================================ */
.hero-section {
    background-color: #F5F6FA;
    padding: 32px 0 0;
    overflow: hidden;
    position: relative;
}

/* Hero kendi geniş container'ı — sayfa container'ından daha geniş */
.hero-section .container {
    max-width: 1560px;
    padding: 0 16px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* ── SLIDER ─────────────────────────────── */
.hero-slider-wrap {
    display: flex;
    flex-direction: column;
}

.slider-container {
    position: relative;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    width: 100%;
    box-shadow: var(--shadow-premium);
}

/* Görselin altında haber başlık + özet şeridi — yükseklik sabit, layout kayması olmaz */
.slide-info-panel {
    flex: none;
    overflow: hidden;
    background: var(--bg-white);
    border-radius: 0 0 12px 12px;
    padding: 10px 20px 12px;
    border-top: 3px solid var(--accent);
    box-shadow: 0 8px 24px rgba(11,27,61,0.10);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.slide-info-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    line-height: 1.25;
    min-height: 2.5em; /* her zaman 2 satır yüksekliği = 50px; başlık 1 satır olunca da kayma olmaz */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.slide-info-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
    min-height: calc(3 * 1.4em); /* her zaman 3 satır yüksekliği; özet kısa olunca da kayma olmaz */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.7s ease-in-out;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Blur arka plan — görselin renk tonuyla dolar, kırpılmaz */
.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(22px) brightness(0.45) saturate(1.3);
    transform: scale(1.08);
    z-index: 0;
}

/* Asıl görsel — tam sığar, kırpılmaz */
.slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    transform: scale(1);
    transition: transform 6s ease-in-out;
    will-change: transform;
}

.slide.active .slide-img {
    transform: scale(1.03);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        to top,
        rgba(7,17,40,0.95) 0%,
        rgba(7,17,40,0.50) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 32px 40px 72px;
    pointer-events: none;
}

.slide-overlay a,
.slide-overlay button {
    pointer-events: auto;
}

.slide-content {
    color: var(--text-light);
    transform: translateY(14px);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    position: relative;
    z-index: 4;
    width: 100%;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-tag {
    background-color: var(--accent);
    color: var(--primary);
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    width: fit-content;
    align-self: flex-start;
}

.slide-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.slide-excerpt {
    font-size: 14px;
    color: rgba(248,250,252,0.80);
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.6;
}

.slide-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
    width: fit-content;
    align-self: flex-start;
    margin-top: 4px;
    border-bottom: 1px solid rgba(212,175,55,0.4);
    padding-bottom: 2px;
}

.slide-read-btn:hover {
    gap: 10px;
    color: var(--accent-hover);
    border-bottom-color: var(--accent);
}

/* Progress bar */
.slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.15);
    z-index: 5;
}

.slider-progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: none;
}

/* Alt bar: dots ortada, oklar sağda */
.slider-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(to top, rgba(7,17,40,0.75) 0%, transparent 100%);
}

.slider-counter {
    display: none;
}

/* Dots ortada */
.slider-dots {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.slider-nav {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.slider-btn {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    position: relative;
}
.slider-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
}

.slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.slider-empty {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px dashed var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

.slider-empty i { font-size: 32px; }

/* ── HERO PANEL — 2×2 grid, sol sütunla eşit yükseklik ── */
.hero-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 100%;
}

/* Editörün Seçimi — sol üst hücre */
.hero-panel-featured {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    aspect-ratio: 16 / 9;
    grid-column: 1;
    grid-row: 1;
}

.hero-panel-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-panel-featured:hover .hero-panel-featured-img {
    transform: scale(1.04);
}

.hero-panel-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,17,40,0.9) 0%, rgba(7,17,40,0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.hero-panel-editor-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--accent);
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 8px;
    width: fit-content;
}

.hero-panel-featured-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* 3 kart — display:contents ile direkt 2×2 grid'e dahil olur */
.hero-panel-grid {
    display: contents;
}

.hero-panel-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    background: var(--bg-white);
    box-shadow: 0 4px 16px rgba(11,27,61,0.08);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-panel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(11,27,61,0.14);
}

.hero-panel-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}

.hero-panel-card:hover .hero-panel-card-img {
    transform: scale(1.04);
}

.hero-panel-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 7px 10px 9px;
    flex: 1;
    overflow: hidden;
}

.hero-panel-card-tag {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--accent);
}

.hero-panel-card-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin: 0;
    transition: color 0.2s;
}

.hero-panel-card:hover .hero-panel-card-title {
    color: var(--accent);
}

.hero-panel-card-date {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 4px;
}

.hero-panel-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
    background: var(--bg-light);
    border: 1px dashed var(--border-color);
    border-radius: 10px;
}

/* News Ticker (Son Dakika Bandı) */
/* ══════════════════════════════════════════
   MODERN 3D TICKER — SON HABERLER BANDI
══════════════════════════════════════════ */
.ticker-section {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    border-top: none;
    border-bottom: none;
    height: 46px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(7,17,40,0.25);
    margin: 20px 0 0;
    border-radius: 0 0 8px 8px;
}

/* Üstte ince altın çizgi */
.ticker-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%, var(--accent) 30%, #fff8dc 50%, var(--accent) 70%, transparent 100%);
    background-size: 200% 100%;
    animation: tickerShimmer 3s linear infinite;
}

@keyframes tickerShimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Etiket */
.ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0 18px;
    height: 100%;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
    padding-right: 28px;
    box-shadow: 4px 0 12px rgba(212,175,55,0.3);
}

/* Pulse nokta */
.ticker-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-dark);
    position: relative;
    flex-shrink: 0;
}

.ticker-pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--primary-dark);
    opacity: 0.4;
    animation: tickerPulse 1.4s ease-out infinite;
}

@keyframes tickerPulse {
    0%   { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Son Dakika etiketi — gold varyant */
.ticker-label.ticker-breaking {
    background: var(--accent);
    color: var(--primary-dark);
    box-shadow: 4px 0 12px rgba(212,175,55,0.4);
    animation: breakingPulse 2s ease-in-out infinite;
}
@keyframes breakingPulse {
    0%, 100% { background: var(--accent); }
    50%       { background: var(--accent-hover); }
}

/* Kayan alan */
.ticker-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;

    /* Kenar fade efekti */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 3%,
        black 90%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 3%,
        black 90%,
        transparent 100%
    );
}

.ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: tickerScroll 35s linear infinite;
    will-change: transform;
}

.ticker-track:hover,
.ticker-track.paused {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 6px;
}

.ticker-dot {
    font-size: 8px;
    color: var(--accent);
    opacity: 0.7;
    flex-shrink: 0;
}

.ticker-item a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    white-space: nowrap;
}

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

/* Durdur butonu */
.ticker-pause-btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    margin: 0 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    position: relative;
}
.ticker-pause-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
}

.ticker-pause-btn:hover {
    background: rgba(212,175,55,0.15);
    color: var(--accent);
    border-color: rgba(212,175,55,0.4);
}

@keyframes tickerScroll {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-33.333%, 0, 0); }
}

@media (max-width: 480px) {
    .ticker-label { font-size: 10px; padding: 0 12px 0 14px; padding-right: 24px; }
    .ticker-item a { font-size: 12px; }
    .ticker-pause-btn { display: none; }
}

/* Home Layout Grids */
.home-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Grid item'larının içerik genişliğine göre büyümesini engelle (min-width:auto varsayılanı overflow'a yol açar) */
.home-layout > div,
.home-layout > aside {
    min-width: 0;
}

/* News Card Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.news-card:hover,
.news-card:focus-within {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11,27,61,0.1);
}

.news-card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.news-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-card-img {
    transform: scale(1.05);
}

/* Arama sonuçlarında görseli olmayan içerikler için ikon yer tutucusu */
.search-result-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.search-result-no-img i {
    font-size: 34px;
    color: rgba(255,255,255,0.35);
}

.news-card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: var(--text-light);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.news-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.news-card-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-card-title a {
    color: var(--primary);
}

.news-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-card-more {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
}

.news-card-more::after {
    content: ' →';
    transition: transform 0.2s;
}

.news-card:hover .news-card-more::after {
    transform: translateX(4px);
}

/* ── Köşe Yazıları Kartı ────────────────────── */
.article-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.article-card:hover,
.article-card:focus-within {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11,27,61,0.1);
}

/* Görsel wrapper — 16:9 sabit oran */
.article-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: block;
    flex-shrink: 0;
}

.article-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-card-img {
    transform: scale(1.05);
}

/* Görsel yoksa yazar avatarlı placeholder */
.article-card-no-img {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-card-avatar-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(212,175,55,0.6);
    opacity: 0.85;
}

.article-card-feather {
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-size: 22px;
    color: rgba(212,175,55,0.4);
}

/* Kart gövdesi */
.article-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Yazar bandı */
.article-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.article-card-avatar-wrap {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    display: block;
}

.article-card-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.article-card-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.article-card-author-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-card-author-name:hover { color: var(--accent); }

.article-card-date {
    font-size: 11px;
    color: var(--text-muted);
}

.article-card-date i { margin-right: 3px; color: var(--accent); }

/* Başlık */
.article-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--primary);
}

.article-card-title a { color: inherit; }
.article-card-title a:hover { color: var(--accent); }

/* Özet */
.article-card-excerpt {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* ── Ana Sayfa Kategori Haber Grid (1 büyük + 3 küçük) ── */
.ncat-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Ortak kart stili */
.ncat-card {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
}

.ncat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ncat-card:hover .ncat-img {
    transform: scale(1.04);
}

.ncat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7,17,40,0.95) 0%,
        rgba(7,17,40,0.50) 45%,
        rgba(7,17,40,0.05) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 20px;
    transition: background 0.3s;
}

.ncat-card:hover .ncat-overlay {
    background: linear-gradient(
        to top,
        rgba(7,17,40,0.98) 0%,
        rgba(7,17,40,0.60) 50%,
        rgba(7,17,40,0.10) 100%
    );
}

.ncat-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: white;
    padding: 3px 9px;
    border-radius: 3px;
    margin-bottom: 7px;
    width: fit-content;
}

.ncat-title {
    font-size: 13px;
    font-weight: 700;
    color: white;
    line-height: 1.35;
    margin: 0 0 6px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s;
}

.ncat-card:hover .ncat-title {
    color: var(--accent);
}

.ncat-title-lg {
    font-size: 18px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    margin-bottom: 8px;
}

.ncat-excerpt {
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    line-height: 1.55;
    margin: 0 0 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ncat-meta {
    display: flex;
    gap: 14px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.ncat-meta i { color: var(--accent); margin-right: 3px; }

/* Öne çıkan kart (tekil kullanım için artık slider ile değiştirildi) */
.ncat-featured {
    aspect-ratio: 16 / 9;
    width: 100%;
}

/* Öne Çıkan Slider */
.ncat-featured-slider {
    position: relative;
    display: grid;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.ncat-slide {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.65s ease;
    pointer-events: none;
    background: var(--bg-white);
    overflow: hidden;
}
.ncat-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.ncat-slide-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    overflow: hidden;
}
.ncat-slide-img-wrap .ncat-tag {
    position: absolute;
    top: 10px;
    left: 12px;
    margin: 0;
    z-index: 2;
}
.ncat-slide .ncat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.ncat-slide:hover .ncat-img { transform: scale(1.04); }
.ncat-slide-body {
    padding: 12px 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 3px solid var(--border-color);
}
.ncat-slide-body .ncat-title {
    color: var(--text-dark);
    text-shadow: none;
    margin: 0;
}
.ncat-slide-body .ncat-title-lg {
    font-size: 15px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.ncat-slide-body .ncat-excerpt {
    color: var(--text-muted);
    font-size: 12px;
}
.ncat-slide-body .ncat-meta {
    color: var(--text-muted);
    padding-top: 6px;
    border-top: 1px solid var(--border-color);
    margin-top: 2px;
}
.ncat-slide:hover .ncat-slide-body .ncat-title { color: var(--accent); }
/* Ok ve noktalar resim alanıyla (16/9) hizalı overlay */
.ncat-slide-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    aspect-ratio: 16 / 9;
    pointer-events: none;
    z-index: 10;
}
.ncat-slider-dots {
    position: absolute;
    bottom: 14px;
    right: 16px;
    display: flex;
    gap: 7px;
}
.ncat-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.ncat-slider-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}
.ncat-slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    pointer-events: none;
}
.ncat-slider-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    border: none;
    color: white;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: background 0.2s;
    position: relative;
}
.ncat-slider-arrow::before {
    content: '';
    position: absolute;
    inset: -8px;
}
.ncat-slider-arrow:hover { background: rgba(0,0,0,0.7); }

/* Alt kart satırı (3 veya 6 kart) */
.ncat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ncat-row-double {
    grid-template-rows: repeat(2, 1fr);
}

.ncat-small {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

.ncat-small-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
}

.ncat-small-img-wrap .ncat-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ncat-small-img-wrap .ncat-tag {
    position: absolute;
    top: 8px;
    left: 10px;
    margin: 0;
    z-index: 2;
}

.ncat-small-body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ncat-small-body .ncat-title {
    color: var(--text-dark);
    text-shadow: none;
    font-size: 13px;
    margin-bottom: 6px;
}

.ncat-small-excerpt {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0 0 8px;
    flex: 1;
}

.ncat-small-body .ncat-meta {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
    font-size: 11px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 600px) {
    .ncat-row {
        grid-template-columns: 1fr 1fr;
    }
    .ncat-row-double {
        grid-template-rows: unset;
    }
    .ncat-row:not(.ncat-row-double) .ncat-small:last-child {
        display: none;
    }
    .ncat-title-lg { font-size: 15px; }
    .ncat-overlay {
        padding: 12px 14px;
    }
    .ncat-slide-body {
        padding: 10px 12px 12px;
    }
}

@media (max-width: 380px) {
    .ncat-row { grid-template-columns: 1fr; }
    .ncat-row:not(.ncat-row-double) .ncat-small:last-child { display: block; }
}

/* Kategori — Daha Fazla Haber Butonu */
.ncat-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.ncat-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    border: 2px solid;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    background: transparent;
}

.ncat-more-btn:hover {
    filter: brightness(1.1);
    background: rgba(11, 27, 61, 0.08);
    background: color-mix(in srgb, currentColor 10%, transparent);
    transform: translateY(-1px);
}

/* ── Ana Sayfa Haber Listesi (Yatay, Alt Alta) ── */
.news-list {
    display: flex;
    flex-direction: column;
}

.news-list-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: flex-start;
    transition: background 0.15s;
}

.news-list-item:first-child {
    padding-top: 4px;
}

.news-list-item:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}

.news-list-img-wrap {
    flex-shrink: 0;
    width: 190px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

.news-list-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    display: block;
}

.news-list-item:hover .news-list-img {
    transform: scale(1.05);
}

.news-list-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 2px;
}

.news-list-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: white;
    background: var(--primary);
    padding: 3px 9px;
    border-radius: 3px;
    display: inline-block;
    width: fit-content;
}

.news-list-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.news-list-title a {
    color: var(--primary);
    transition: color 0.2s;
}

.news-list-title a:hover {
    color: var(--accent);
}

.news-list-excerpt {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-list-meta {
    font-size: 11.5px;
    color: var(--text-muted);
    display: flex;
    gap: 14px;
    margin-top: 2px;
}

.news-list-meta i {
    color: var(--accent);
    margin-right: 3px;
}

/* Mobil: thumbnail küçülür */
@media (max-width: 600px) {
    .news-list-img-wrap {
        width: 120px;
    }
    .news-list-title {
        font-size: 14px;
    }
    .news-list-excerpt {
        display: none;
    }
}

@media (max-width: 380px) {
    .news-list-img-wrap {
        width: 90px;
    }
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

/* Sidebar Duyurular Widget */
.sidebar-ann-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.sidebar-ann-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.15s;
}

.sidebar-ann-item:first-child {
    padding-top: 4px;
}

.sidebar-ann-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-ann-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.45;
    text-decoration: none;
    display: block;
    transition: color 0.18s;
}

.sidebar-ann-title:hover {
    color: var(--accent);
}

.sidebar-ann-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--text-muted);
}

.sidebar-ann-meta i {
    color: var(--accent);
    font-size: 10px;
}

/* Columnists Widget (Köşe Yazarları) */
.columnist-list-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.columnist-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.columnist-avatar-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    margin-right: 15px;
    flex-shrink: 0;
}

.columnist-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.columnist-info {
    flex-grow: 1;
}

.columnist-name {
    font-size: 15px;
    font-weight: 700;
}

.columnist-article-title {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    margin-top: 2px;
}

/* President Message Banner */
.president-banner {
    background-color: var(--primary-dark);
    color: var(--text-light);
    border-radius: 12px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 30px;
    align-items: center;
    box-shadow: var(--shadow-premium);
    margin: 0 0 60px 0;
}

.president-photo-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid var(--accent);
}

.president-content h3 {
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 5px;
}

.president-content h4 {
    color: var(--text-light);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0.8;
}

.president-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Quick Membership Banner */
.membership-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    margin: 50px 0 0 0;
}

.membership-banner h3 {
    color: var(--text-light);
    font-size: 28px;
    margin-bottom: 10px;
}

.membership-banner p {
    font-size: 15px;
    color: rgba(248, 250, 252, 0.8);
    max-width: 600px;
    margin: 0 auto 25px auto;
}

.membership-banner::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    top: -50px;
    left: -50px;
}

/* Inner Pages Layout */
.page-header {
    background-color: var(--primary-dark);
    padding: 60px 0;
    color: var(--text-light);
    text-align: center;
    border-bottom: 4px solid var(--accent);
}

.page-header:has(.breaking-bar) {
    padding-bottom: 0;
}

.page-title {
    color: var(--text-light);
    font-size: 36px;
    margin-bottom: 10px;
}

.breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 2px;
    font-size: 13px;
    color: rgba(248,250,252,0.7);
}

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

.breadcrumb span {
    margin: 0 10px;
}

/* ─── SON DAKİKA TICKER ─── */
.breaking-bar {
    background: rgba(0,0,0,0.35);
    border-top: 1px solid rgba(212,175,55,0.25);
    padding: 0;
    margin-top: 28px;
    margin-bottom: 0;
    overflow: hidden;
}

.breaking-bar-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    height: 42px;
    gap: 0;
    overflow: hidden;
}

.breaking-label {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 7px;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 0 14px;
    white-space: nowrap;
    text-transform: uppercase;
    height: 100%;
}

.breaking-pulse {
    width: 7px;
    height: 7px;
    background: var(--primary-dark);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    animation: bt-pulse 1.3s ease-in-out infinite;
}

@keyframes bt-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.75); }
}

.ticker-wrap {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-width: 0;
    padding: 0 8px;
    height: 100%;
    /* Compositing katmanı overflow clipping garantisi */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.ticker-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
    animation: bt-scroll 55s linear infinite;
    will-change: transform;
}

@media (hover: hover) {
    .ticker-content:hover {
        animation-play-state: paused;
    }
}

@keyframes bt-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.breaking-bar .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 13px;
    padding: 0 18px 0 0;
    transition: color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.breaking-bar .ticker-item:hover {
    color: var(--accent);
    text-decoration: none;
}

.ticker-sep {
    color: var(--accent);
    font-size: 7px;
    flex-shrink: 0;
    margin-right: 2px;
}

.header-clock {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    white-space: nowrap;
    padding: 0 14px 0 12px;
    border-left: 1px solid rgba(255,255,255,0.15);
    font-variant-numeric: tabular-nums;
    height: 100%;
}

.clock-divider {
    color: rgba(255,255,255,0.25);
    margin: 0 1px;
}

/* ── Responsive: Saat gizle, animasyon hızlandır ── */
@media (max-width: 900px) {
    .header-clock { display: none !important; }
    .ticker-content { animation-duration: 42s; }
}

@media (max-width: 768px) {
    .page-header:has(.breaking-bar) { padding-bottom: 0; }
    .breaking-bar { margin-top: 16px; }
    .breaking-bar-inner { height: 40px; }
    .ticker-content { animation-duration: 35s; }
}

@media (max-width: 600px) {
    .breaking-bar-inner { height: 38px; }
    .breaking-label { font-size: 9px; padding: 0 10px; gap: 5px; letter-spacing: 0.4px; }
    .breaking-bar .ticker-item { font-size: 12px; padding: 0 12px 0 0; }
    .ticker-content { animation-duration: 28s; }
}

@media (max-width: 480px) {
    .breaking-bar { margin-top: 12px; }
    .breaking-bar-inner { height: 36px; }
    .breaking-label { font-size: 8.5px; padding: 0 9px; gap: 4px; letter-spacing: 0.3px; }
    .breaking-bar .ticker-item { font-size: 11.5px; padding: 0 10px 0 0; }
    .ticker-content { animation-duration: 25s; }
}

@media (max-width: 380px) {
    .breaking-label { padding: 0 7px; gap: 3px; font-size: 8px; }
    .breaking-bar .ticker-item { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-content { animation: none; transform: none; }
    .breaking-pulse { animation: none; }
}
/* ─────────────────────────── */

/* Institutional Template */
/* ─── İÇERİK KARTI ─── */
.about-card {
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 40px;
}

/* ─── ESKİ KURUMSAL (geriye uyumluluk) ─── */
.vision-mission-grid, .vision-card, .mission-card,
.values-grid, .value-item, .value-title,
.timeline, .timeline-item, .timeline-content, .timeline-year { display: none; }

/* ════════════════════════════════════════════
   KURUMSAL SAYFA — YENİ TASARIM
════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────── */
.corp-hero {
    position: relative;
    background: var(--primary-dark);
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.corp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212,175,55,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 10% 80%, rgba(26,58,107,0.6) 0%, transparent 60%),
        linear-gradient(135deg, #060e1f 0%, #0b1b3d 50%, #0d2255 100%);
}

/* dekoratif çizgiler */
.corp-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg, rgba(212,175,55,0.04) 0px, transparent 1px, transparent 80px, rgba(212,175,55,0.04) 81px);
    background-size: 81px 100%;
}

.corp-hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 0 100px;
    text-align: center;
}

.corp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.35);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.corp-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.corp-hero-title span {
    color: var(--accent);
}

.corp-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.corp-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px 40px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    width: fit-content;
    margin: 0 auto;
}

.corp-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
}

.corp-hero-stat-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.corp-hero-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.corp-hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.12);
}

.corp-hero-scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.25);
    font-size: 14px;
    animation: corpScrollBounce 2s infinite;
}

@keyframes corpScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Ortak Başlık Elemanları ────────────────── */
.corp-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.corp-section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin: 0;
}

.corp-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.corp-section-header .corp-section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 14px auto 0;
}

/* ── Hakkımızda ─────────────────────────────── */
.corp-about {
    padding: 90px 0;
    background: var(--bg-light);
}

.corp-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.corp-about-text .corp-section-title::after {
    margin-left: 0;
}

.corp-about-text .corp-section-title {
    margin-bottom: 24px;
}

.corp-about-body {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--text-dark);
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin-top: 8px;
}

.corp-about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.corp-highlight-card {
    background: white;
    border-radius: 12px;
    padding: 22px 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.corp-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.corp-highlight-card:hover::before {
    transform: scaleX(1);
}

.corp-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.corp-highlight-icon {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.corp-highlight-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.corp-highlight-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── Misyon & Vizyon ────────────────────────── */
.corp-mv-section {
    padding: 90px 0;
    background: white;
}

.corp-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.corp-mv-card {
    border-radius: 16px;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.corp-mv-mission {
    background: var(--primary-dark);
    color: white;
}

.corp-mv-vision {
    background: linear-gradient(135deg, #0b1b3d 0%, #1a3a6b 100%);
    color: white;
}

.corp-mv-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(212,175,55,0.06);
    border-radius: 50%;
    pointer-events: none;
}

.corp-mv-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    background: rgba(212,175,55,0.04);
    border-radius: 50%;
    pointer-events: none;
}

.corp-mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(7,17,40,0.3);
}

.corp-mv-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.corp-mv-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.corp-mv-heading {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.corp-mv-text {
    font-size: 14.5px;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin: 0;
    position: relative;
    z-index: 1;
}

.corp-mv-deco {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.corp-mv-card:hover .corp-mv-deco {
    transform: scaleX(1);
}

/* ── Değerler ───────────────────────────────── */
.corp-values-section {
    padding: 90px 0;
    background: var(--bg-light);
    text-align: center;
}

.corp-values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.corp-value-card {
    flex: 1 1 280px;
    max-width: calc(33.333% - 16px);
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.corp-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(11,27,61,0.1);
    border-color: var(--accent);
}

.corp-value-icon-wrap {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent) 0%, #b8961e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

.corp-value-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.corp-value-text {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Timeline ───────────────────────────────── */
.corp-timeline-section {
    padding: 90px 0 100px;
    background: white;
}

.corp-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 0 60px;
}

/* dikey çizgi */
.corp-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, var(--accent) 8%, var(--border-color) 20%, var(--border-color) 85%, var(--accent) 95%, transparent 100%);
}

.corp-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    margin-bottom: 48px;
}

.corp-tl-left {
    flex-direction: row;
    padding-right: calc(50% + 36px);
}

.corp-tl-right {
    flex-direction: row-reverse;
    padding-left: calc(50% + 36px);
}

.corp-timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    z-index: 2;
    box-shadow: 0 0 0 4px white, 0 0 0 6px rgba(212,175,55,0.2);
    flex-shrink: 0;
}

.corp-timeline-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    flex: 1;
}

.corp-timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.corp-tl-left .corp-timeline-card { text-align: right; }
.corp-tl-right .corp-timeline-card { text-align: left; }

.corp-timeline-date {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.corp-timeline-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.corp-timeline-text {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.corp-timeline-end {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    box-shadow: 0 0 0 6px rgba(212,175,55,0.15);
}

/* ── Galeri ─────────────────────────────────── */
.corp-gallery-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.corp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .corp-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .corp-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ── CTA Banner ─────────────────────────────── */
.corp-cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d2255 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.corp-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
}

.corp-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.corp-cta-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.corp-cta-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-width: 480px;
    margin: 0;
}

.corp-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
    .corp-about-inner { grid-template-columns: 1fr; gap: 40px; }
    .corp-mv-grid { grid-template-columns: 1fr; gap: 16px; }
    .corp-value-card { max-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
    .corp-hero-inner { padding: 60px 0 80px; }
    .corp-hero-stats { flex-wrap: wrap; padding: 20px 24px; gap: 20px; width: 100%; justify-content: center; }
    .corp-hero-stat { padding: 0 20px; }
    .corp-hero-stat-divider { display: none; }
    .corp-about-highlights { grid-template-columns: 1fr; }
    .corp-cta-inner { flex-direction: column; text-align: center; }
    .corp-cta-actions { justify-content: center; }
    .corp-timeline::before { left: 24px; }
    .corp-tl-left, .corp-tl-right {
        flex-direction: column;
        padding: 0 0 0 72px;
    }
    .corp-tl-left .corp-timeline-card,
    .corp-tl-right .corp-timeline-card { text-align: left; }
    .corp-timeline-dot {
        left: 24px;
        transform: translateX(-50%);
        top: 0;
    }
    .corp-timeline-end { left: 24px; }
    .corp-value-card { max-width: 100%; flex: 1 1 100%; }
    .corp-about { padding: 60px 0; }
    .corp-mv-section, .corp-values-section, .corp-timeline-section { padding: 60px 0; }
}

@media (max-width: 480px) {
    .corp-hero-title { font-size: 26px; }
    .corp-hero-sub { font-size: 14px; }
    .corp-hero-stat-num { font-size: 22px; }
    .corp-hero-stat { padding: 0 14px; }
    .corp-mv-card { padding: 32px 24px; }
    .corp-cta-text h2 { font-size: 22px; }
    .corp-cta-actions { justify-content: center; width: 100%; }
}

/* Board of Directors Grid */
/* ── BAŞKAN — Öne Çıkan Lüks Kart ──────────────── */
.board-president-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 56px;
}

.board-president-card {
    display: flex;
    align-items: stretch;
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 24px 64px rgba(11,27,61,0.18),
        0 6px 20px rgba(11,27,61,0.08),
        0 0 0 1px rgba(212,175,55,0.18);
    max-width: 920px;
    min-height: 340px;
    width: 100%;
    position: relative;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

/* Sol altın şerit */
.board-president-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--accent) 0%, #c8a84b 50%, var(--accent) 100%);
    z-index: 10;
}

.board-president-card:hover {
    box-shadow:
        0 32px 80px rgba(11,27,61,0.22),
        0 8px 28px rgba(11,27,61,0.10),
        0 0 0 1px rgba(212,175,55,0.32);
    transform: translateY(-3px);
}

.board-president-img-wrap {
    flex-shrink: 0;
    width: 300px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 60%, #071128 100%);
}

/* Diyagonal altın parıltı */
.board-president-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(212,175,55,0.14) 0%,
        transparent 45%,
        rgba(212,175,55,0.06) 100%
    );
    z-index: 3;
    pointer-events: none;
}

.board-president-img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
    z-index: 1;
}

.board-president-card:hover .board-president-img {
    transform: scale(1.04);
}

.board-president-body {
    padding: 40px 40px 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
}

/* Sağ üst altın radyal ışıma */
.board-president-body::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at 80% 20%, rgba(212,175,55,0.09) 0%, transparent 70%);
    pointer-events: none;
}

.board-president-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--accent) 0%, #c8a84b 100%);
    color: #fff;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 5px 14px 5px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
    width: fit-content;
    box-shadow: 0 3px 12px rgba(212,175,55,0.42);
}

.board-president-name {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.15;
}

.board-president-role {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Rolün yanındaki altın çizgi aksanı */
.board-president-role::after {
    content: '';
    display: inline-block;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 1px;
    flex-shrink: 0;
}

.board-president-bio {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.board-president-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--accent) !important;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: gap 0.2s ease, background 0.2s ease;
    padding: 8px 18px;
    border: 1.5px solid var(--accent);
    border-radius: 6px;
    width: fit-content;
    background: rgba(212,175,55,0.05);
}
.board-president-more:hover {
    gap: 12px;
    background: rgba(212,175,55,0.12);
}

/* ── Bölüm Ayracı ─────────────────────────── */
.board-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.board-divider::before,
.board-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

/* ── Denetim Bölümü Aralığı ──────────────── */
.denetim-section { margin-top: 60px; }

/* ── Kurul Üye Kartları (küçük) ───────────── */
.board-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.board-grid .board-card {
    flex: 0 0 calc(25% - 16px);
    max-width: 240px;
}

@media (max-width: 1024px) {
    .board-grid .board-card {
        flex: 0 0 calc(33.333% - 14px);
        max-width: 220px;
    }
}

@media (max-width: 600px) {
    .board-grid .board-card {
        flex: 0 0 calc(50% - 10px);
        max-width: none;
    }
}

.board-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.board-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.board-img-wrapper {
    position: relative;
    padding-top: 105%;
    overflow: hidden;
    background: #f8fafc;
}

.board-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.4s ease;
}

.board-card:hover .board-img {
    transform: scale(1.05);
}

.board-body {
    padding: 14px 14px 16px;
}

.board-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.board-role {
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Contact & Forms */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-wrapper {
    background-color: var(--primary-dark);
    color: var(--text-light);
    border-radius: 8px;
    padding: 40px;
}

.contact-info-wrapper h3 {
    color: var(--accent);
    margin-bottom: 25px;
    font-size: 22px;
}

.contact-info-item {
    margin-bottom: 25px;
}

.contact-info-label {
    font-weight: bold;
    color: var(--accent);
    font-size: 14px;
    text-transform: uppercase;
}

.contact-info-value {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}

.contact-info-value a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.contact-info-value a:hover {
    color: #fff;
    text-decoration: underline;
}

.form-wrapper {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11,27,61,0.05);
}

textarea.form-control {
    height: 120px;
    resize: vertical;
}

/* Membership Form Specifics */
.membership-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-step-title {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
    color: var(--primary);
}

/* Detail Pages (Haber & Yazı Detay) */
.detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.detail-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.detail-img-wrapper {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
}

.detail-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-title {
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 1.25;
}

.detail-meta {
    font-size: 13px;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 25px;
    overflow: hidden;
}

.detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
}

.detail-meta-row-bottom {
    background: #ffffff;
    border-bottom: none;
}

.detail-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    border-right: 1px solid var(--border-color);
    white-space: nowrap;
}

.detail-meta-item:last-child {
    border-right: none;
}

.detail-meta-item i {
    color: var(--accent);
    font-size: 13px;
    flex-shrink: 0;
}

.detail-meta-item .meta-emoji {
    font-size: 14px;
    flex-shrink: 0;
    line-height: 1;
}

.detail-meta-item strong {
    color: var(--primary);
    font-weight: 600;
}

.detail-meta-cats {
    flex-wrap: wrap;
    white-space: normal;
}

.meta-cats-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.meta-cat-badge {
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 3px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ── Köşe Yazısı Detay — Yazar Bandı ────────────────────────────── */
.detail-author-band {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.detail-author-avatar-link {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    display: block;
    flex-shrink: 0;
}

.detail-author-avatar-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.detail-author-info {
    min-width: 0;
    flex: 1;
}

.detail-author-name {
    font-size: 16px;
    font-weight: 700;
    margin: 4px 0 8px;
}

.detail-author-name a {
    color: var(--primary);
    text-decoration: none;
}

.detail-author-name a:hover { color: var(--accent); }

.detail-author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 12px;
    color: var(--text-muted);
}

.detail-author-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.detail-author-meta-item i {
    color: var(--accent);
    font-size: 11px;
    flex-shrink: 0;
}

/* ── Duyuru Liste Kartı Meta Satırı ────────────────────────────── */
.ann-list-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 12px;
    margin-bottom: 6px;
}

.ann-list-tag {
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.ann-list-date {
    font-size: 11.5px;
    color: var(--text-muted);
    white-space: nowrap;
}

.detail-content {
    font-size: 16px;
    line-height: 1.8;
}

.detail-content p {
    margin-bottom: 20px;
}

/* Editörde (Quill) boş satır olarak eklenen <p><br></p> paragrafları,
   siteye gelince kendi 20px margin'i ile normal paragrafın 20px margin'ini
   üst üste bindirip editördekinden çok daha büyük bir boşluk oluşturuyordu.
   Bu iki kural, o boş "spacer" paragrafın hem kendi margin'ini hem de
   kendisinden önceki dolu paragrafın margin'ini sıfırlayıp boşluğu
   sadece boş satırın kendi yüksekliğine (editördeki gibi) indiriyor.
   Aralarında boş satır OLMAYAN paragraflar hiç etkilenmiyor. */
.detail-content p:has(> br:only-child) {
    margin-bottom: 0;
}

.detail-content p:has(+ p > br:only-child) {
    margin-bottom: 0;
}

/* ── Zengin İçerik: Genel Görseller ──────────────────────────────── */
.news-body-content img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 4px;
    display: block;
    margin: 0 auto 16px;
}

/* ── Zengin İçerik: Açıklamalı Görseller (Figure/Figcaption) ──────── */
.news-body-content figure {
    margin: 24px auto;
    display: block;
    max-width: 100% !important;
    width: auto !important;
}

.news-body-content figure img {
    max-width: 100% !important;
    height: auto !important;
    width: 100%;
    border-radius: 6px 6px 0 0;
    display: block;
    margin: 0 auto;
}

.news-body-content figcaption {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    padding: 8px 14px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 6px 6px;
    line-height: 1.5;
}

/* Mobilde içerik görselleri tam genişlik */
@media (max-width: 768px) {
    .news-body-content figure {
        width: 100% !important;
        max-width: 100% !important;
    }

    .news-body-content img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 4px;
    }
}

/* ── Zengin İçerik: Metin İçi Linkler (haber/köşe yazısı/duyuru/şehrin hafızası) ── */
.news-body-content a:not(.inline-news-card),
.column-body-content a:not(.inline-news-card),
.sh-icerik a:not(.inline-news-card) {
    color: #1a6eb5;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    font-weight: 500;
    word-break: break-word;
}

.news-body-content a:not(.inline-news-card):hover,
.news-body-content a:not(.inline-news-card):focus-visible,
.column-body-content a:not(.inline-news-card):hover,
.column-body-content a:not(.inline-news-card):focus-visible,
.sh-icerik a:not(.inline-news-card):hover,
.sh-icerik a:not(.inline-news-card):focus-visible {
    color: #114e84;
    text-decoration-color: #1a6eb5;
}

/* ── SEO Etiketleri (haber/köşe yazısı/duyuru detay altı) ──────────── */
.content-tags-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px dashed var(--border-color);
}

.content-tags-label {
    font-weight: 700;
    font-size: 13px;
    color: var(--primary);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.content-tags-label i { color: var(--accent); }

.content-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.content-tag-chip {
    display: inline-block;
    background: var(--accent-light);
    color: var(--primary);
    border: 1px solid rgba(212, 175, 55, 0.35);
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 20px;
    text-decoration: none;
    line-height: 1.4;
    transition: background .2s, color .2s, border-color .2s;
}

a.content-tag-chip:hover,
a.content-tag-chip:focus-visible {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.content-tag-chip-static {
    cursor: default;
}

@media (max-width: 767px) {
    .content-tags-row {
        gap: 8px;
        margin-top: 22px;
        padding-top: 14px;
    }
    .content-tags-label { font-size: 12.5px; }
    .content-tag-chip { font-size: 12px; padding: 4px 11px; }
}

@media (max-width: 480px) {
    .content-tags-row { flex-direction: column; align-items: flex-start; }
}

/* ── Haber İçi Haber Kartı ────────────────────────────────────────── */
.inline-news-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    margin: 22px 0;
    border: 1.5px solid var(--border-color);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    background: #f8fafc;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s, border-color .2s, background .2s;
}
.inline-news-card:hover {
    background: #fff;
    box-shadow: 0 4px 18px rgba(11,27,61,.1);
    border-color: var(--accent);
    color: inherit;
    text-decoration: none;
}
.inc-img {
    flex-shrink: 0;
    width: 150px;
    height: 95px;
    border-radius: 5px;
    overflow: hidden;
    background: #e2e8f0;
}
.inc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.inc-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 24px;
}
.inc-body {
    flex: 1;
    min-width: 0;
}
.inc-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--accent);
    margin-bottom: 5px;
}
.inc-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.inline-news-card:hover .inc-title { color: var(--accent); }
.inc-meta {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 5px;
}

@media (max-width: 576px) {
    .inline-news-card { gap: 10px; padding: 10px 12px; }
    .inc-img { width: 80px; height: auto; flex-shrink: 0; }
    .inc-img img { height: auto; object-fit: contain; }
    .inc-title { font-size: 13px; }
}

/* ── Tıklanabilir Kart Görseli (haberler listesi) ─────────────────── */
a.news-card-img-wrapper {
    display: block;
    text-decoration: none;
}

/* ── Hero Slider tıklanabilir görsel ──────────────────────────────── */
.slide-img {
    cursor: pointer;
}

/* Columnist profile header in yazar-detay */
.yazar-profile-header {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.yazar-profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    margin-right: 25px;
    flex-shrink: 0;
}

.yazar-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Footer styling */
.main-footer {
    background-color: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 20px 0;
    border-top: 5px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

.footer-widget-title {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Alert Boxes */
.alert {
    padding: 14px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* RESPONSIVE MEDIA QUERIES */
/* ============================================
   BÜYÜK MASAÜSTÜ (max-width: 1400px)
   ============================================ */
@media (max-width: 1400px) {
    .hero-section .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

/* ============================================
   MASAÜSTÜ / BÜYÜK TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .home-layout, .detail-layout, .form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    /* Hero: tablet'te yan yana hâlâ duruyor ama tam genişlik container */
    .hero-section .container {
        padding: 0 12px;
    }
}

/* ============================================
   TABLET (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {

    /* ── HEADER ── */
    .header-content {
        height: 64px;
    }

    .logo {
        gap: 8px;
    }

    .logo img {
        height: 50px;
    }

    .logo-text {
        padding-left: 9px;
        gap: 2px;
    }

    .logo-text-top {
        font-size: 11px;
    }

    .logo-text-bottom {
        font-size: 9.5px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }

    .nav-menu.active { display: flex; }

    .nav-item {
        margin: 8px 0;
        width: 100%;
        text-align: center;
    }

    .hamburger { display: flex; }
    .hamburger span { margin: 0; }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

    /* ── HERO: tablet'te yan yana, ama daha küçük ── */
    .hero-section {
        padding: 20px 0 0;
    }

    .hero-section .container {
        padding: 0 10px;
    }

    .hero-layout {
        gap: 10px;
        align-items: start; /* sağ panel yüksekliği sol sütunu zorlamasın */
    }

    /* Panel içeriğe göre büyümesin — hero kaymasının önüne geç */
    .slide-info-panel {
        flex: none;
        min-height: unset;
        max-height: 140px;
        overflow: hidden;
    }

    .slide-info-title { font-size: 17px; }
    .slide-info-excerpt { display: none; }
    .slide-read-btn { font-size: 12px; padding: 0; padding-bottom: 2px; }

    /* ── İÇERİK ── */
    .news-grid { grid-template-columns: 1fr; }

    .president-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 25px;
    }

    .president-photo-wrapper {
        max-width: 150px;
        margin: 0 auto;
    }

    .board-president-card { flex-direction: column; align-items: stretch; min-height: unset; }
    .board-president-card::before { width: 100%; height: 5px; bottom: auto; left: 0; right: 0; }
    .board-president-img-wrap { width: 100%; height: 320px; }
    .board-president-body { padding: 28px 28px 28px 28px; }
    .board-president-body::after { display: none; }
    .board-president-name { font-size: 26px; }
    .board-president-wrap { margin-bottom: 36px; }

    .board-grid .board-card {
        flex: 0 0 calc(50% - 10px);
        max-width: 220px;
    }

    .denetim-section { margin-top: 40px; }

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

    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item::after { left: 23px; }
    .right { left: 0%; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
}

/* ============================================
   MOBİL (max-width: 600px) — Hero alt alta
   ============================================ */
@media (max-width: 600px) {

    /* Hero: slider üstte tam genişlik, panel altında */
    .hero-section {
        padding: 12px 0 0;
    }

    .hero-section .container {
        padding: 0 8px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 8px;
        align-items: start;
    }

    /* Slider: mobilede 4:3 daha iyi görünür */
    .slider-container {
        aspect-ratio: 4 / 3;
        border-radius: 10px 10px 0 0;
    }

    /* Panel: tek sütunda sabit yükseklik — içerik uzunluğuna göre kaymasın */
    .hero-panel {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 6px;
        height: auto;
    }

    .slide-info-excerpt { display: none; }
    .slide-info-title {
        font-size: 15px;
        -webkit-line-clamp: 2;
    line-clamp: 2;
    }
    .slide-info-panel {
        padding: 12px 14px 14px;
        flex: none;
        min-height: unset;
        gap: 4px;
    }
    .hero-panel-card { height: auto; }
    .hero-panel-card-body { padding: 8px 10px 10px; }
}

/* ============================================
   KÜÇÜK MOBİL (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {

    .hero-section {
        padding: 10px 0 0;
    }

    /* Hero panel: 2×2 grid, auto yükseklik */
    .hero-panel {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 5px;
        height: auto;
    }

    .hero-panel-card-title { font-size: 11px; }
    .hero-panel-card-body { padding: 7px 9px 9px; gap: 2px; }
    .hero-panel-card-tag { font-size: 8px; }
    .hero-panel-card-date { font-size: 9px; }

    .slide-info-panel { padding: 10px 12px 12px; gap: 3px; }
    .slide-info-title { font-size: 14px; }
    .slide-tag { font-size: 9px; padding: 2px 8px; }

    .board-grid .board-card {
        flex: 0 0 calc(50% - 10px);
        max-width: 180px;
    }

    .slider-nav .slider-btn { width: 28px; height: 28px; font-size: 11px; }

    .page-title { font-size: 24px; }

    .slide-overlay { padding: 14px 14px 48px; }

    .slide-title { font-size: 15px; }

    /* Container padding */
    .container { padding: 0 12px; }

    /* Galeri */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    /* Section başlık */
    .section-title { font-size: 22px; }

    /* Butonlar */
    .btn { padding: 10px 16px; font-size: 13px; }

    /* Form */
    .form-wrapper { padding: 18px; }

    /* Sayfa başlığı */
    .page-title { font-size: 22px; }

    /* Başkan banner */
    .president-banner { padding: 20px; }

    /* Yönetim kurulu başkanı — küçük mobil */
    .board-president-img-wrap { width: 100%; height: 280px; }
    .board-president-wrap { margin-bottom: 24px; }
    .board-president-body { padding: 22px 20px; }
    .board-president-name { font-size: 24px; }
    .denetim-section { margin-top: 28px; }

    /* Logo metni: her iki satır küçük ama görünür */
    .logo-text-top { font-size: 10px; }
    .logo-text-bottom { font-size: 8px; }
    .logo-text { gap: 1px; }
}

/* ============================================
   ÇOK KÜÇÜK MOBİL (max-width: 360px)
   ============================================ */
@media (max-width: 360px) {
    .hero-section { padding: 8px 0 0; }

    .hero-panel {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        height: auto;
    }

    .slide-info-title { font-size: 13px; }
    .slide-info-panel { padding: 9px 11px 11px; max-height: 110px; }

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

    /* 360px'te logo metni tamamen gizle */
    .logo-text { display: none; }

    /* Kurul üye kartları: 2 kolon sığacak şekilde hesaplanmış */
    .board-grid .board-card {
        flex: 0 0 calc(50% - 10px);
        max-width: 155px;
    }

    /* Başkan kartı: çok küçük ekran */
    .board-president-img-wrap { width: 100%; height: 240px; }
    .board-president-body { padding: 18px 16px; }
    .board-president-name { font-size: 22px; }
}

/* ============================================
   RESPONSIVE GRID HELPERS
   ============================================ */

/* 3-sütun haber gridi (Haberler sayfası) */
.news-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

/* Galeri gridi (Ana sayfa - 4 sütun) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Makale gridi (Köşe Yazıları sayfası) */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ============================================
   ERİŞİLEBİLİRLİK
   ============================================ */

/* Görsel olarak gizli ama ekran okuyucuya açık */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* İçeriğe atla linki (ekran okuyucuları ve klavye kullanıcıları için) */
.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 18px;
    z-index: 9999;
    font-weight: 700;
    font-size: 14px;
    border-radius: 0 0 6px 0;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    color: var(--primary);
}

/* Odak görünürlüğü (klavye navigasyonu) */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ============================================
   DOKUNMATIK CİHAZ İYİLEŞTİRMELERİ
   ============================================ */

/* Dokunmatik cihazlarda galeri overlay'i hafif görünür */
@media (hover: none) {
    .gallery-item .gallery-overlay {
        opacity: 0.55 !important;
    }
}

/* Webkit tap highlight kaldır - daha temiz mobil görünüm */
a,
button {
    -webkit-tap-highlight-color: transparent;
}

/* ============================================
   TABLET (max-width: 1024px) — EKLENTİLER
   ============================================ */

@media (max-width: 1024px) {
    .news-grid-three {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

/* ============================================
   MOBİL (max-width: 768px) — EKLENTİLER
   ============================================ */

@media (max-width: 768px) {

    /* Top bar: solda telefon, sağda sosyal ikonlar */
    .top-bar-info {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    .top-bar-info span:first-child {
        display: flex !important;
        align-items: center;
        gap: 5px;
        white-space: nowrap;
        font-size: 12px;
        margin-right: 0;
        color: #ffffff;
    }

    .top-bar-info span:last-child {
        display: none;
    }

    .top-bar-content {
        justify-content: space-between;
    }

    /* Mobilde arama panelinde "Ara" yazısı gizlenir, sadece büyüteç ikonu kalır */
    .site-search-submit-text {
        display: none;
    }

    .site-search-submit {
        padding: 8px;
        font-size: 16px;
    }

    .site-search-panel-inner {
        padding: 12px 14px;
    }

    /* Bölüm başlığı mobilde alt alta */
    .section-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 30px;
    }

    /* Galeri gridi */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Makale gridi → tek sütun */
    .article-grid {
        grid-template-columns: 1fr;
    }

    /* Detay kart iç boşluğu */
    .detail-card {
        padding: 22px;
    }

    /* Detay meta bilgileri — mobil dikey yığın */
    .detail-meta-row {
        flex-direction: column;
    }

    .detail-meta-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 9px 14px;
        white-space: normal;
    }

    .detail-meta-row-bottom .detail-meta-item:last-child {
        border-bottom: none;
    }

    /* Detay başlığı */
    .detail-title {
        font-size: 22px;
    }

    /* Sayfa başlığı bölümü */
    .page-header {
        padding: 40px 0;
    }

    .page-header:has(.breaking-bar) {
        padding-bottom: 0;
    }

    .page-title {
        font-size: 28px;
    }

    /* Üyelik banner */
    .membership-banner {
        padding: 30px 20px;
    }

    .membership-banner h3 {
        font-size: 22px;
    }

    /* Form wrapper iç boşluğu */
    .form-wrapper {
        padding: 25px;
    }

    /* Bölüm dikey boşluğu */
    .section-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    /* Değerler gridi */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Köşe yazar makalesi başlık genişliği kısıtlamasını kaldır */
    .columnist-article-title {
        max-width: none;
    }

    /* Paylaşım butonları mobilde alt alta */
    .share-buttons-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Yazar bandı meta — tablet/mobil: boşluğu azalt */
    .detail-author-meta {
        gap: 6px 14px;
    }

}

/* ============================================
   KÜÇÜK MOBİL (max-width: 600px) — EKLENTİLER
   ============================================ */

@media (max-width: 600px) {
    /* 3-sütun haber gridi → tek sütun */
    .news-grid-three {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   KÜÇÜK MOBİL (max-width: 480px) — EKLENTİLER
   ============================================ */

@media (max-width: 480px) {

    /* Container iç boşluğunu biraz azalt */
    .container {
        padding: 0 14px;
    }

    /* Dikey bölüm boşluğunu mobilede küçült */
    .section-padding {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    /* Üyelik form container */
    .membership-form-container .form-wrapper {
        padding: 20px 14px;
    }

    /* iOS Safari otomatik zum önleme: input odakta 16px altı zoom tetikler */
    .form-control,
    .filter-input,
    .filter-select,
    .site-search-input {
        font-size: 16px;
    }

    .site-search-form {
        gap: 8px;
    }

    .top-bar-right {
        gap: 2px;
    }

    /* Sayfa başlığı 480px */
    .page-header { padding: 30px 0; }
    .page-header:has(.breaking-bar) { padding-bottom: 0; }
    .page-title { font-size: 22px; }

    /* Haber/yazı detay kartı dar ekranda padding azalt */
    .detail-card {
        padding: 20px 16px;
    }

    /* İletişim bilgi kutusu dar ekranda padding azalt */
    .contact-info-wrapper {
        padding: 22px 16px;
    }

    /* Hakkında / içerik kartları dar ekranda padding azalt */
    .about-card {
        padding: 22px 16px;
    }

    /* Yazar profil başlığı: dar ekranda alt alta sırala */
    .yazar-profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .yazar-profile-avatar {
        margin-right: 0;
        margin-bottom: 16px;
    }

    /* Haberler listesi küçük thumbnail */
    .news-list-img-wrap {
        width: 100px;
    }

    /* Köşe yazısı detay: yazar bandı dar ekranda dikey yığın */
    .detail-author-band {
        flex-direction: column;
        gap: 12px;
    }

    .detail-author-avatar-link {
        width: 60px;
        height: 60px;
    }

    .detail-author-name {
        font-size: 15px;
        margin-top: 0;
    }
}

/* ============================================
   BASKI STİLLERİ
   ============================================ */

@media print {
    .top-bar,
    .site-search-overlay,
    .hamburger,
    .slider-nav,
    .ticker-section,
    .membership-banner,
    .main-footer {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .main-header {
        position: static;
        box-shadow: none;
    }

    .news-card {
        break-inside: avoid;
    }
}

/* ============================================
   SLIDER DOTS (Gösterge Noktaları)
   ============================================ */

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    gap: 8px;
    z-index: 10;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    /* Dokunmatik hedef alanını görsel boyuttan bağımsız büyüt */
    position: relative;
}
.slider-dot::before {
    content: '';
    position: absolute;
    inset: -10px;
}

.slider-dot.active {
    background: var(--accent);
    width: 26px;
    border-radius: 4px;
}

.slider-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.7);
}

/* Slider yön butonlarını sağa yasla */
.slider-nav {
    right: 40px;
    bottom: 30px;
}

/* ============================================
   ONAYLANMIŞ ÜYE SAYACI BANDI
   ============================================ */

.member-count-band {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 18px 0;
    position: relative;
    z-index: 9;
    border-bottom: 3px solid var(--accent);
}

.member-count-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.member-count-icon {
    font-size: 26px;
    color: var(--accent);
    line-height: 1;
}

.member-count-number {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
}

.member-count-label {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.member-count-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin-left: 8px;
}

.member-count-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .member-count-number { font-size: 28px; }
    .member-count-label  { font-size: 13px; }
    .member-count-cta    { margin-left: 0; }
}

/* ============================================
   İSTATİSTİK BARI
   ============================================ */

.stats-bar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
    margin-top: 0;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(7,17,40,0.12);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 26px 20px;
    text-align: center;
    border-right: 1px solid var(--border-color);
    transition: background 0.25s ease;
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--bg-light);
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: var(--accent);
    transition: transform 0.3s ease;
}

.stat-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.stat-icon {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
    opacity: 0.85;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1.5px;
}

.stat-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ============================================
   BÖLÜM BAŞLIĞI — PREMIUM
   ============================================ */

.section-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

/* ============================================
   HABER KARTI — ÜSTTEN ALTIN ÇİZGİ
   ============================================ */

.news-card {
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent), #f1c40f);
    border-radius: 4px 4px 0 0;
    transition: width 0.4s ease;
    z-index: 1;
}

.news-card:hover::before {
    width: 100%;
}

.news-card-tag {
    letter-spacing: 0.5px;
    font-size: 10px;
    text-transform: uppercase;
}

/* ============================================
   GALERİ — CSS SINIFLI (inline stilsiz)
   ============================================ */

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: var(--primary-dark);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-premium);
}

.gallery-item-link {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7, 17, 40, 0.8) 0%,
        rgba(7, 17, 40, 0.15) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-icon {
    width: 38px;
    height: 38px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    transform: scale(0.7) translateY(8px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-overlay-icon {
    transform: scale(1) translateY(0);
}

@media (hover: none) {
    .gallery-overlay { opacity: 0.6; }
    .gallery-overlay-icon { transform: scale(1) translateY(0); }
}

/* ============================================
   BAŞKAN BANNERI — LÜX
   ============================================ */

.president-quote-mark {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 96px;
    color: var(--accent);
    opacity: 0.22;
    line-height: 0.65;
    display: block;
    margin-bottom: 8px;
    user-select: none;
    pointer-events: none;
}

.president-text {
    font-style: italic;
    color: rgba(248, 250, 252, 0.88);
}

.president-photo-wrapper {
    position: relative;
}

.president-photo-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 12px;
    pointer-events: none;
}

/* ============================================
   ÜYELİK BANNERI — DESEN + DEKOR
   ============================================ */

.membership-banner {
    position: relative;
    overflow: hidden;
}

.membership-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212, 175, 55, 0.07) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

.membership-banner > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   KÖŞE YAZARI — HOVER
   ============================================ */

.columnist-list-item {
    border-radius: 8px;
    transition: background 0.2s ease;
}

.columnist-list-item:hover {
    background: var(--bg-light);
}

/* ============================================
   SCROLL REVEAL ANİMASYONU
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    transition: opacity 0.72s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.72s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* JS disabled / yavaş yükleme — reveal elementi görünmez kalmasın */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ============================================
   RESPONSIVE — YENİ UNSURLAR
   ============================================ */

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 18px 12px;
        border-right: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    /* son satırdaki tek öğe (5. kutu) ve onun solundaki (4. kutu) border-bottom almaz */
    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    /* 5 kutu varsa son öğe yalnız kalır, sağ border temizlenir */
    .stats-grid .stat-item:last-child:nth-child(odd) {
        border-right: none;
    }

    .stat-number {
        font-size: 28px;
    }

    .slider-dots {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 24px;
    }

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

/* ============================================
   FİLTRE ÇUBUĞU
   ============================================ */

.filter-bar {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    background: var(--bg-white);
    padding: 16px 22px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.filter-input {
    flex: 1;
    min-width: 180px;
    padding: 9px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: var(--transition);
    outline: none;
}

.filter-input:focus {
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(11, 27, 61, 0.06);
}

.filter-select {
    padding: 9px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: var(--transition);
    outline: none;
    min-width: 170px;
    cursor: pointer;
    appearance: auto;
}

.filter-select:focus {
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(11, 27, 61, 0.06);
}

.filter-result-info {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 22px;
    padding: 8px 14px;
    background: var(--accent-light);
    border-radius: 6px;
    border-left: 3px solid var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   DUYURU KARTLARI (Ana Sayfa)
   ============================================ */

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

.announcement-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.announcement-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.announcement-card-body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

@media (hover: hover) {
    .announcement-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-left-color: var(--primary);
    }
}

.announcement-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.5px;
}

.announcement-date {
    font-size: 12px;
    color: var(--text-muted);
}

.announcement-title {
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--primary);
    flex-grow: 1;
    margin: 0;
}

.announcement-title a {
    color: inherit;
}

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

.announcement-excerpt {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.announcement-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    transition: gap 0.2s ease;
}

.announcement-more:hover {
    color: var(--accent-hover);
    gap: 7px;
}

/* ============================================
   RESPONSIVE — FİLTRE VE DUYURULAR
   ============================================ */

@media (max-width: 1024px) {
    .announcement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .announcement-grid {
        grid-template-columns: 1fr;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
    }

    .filter-input,
    .filter-select {
        width: 100%;
        min-width: 0;
    }
}

/* ============================================
   HABER KATEGORİ SEKMELERİ (Ana Sayfa)
   ============================================ */

/* Wrapper: ok butonları + kaydırılabilir sekme çubuğu */
.news-tabs-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 24px;
    position: relative;
}

/* Sol/sağ kaydırma okları */
.tabs-scroll-btn {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-muted);
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    padding: 0;
    transition: border-color 0.2s, color 0.2s, opacity 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.tabs-scroll-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.tabs-scroll-btn:disabled {
    opacity: 0.22;
    cursor: default;
    pointer-events: none;
}

.news-tabs-nav {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Sadece yatay kaydırmayı yakala — dikey sayfa scroll'unu engelleme */
    touch-action: pan-x;
}

.news-tabs-nav::-webkit-scrollbar {
    display: none;
}

.news-tab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    padding: 9px 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.news-tab-btn:hover {
    color: var(--primary);
}

.news-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--accent);
}

.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--border-color);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    padding: 1px 6px;
    min-width: 20px;
    transition: background 0.2s, color 0.2s;
}

.news-tab-btn.active .tab-count {
    background: var(--accent);
    color: white;
}

.news-tab-panel {
    display: none;
}

.news-tab-panel.active {
    display: block;
    animation: tabFadeIn 0.25s ease;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .news-tabs-nav {
        gap: 0;
    }
    .news-tab-btn {
        font-size: 13px;
        padding: 8px 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .tabs-scroll-btn {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
}

/* Hero section geniş container'ını sıfırla küçük ekranda */
@media (max-width: 480px) {
    .hero-section .container {
        padding: 0 6px;
        max-width: 100%;
    }
}


/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 10, 25, 0.97);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
}

.lightbox.active {
    display: flex;
}

.lightbox-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 92vw;
    max-height: 82vh;
    overflow: hidden;
    cursor: zoom-in;
    border-radius: 6px;
}

.lightbox-img-wrap.zoomed {
    cursor: zoom-out;
    overflow: auto;
    max-width: 96vw;
    max-height: 90vh;
}

.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 6px;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-img-wrap.zoomed .lightbox-img {
    max-width: none;
    max-height: none;
    transform: scale(2);
    transform-origin: center center;
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 22px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.22);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10001;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.08); }

.lightbox-footer {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.lightbox-caption {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-family: var(--font-body);
    text-align: center;
    max-width: 600px;
}

.lightbox-counter {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    font-family: var(--font-body);
    letter-spacing: 0.05em;
}

.lightbox-zoom-hint {
    color: rgba(255,255,255,0.3);
    font-size: 11px;
    font-family: var(--font-body);
}

@media (max-width: 600px) {
    .lightbox-prev { left: 8px; width: 40px; height: 40px; font-size: 15px; }
    .lightbox-next { right: 8px; width: 40px; height: 40px; font-size: 15px; }
    .lightbox-img-wrap { max-width: 96vw; max-height: 75vh; }
    .lightbox-img { max-height: 75vh; }
    .lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 18px; }
}

/* Haber kartı görsel tag'i taşmasın */
.news-card-tag {
    max-width: calc(100% - 20px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Slider bottom bar — çok küçük ekranda noktalar küçülür ama kalır */
@media (max-width: 360px) {
    .slider-bottom-bar { padding: 8px 10px; }
    .slider-dot { width: 6px; height: 6px; }
    .slider-dot.active { width: 18px; }
}

/* ============================================
   GALERİ SAYFASI
   ============================================ */

/* Hero bölümü */
.galeri-hero {
    position: relative;
    background: var(--primary-dark);
    padding: 80px 0 60px;
    text-align: center;
    overflow: hidden;
}

.galeri-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212,175,55,0.06) 0%, transparent 45%);
    pointer-events: none;
}

.galeri-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, #fff8c0 50%, var(--accent) 70%, transparent 100%);
}

.galeri-hero-inner {
    position: relative;
    z-index: 1;
}

.galeri-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.galeri-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.galeri-hero-title span {
    color: var(--accent);
}

.galeri-hero-sub {
    font-size: 16px;
    color: rgba(248,250,252,0.65);
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.galeri-hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 8px 20px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    margin-bottom: 28px;
}

.galeri-hero-stat strong {
    color: var(--accent);
    font-size: 15px;
}

.galeri-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}

.galeri-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.galeri-breadcrumb a:hover { opacity: 0.8; }

.galeri-breadcrumb-sep {
    width: 4px; height: 4px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Ana içerik bölümü */
.galeri-section {
    padding: 70px 0 80px;
    background: var(--bg-light);
}

/* Grid */
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* Kart */
.galeri-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(11,27,61,0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    aspect-ratio: 4 / 3;
    display: block;
    text-decoration: none;
}

.galeri-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 40px rgba(11,27,61,0.18);
}

.galeri-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}

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

/* Overlay — alttan yukarı kayar */
.galeri-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7,17,40,0.95) 0%,
        rgba(7,17,40,0.55) 45%,
        rgba(7,17,40,0.05) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 16px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.galeri-card:hover .galeri-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.galeri-card-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
}

.galeri-card-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Büyüt ikonu — köşede sabit görünür */
.galeri-card-zoom-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.galeri-card:hover .galeri-card-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

/* Touch cihazlarda overlay her zaman hafifçe görünür */
@media (hover: none) {
    .galeri-card-overlay {
        opacity: 0.7;
        transform: none;
    }
    .galeri-card-zoom-icon {
        opacity: 0.8;
        transform: scale(1);
    }
}

/* Boş durum */
.galeri-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.galeri-empty-icon {
    font-size: 56px;
    opacity: 0.2;
    margin-bottom: 20px;
    display: block;
}

.galeri-empty p {
    font-size: 15px;
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
    .galeri-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .galeri-hero-title { font-size: 38px; }
}

@media (max-width: 768px) {
    .galeri-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .galeri-hero { padding: 60px 0 45px; }
    .galeri-hero-title { font-size: 30px; }
    .galeri-hero-sub { font-size: 14px; }
}

@media (max-width: 480px) {
    .galeri-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .galeri-hero-title { font-size: 26px; }
    .galeri-section { padding: 40px 0 50px; }
    .galeri-card-title { font-size: 12px; }
    .galeri-card-overlay { padding: 12px 10px; }
}

/* ============================================
   KAPSAMLI RESPONSIVE DÜZELTMELERİ
   ============================================ */

/* Ticker — hero alanıyla hizalı, tam genişliğe taşmaz */
@media (max-width: 1400px) {
    .ticker-section { margin: 20px 0 0; }
}
@media (max-width: 1024px) {
    .ticker-section { margin: 16px 0 0; }
}
@media (max-width: 768px) {
    .ticker-section { margin: 14px 0 0; }
}
@media (max-width: 600px) {
    .ticker-section { margin: 12px 0 0; }
}
@media (max-width: 480px) {
    .ticker-section { margin: 10px 0 0; }
    .hero-section .ticker-section { margin: 10px 0 0; }
}

/* ncat-row — 480px breakpoint */
@media (max-width: 480px) {
    .ncat-row {
        grid-template-columns: 1fr 1fr;
    }
    .ncat-title-lg { font-size: 14px; }
}

/* Galeri grid — 360px'te tek sütun */
@media (max-width: 360px) {
    .galeri-grid { grid-template-columns: 1fr; gap: 10px; }
    .galeri-card { aspect-ratio: 16 / 9; }
}

/* Duyuru kartı — border renk geçişi */
.announcement-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Nav-sub link mobil — tam genişlik, metin sola */
@media (max-width: 768px) {
    .nav-sub-link {
        display: block;
        width: 100%;
        text-align: center;
        white-space: normal;
    }
}

/* President banner — çok küçük ekranda iç boşluk */
@media (max-width: 480px) {
    .president-banner { padding: 18px; gap: 20px; }
    .president-content h3 { font-size: 18px; }
    .president-content h4 { font-size: 12px; }
    .president-quote-mark { font-size: 60px; }
}

/* Stats bar border — 360px tek sütun için border sıfırla */
@media (max-width: 360px) {
    .stat-item { border-right: none !important; }
    .stat-item:not(:last-child) { border-bottom: 1px solid var(--border-color); }
}

/* Columnist title — sidebar genişliğine göre ölçekle */
.columnist-article-title {
    max-width: 100%;
}

/* Hamburgerin dokunmatik hedef alanı */
.hamburger {
    min-width: 48px;
    min-height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

/* Lightbox — çok küçük ekranda ok butonları */
@media (max-width: 360px) {
    .lightbox-prev { left: 4px; width: 34px; height: 34px; font-size: 13px; }
    .lightbox-next { right: 4px; width: 34px; height: 34px; font-size: 13px; }
}

/* Hero panel — slot alignment tablet (768-600px arası) */
@media (max-width: 768px) and (min-width: 601px) {
    .hero-layout { grid-template-columns: 3fr 2fr; }
}

/* Announcement grid gap — dar ekranda oran */
@media (max-width: 480px) {
    .announcement-grid { gap: 14px; }
    .announcement-card-body { padding: 14px 16px; }
    .announcement-card-img { aspect-ratio: 16 / 9; height: auto; }
}

/* Footer logo — boyut ölçekleme */
@media (max-width: 480px) {
    .footer-logo img { height: 36px; }
}

/* Logo metni taşma önlemi — logo text overflow */
.logo-text-top,
.logo-text-bottom {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Touch action — lightbox hızlandırma */
[data-lightbox] {
    touch-action: manipulation;
}

/* Galeri card hover — touch cihazda always-on overlay */
@media (hover: none) {
    .galeri-card-overlay {
        opacity: 0.75;
        transform: translateY(0);
    }
    .galeri-card-zoom-icon {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   SON HABERLER ŞERİDİ
   ============================================ */
.strip-section {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
}
.strip-flex {
    display: flex;
    align-items: center;
    gap: 18px;
    overflow: hidden;
}
.strip-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.strip-inner {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}
.strip-inner::-webkit-scrollbar { height: 3px; }
.strip-inner::-webkit-scrollbar-track { background: transparent; }
.strip-inner::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.strip-card {
    flex: 0 0 210px;
    scroll-snap-align: start;
    display: flex;
    gap: 10px;
    align-items: center;
    background: var(--bg-light);
    border-radius: 10px;
    padding: 9px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.strip-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
}
.strip-card-img {
    width: 54px;
    height: 54px;
    border-radius: 7px;
    object-fit: cover;
    flex-shrink: 0;
}
.strip-card-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
    display: block;
    margin-bottom: 3px;
}
.strip-card-title {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   KATEGORİ KEŞİF KARTLARI
   ============================================ */
.cat-explore-section {
    margin-bottom: 60px;
}
.cat-explore-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 18px;
}
.cat-explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
}
.cat-explore-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    padding: 26px 14px 22px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 108px;
    transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.32s ease;
    text-align: center;
    cursor: pointer;
}
.cat-explore-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}
.cat-explore-card::before {
    content: '';
    position: absolute;
    top: -28px;
    right: -28px;
    width: 95px;
    height: 95px;
    background: rgba(255,255,255,0.13);
    border-radius: 50%;
    pointer-events: none;
}
.cat-explore-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.09);
    border-radius: 50%;
    pointer-events: none;
}
.cat-explore-icon {
    font-size: 22px;
    color: rgba(255,255,255,0.92);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.cat-explore-card:hover .cat-explore-icon {
    transform: scale(1.25) translateY(-2px);
}
.cat-explore-name {
    font-size: 13px;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
    line-height: 1.3;
}
.cat-explore-arrow {
    font-size: 9px;
    color: rgba(255,255,255,0.65);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, opacity 0.3s;
    opacity: 0;
}
.cat-explore-card:hover .cat-explore-arrow {
    transform: translateX(5px);
    opacity: 1;
}
@media (max-width: 600px) {
    .cat-explore-section {
        /* overflow-x:auto çocuk overflow-y'yi clip eder; section'a alan ver */
        padding-top: 12px;
    }
    .cat-explore-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 10px;
        /* overflow-x:auto, overflow-y'yi hidden'a zorlar; hover translateY(-6px)+scale için yeterli boşluk */
        padding-top: 12px;
        margin-top: -12px;
        padding-bottom: 8px;
        -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
        mask-image: linear-gradient(to right, black 85%, transparent 100%);
    }
    .cat-explore-grid::-webkit-scrollbar { display: none; }
    .cat-explore-card {
        flex: 0 0 110px;
        min-height: 100px;
        padding: 20px 12px 16px;
        border-radius: 12px;
    }
    .cat-explore-icon { font-size: 20px; }
    .cat-explore-name { font-size: 12px; }
}
@media (max-width: 768px) and (min-width: 601px) {
    .cat-explore-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (hover: none) {
    .cat-explore-card:hover {
        transform: none;
        box-shadow: none;
    }
    .cat-explore-card:hover .cat-explore-icon {
        transform: none;
    }
    .cat-explore-card:hover .cat-explore-arrow {
        transform: none;
        opacity: 0;
    }
}

/* ============================================
   KÖŞE YAZARLARI TAM BÖLÜM
   ============================================ */
.columnists-full-section {
    margin-top: 70px;
    margin-bottom: 70px;
}
.columnists-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--border-color);
    padding-bottom: 10px;
}
.columnists-scroll-wrap::-webkit-scrollbar { height: 4px; }
.columnists-scroll-wrap::-webkit-scrollbar-track { background: var(--border-color); border-radius: 2px; }
.columnists-scroll-wrap::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.columnists-scroll-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 8px 4px 16px;
}
.columnist-full-card {
    width: 185px;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 22px 14px 18px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.32s ease;
    position: relative;
    overflow: hidden;
}
.columnist-full-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.columnist-full-card:hover::before {
    transform: scaleX(1);
}
.columnist-full-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-premium);
}
.columnist-full-avatar {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    display: block;
    margin: 0 auto 13px;
    transition: border-color 0.3s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.columnist-full-card:hover .columnist-full-avatar {
    border-color: var(--primary);
    transform: scale(1.07);
}
.columnist-full-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
    line-height: 1.3;
}
.columnist-full-unvan {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 11px;
    line-height: 1.4;
}
.columnist-full-article {
    font-size: 11px;
    font-style: italic;
    color: var(--text-dark);
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 2px solid var(--accent);
    padding: 8px 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}
.columnist-full-no-article {
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
    padding: 6px 0;
}

/* ============================================
   KÖŞE YAZISI KARTI
   ============================================ */
.kose-yazi-card {
    width: 265px;
    background: var(--bg-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(11, 27, 61, 0.09);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.32s ease;
    flex-shrink: 0;
    position: relative;
}
.kose-yazi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.kose-yazi-card:hover::before {
    opacity: 1;
}
.kose-yazi-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 24px 48px rgba(11, 27, 61, 0.13);
}
.kose-yazi-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}
.kose-yazi-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 27, 61, 0.4) 0%, transparent 55%);
    pointer-events: none;
}
.kose-yazi-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.kose-yazi-card:hover .kose-yazi-img {
    transform: scale(1.08);
}
.kose-yazi-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--accent);
    opacity: 0.9;
}
.kose-yazi-body {
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    position: relative;
}
.kose-yazi-body::after {
    content: '\201C';
    position: absolute;
    top: 8px;
    right: 14px;
    font-size: 60px;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    pointer-events: none;
}
.kose-yazi-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
.kose-yazi-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
.kose-yazi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}
.kose-yazi-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.kose-yazi-card:hover .kose-yazi-author-avatar {
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(11, 27, 61, 0.15);
}
.kose-yazi-author-name {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}
.kose-yazi-date {
    display: block;
    font-size: 11.5px;
    color: var(--text-muted);
}

/* ============================================
   KÖŞE YAZILARI CAROUSEL & DUYURULAR SCROLL
   ============================================ */

/* Köşe Yazıları Carousel */
.kose-yazi-carousel {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.kose-yazi-scroll-wrap {
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.kose-yazi-scroll-wrap::-webkit-scrollbar {
    display: none;
}
.kose-yazi-scroll-track {
    display: flex;
    gap: 20px;
    padding: 8px 4px 16px;
}
.kose-yazi-scroll-track .kose-yazi-card {
    width: 340px;
    scroll-snap-align: start;
}
.kose-carousel-btn {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--primary);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(11,27,61,0.08);
}
.kose-carousel-btn:hover:not(:disabled) {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: scale(1.08);
}
.kose-carousel-btn:disabled {
    opacity: 0.35;
    cursor: default;
}
@media (max-width: 1024px) {
    .kose-yazi-scroll-track .kose-yazi-card {
        width: 300px;
    }
}
@media (max-width: 768px) {
    .kose-yazi-carousel {
        gap: 6px;
    }
    .kose-carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    .kose-yazi-scroll-track .kose-yazi-card {
        width: 260px;
    }
}
@media (max-width: 480px) {
    .kose-yazi-scroll-track .kose-yazi-card {
        width: 240px;
    }
}

/* Duyurular Horizontal Scroll */
.announcement-carousel {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.announcement-scroll-wrap {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.announcement-scroll-wrap::-webkit-scrollbar {
    display: none;
}
.announcement-scroll-track {
    display: flex;
    gap: 20px;
    padding: 8px 4px 16px;
}
.announcement-scroll-track .announcement-card {
    width: 285px;
    flex-shrink: 0;
    scroll-snap-align: start;
}
.announcement-scroll-track .announcement-card-img {
    aspect-ratio: 16 / 9;
    height: auto;
}
.announcement-scroll-track .announcement-card-body {
    padding: 13px 16px;
    gap: 5px;
}
.announcement-scroll-track .announcement-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .announcement-scroll-track .announcement-card {
        width: 260px;
    }
}
@media (max-width: 768px) {
    .announcement-carousel {
        gap: 6px;
    }
    .announcement-scroll-track .announcement-card {
        width: 240px;
    }
}
@media (max-width: 480px) {
    .announcement-scroll-track .announcement-card {
        width: 220px;
    }
}


/* ============================================
   ALBÜM GALERİ SİSTEMİ
   ============================================ */

/* Galeri hero arka plan görseli */
.galeri-hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: blur(2px);
    pointer-events: none;
}

/* Hero istatistikler satırı */
.galeri-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.galeri-hero-stat-sep {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.2);
}

/* ── Albüm Izgarası (galeri.php) ── */
.album-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) { .album-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (max-width: 768px)  { .album-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px)  { .album-grid { grid-template-columns: 1fr; gap: 12px; } }

.album-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(11,27,61,0.07);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.album-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(11,27,61,0.14);
}
.album-card-cover {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f1f5f9;
}
.album-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.album-card:hover .album-card-img {
    transform: scale(1.05);
}
.album-card-no-cover {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #cbd5e1;
}
.album-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,27,61,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.album-card:hover .album-card-overlay { opacity: 1; }
.album-card-view-btn {
    background: var(--accent);
    color: var(--primary, #0b1b3d);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.album-card-count {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(4px);
}
.album-card-info {
    padding: 14px 16px;
    flex: 1;
}
.album-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary, #0b1b3d);
    margin: 0 0 4px;
    line-height: 1.3;
}
.album-card-desc {
    font-size: 12.5px;
    color: #64748b;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

/* Touch devices: overlay visible */
@media (hover: none) {
    .album-card-overlay { opacity: 0.6; }
}

/* ── Albüm Slider (index.php & kurumsal.php) ── */
.album-slider-section { margin-top: 70px; }

.album-slider-wrap {
    position: relative;
    margin-top: 24px;
}
.album-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 12px;
}
.album-slider::-webkit-scrollbar { display: none; }

.album-slide-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 220px;
    scroll-snap-align: start;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(11,27,61,0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}
.album-slide-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(11,27,61,0.15);
}
.album-slide-cover {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f1f5f9;
}
.album-slide-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.album-slide-card:hover .album-slide-cover img {
    transform: scale(1.05);
}
.album-slide-no-cover {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #cbd5e1;
}
.album-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,27,61,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent, #d4af37);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.album-slide-card:hover .album-slide-overlay { opacity: 1; }
.album-slide-count {
    position: absolute;
    bottom: 7px;
    right: 8px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
}
.album-slide-info {
    padding: 12px 14px;
    flex: 1;
}
.album-slide-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary, #0b1b3d);
    margin-bottom: 3px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.album-slide-desc {
    font-size: 12px;
    color: #64748b;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.45;
    margin: 0;
}

/* Slider butonları */
.album-slider-btn {
    position: absolute;
    top: calc(50% - 22px);
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--primary, #0b1b3d);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.album-slider-btn:hover {
    background: var(--accent, #d4af37);
    color: var(--primary, #0b1b3d);
    transform: translateY(-50%) scale(1.08);
}
.album-slider-prev { left: -18px; }
.album-slider-next { right: -18px; }

@media (max-width: 768px) {
    .album-slider-prev { left: 0; }
    .album-slider-next { right: 0; }
    .album-slide-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 480px) {
    .album-slide-card { flex: 0 0 calc(85% - 10px); }
}

/* Touch devices: overlay visible */
@media (hover: none) {
    .album-slide-overlay { opacity: 0.5; }
}

/* corp-gallery-section albüm slider override */
.corp-gallery-section .corp-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
}

/* "Tüm Albümler" bağlantısı */
.btn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--accent, #d4af37);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.btn-more-link:hover { opacity: 0.75; color: var(--accent, #d4af37); }

/* ─── Okuyucu Font Boyutu Kontrolü ──────────────────── */
.reader-font-ctrl {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 20px;
    padding: 5px 10px;
    background: #f8fafc;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 8px;
}
.reader-font-label {
    font-size: 11.5px;
    color: var(--text-muted, #6c757d);
    margin-right: 5px;
    pointer-events: none;
    white-space: nowrap;
}
.rfb {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    min-width: 30px;
    padding: 4px 6px;
    background: none;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    color: var(--primary, #0b1b3d);
    font-weight: 700;
    font-family: inherit;
    line-height: 1;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    font-size: 14px;
}
.rfb small { font-size: 9px; }
.rfb:hover {
    background: rgba(212,175,55,0.1);
    border-color: var(--accent, #d4af37);
}
.rfb.rfb-active {
    background: var(--primary, #0b1b3d);
    color: #fff;
    border-color: var(--primary, #0b1b3d);
}
@media (max-width: 480px) {
    .rfb { min-width: 36px; padding: 6px 8px; }
}

/* ==========================================================================
   YATAY DÖVİZ KURLARI & HAVA DURUMU ŞERİDİ STİLLERİ
   ========================================================================== */

/* 1. Genel Bölüm ve Konteyner Yapısı */
.yatay-bar-section {
    margin: 20px 0 15px 0;
    width: 100%;
}

/* Sayfa başlığı içindeki yerleşim için lacivert temaya uyarlama */
.page-header .yatay-bar-section {
    margin: 15px 0 0 0;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.yatay-bar-section *,
.yatay-bar-section *::before,
.yatay-bar-section *::after {
    box-sizing: border-box;
}

.yatay-bar-inner-capsule {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 2px 8px rgba(0, 0, 0, 0.02);
    border-radius: 50px;
    padding: 10px 24px;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    color: var(--primary, #0b1b3d);
}

/* Lacivert sayfa başlığı içinde buzlu cam (glassmorphism) efekti */
.page-header .yatay-bar-inner-capsule {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    color: #ffffff;
}

/* 2. Döviz Kurları Grubu (Sol) */
.yatay-rates-group {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 100%;
    flex-shrink: 1;
}

.y-rate-pill {
    background: rgba(11, 27, 61, 0.02);
    border: 1px solid rgba(11, 27, 61, 0.04);
    padding: 5px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: inherit;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease;
}

.y-rate-pill:hover {
    transform: translateY(-1px);
    background: rgba(11, 27, 61, 0.04);
}

.page-header .y-rate-pill {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

.page-header .y-rate-pill:hover {
    background: rgba(255, 255, 255, 0.06);
}

.y-pill-icon {
    font-size: 11px;
    color: var(--accent, #d4af37);
    display: flex;
    align-items: center;
}

.y-pill-name {
    font-weight: 700;
    color: inherit;
    font-size: 12px;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.y-pill-price {
    font-weight: 700;
    color: inherit;
    font-size: 13.5px;
}

.y-pill-change {
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 1px 5px;
    border-radius: 4px;
}

/* Değişim Renkleri */
.y-pill-change.up {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.08);
}
.y-pill-change.down {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
}
.y-pill-change.stable {
    color: #64748b;
    background: rgba(148, 163, 184, 0.08);
}

.page-header .y-pill-change.up {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
}
.page-header .y-pill-change.down {
    color: #f87171;
    background: rgba(248, 113, 113, 0.15);
}
.page-header .y-pill-change.stable {
    color: #94a3b8;
    background: rgba(148, 163, 184, 0.1);
}

/* 3. Dikey Bölücü Çizgi (Desktop) */
.yatay-divider {
    width: 1px;
    height: 18px;
    background: rgba(11, 27, 61, 0.08);
    flex-shrink: 0;
}

.page-header .yatay-divider {
    background: rgba(255, 255, 255, 0.12);
}

/* 4. Hava Durumu Grubu (Sağ) */
.yatay-weather-group {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 100%;
    flex-shrink: 1;
}

.y-weather-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.y-weather-loc .loc-icon {
    color: var(--accent, #d4af37);
    font-size: 12px;
}

/* Minimalist Inline Select */
.y-loc-select {
    background: transparent;
    border: none;
    border-bottom: 1px dashed rgba(11, 27, 61, 0.2);
    color: var(--primary, #0b1b3d);
    font-weight: 700;
    font-size: 13px;
    font-family: inherit;
    padding: 2px 14px 2px 2px;
    cursor: pointer;
    outline: none;
    min-width: 125px;
    width: auto;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1b3d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 9px;
    transition: border-color 0.2s;
}

.y-loc-select:hover {
    border-bottom-color: var(--accent, #d4af37);
}

.page-header .y-loc-select {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.page-header .y-loc-select option {
    background-color: var(--primary-dark, #0b1b3d);
    color: #ffffff;
}

.y-weather-display {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.y-weather-icon-inline {
    font-size: 18px;
    color: var(--accent, #d4af37);
}

.y-weather-temp {
    font-weight: 700;
    font-size: 14.5px;
}

.y-weather-desc {
    opacity: 0.8;
    font-size: 12px;
}

/* 5. Mobil ve Tablet Uyumlu Responsive Kodlar */
@media (max-width: 1200px) {
    .yatay-bar-inner-capsule {
        padding: 10px 18px;
        gap: 15px;
    }
    .yatay-rates-group {
        gap: 8px;
    }
    .y-rate-pill {
        padding: 5px 10px;
    }
}

@media (max-width: 1024px) {
    .yatay-bar-inner-capsule {
        flex-direction: column;
        border-radius: 20px;
        padding: 14px 18px;
        gap: 12px;
        align-items: center;
    }
    
    .yatay-rates-group {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 4px 2px;
        justify-content: flex-start;
    }
    
    /* Scrollbar'ı tamamen gizle */
    .yatay-rates-group::-webkit-scrollbar {
        display: none;
    }
    .yatay-rates-group {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .y-rate-pill {
        flex-shrink: 0;
    }
    
    .yatay-divider {
        display: none; /* Mobilde dikey ayırıcı çizgiyi gizle */
    }
    
    .yatay-weather-group {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 10px;
    }
    
    .page-header .yatay-weather-group {
        border-top-color: rgba(255, 255, 255, 0.08);
    }
    
    .y-loc-select {
        min-width: 110px;
    }
}


