/* ============================================
   DataPaylaşım Haber - Modern Tasarım v2.0
   Professional News Portal
   ============================================ */

/* ─── CSS Variables ─── */
:root {
    /* Brand */
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --primary-light: #fef2f2;
    --primary-bg: rgba(220, 38, 38, 0.06);

    /* Neutrals */
    --dark: #0f172a;
    --dark-2: #1e293b;
    --dark-3: #334155;
    --text: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --bg: #f5f5f5;
    --bg-alt: #f1f5f9;
    --white: #ffffff;

    /* Semantic */
    --info: #0284c7;
    --success: #16a34a;
    --warning: #f59e0b;
    --danger: #dc2626;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);

    /* Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 50px;

    /* Layout */
    --container: 1280px;
    --header-height: 60px;

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Navigation */
    --nav-bg: #c82333;
    --nav-color: #fff;
    --nav-font-size: 13.5px;
    --nav-hover-color: #ffd700;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.2s var(--ease);
    --transition-slow: 0.35s var(--ease);
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: bicubic;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.home-container {
    padding-top: 10px;
}

.d-none-mobile {
    display: flex !important;
}

.site-main {
    min-height: 60vh;
    padding-bottom: 60px;
}

/* ─── Utility ─── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ═══════════════════════════════════════════════
   HEADER — Editorial Premium Design
   ═══════════════════════════════════════════════ */

/* --- Top Bar (Döviz + Social) --- */
.header-ticker-bar {
    background: #1a3a6c;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    padding: 0;
    border-bottom: none;
}

.ticker-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    gap: 16px;
}

.doviz-bar {
    display: flex;
    align-items: center;
    gap: 0;
}

.doviz-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    transition: background 0.2s;
}

.doviz-item:first-child {
    padding-left: 0;
}

.doviz-item:last-child {
    border-right: none;
}

.doviz-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.doviz-label {
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #f59e0b;
}

.doviz-value {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}

.galeri-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.galeri-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.galeri-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.galeri-link i {
    font-size: 10px;
}

.ticker-social {
    display: flex;
    align-items: center;
    gap: 2px;
}

.ticker-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    font-size: 12px;
    transition: var(--transition);
}

.ticker-social a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* --- Main Header --- */
.site-header {
    position: relative;
    z-index: 900;
    background: var(--white);
    box-shadow: none;
}

.header-main {
    padding: 18px 0;
    border-bottom: none;
    background: var(--white);
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-left {
    flex-shrink: 0;
}

.header-logo {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    position: relative;
    padding-left: 0;
}

.header-logo-img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.header-logo::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.header-logo:has(.header-logo-img)::before {
    display: none;
}

.header-logo:hover::before {
    width: 60px;
}

.logo-text-main {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.5px;
    line-height: 1;
    transition: var(--transition);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.header-logo:hover .logo-text-main {
    color: var(--primary);
}

.logo-subtitle {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

.header-date {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-date i {
    color: var(--primary);
    font-size: 11px;
}

.header-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-ad-space {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-placeholder {
    border-radius: var(--radius) !important;
    border-color: var(--border) !important;
    background: var(--bg-alt) !important;
}

.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-weather {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    margin-right: 4px;
}

.header-weather .weather-icon {
    width: 20px;
    height: 20px;
}

.header-weather .weather-temp {
    font-weight: 800;
    color: var(--dark);
    font-size: 14px;
}

.header-weather .weather-city {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 12px;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 0;
    margin-right: 4px;
    padding-right: 8px;
    border-right: 1px solid var(--border);
}

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 13px;
    transition: var(--transition);
}

.header-social a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 15px;
    transition: var(--transition);
    border: 1px solid var(--border);
    background: transparent;
}

.header-btn:hover {
    background: #111827;
    color: var(--white);
    border-color: #111827;
}

/* --- Category Navigation (Editorial Style) --- */
.header-nav {
    background: var(--nav-bg, #c82333);
    position: relative;
    z-index: 100;
    border-top: none;
    border-bottom: none;
}

.header-nav-inner {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    color: var(--nav-color, #fff);
    font-size: 18px;
    padding: 12px;
}

.header-nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.header-nav-list::-webkit-scrollbar {
    display: none;
}

.header-nav-list>li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 15px;
    color: var(--nav-color, #fff);
    font-family: var(--font, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
    font-size: var(--nav-font-size, 13.5px);
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
    position: relative;
    letter-spacing: 0.2px;
}

.header-nav-list>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #fff;
    transition: width 0.25s var(--ease);
}

.header-nav-list>li>a:hover {
    color: var(--nav-hover-color, #ffd700);
}

.header-nav-list>li>a:hover::after,
.header-nav-list>li>a.active::after {
    width: 100%;
}

.header-nav-list>li>a.active {
    color: var(--nav-hover-color, #ffd700);
}

.header-nav-list>li>a.nav-hot {
    color: var(--nav-hover-color, #ffd700);
    font-weight: 600;
    position: relative;
    padding-left: 22px;
}

.header-nav-list>li>a.nav-hot::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--nav-hover-color, #ffd700);
    border-radius: 50%;
    animation: nav-dot-pulse 1.5s infinite;
}

@keyframes nav-dot-pulse {

    0%,
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 0.4;
        transform: translateY(-50%) scale(0.7);
    }
}

.header-nav-list>li>a.nav-hot:hover {
    color: var(--nav-color, #fff);
}

/* Nav Dropdown (Servisler) */
.nav-dropdown-site {
    position: relative;
}

.nav-dropdown-panel {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
    min-width: 240px;
    padding: 8px 0;
    z-index: 200;
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
}

.nav-dropdown-site:hover .nav-dropdown-panel {
    display: block;
    animation: dropdownFade 0.2s var(--ease);
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-dropdown-panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-dropdown-panel a:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

.nav-dropdown-panel a i {
    width: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

.nav-dropdown-panel a:hover i {
    color: var(--primary);
}

/* ─── Header Style Variants ─── */
/* Centered */
.site-header.header-style-centered .header-main-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-header.header-style-centered .header-left {
    order: 1;
    margin-bottom: 8px;
}

.site-header.header-style-centered .header-center {
    order: 2;
}

.site-header.header-style-centered .header-right {
    order: 3;
    margin-top: 8px;
}

.site-header.header-style-centered .header-nav-list {
    justify-content: center;
}

/* Minimal */
.site-header.header-style-minimal .header-main {
    padding: 8px 0;
}

.site-header.header-style-minimal .header-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.header-style-minimal .header-nav-list>li>a {
    padding: 10px 12px;
    font-size: calc(var(--nav-font-size, 13.5px) - 1px);
}

/* Magazine */
.site-header.header-style-magazine .header-main {
    border-bottom: 3px solid var(--primary, #dc2626);
    padding: 16px 0;
}

.site-header.header-style-magazine .header-logo-img {
    max-height: 60px;
}

.site-header.header-style-magazine .header-nav {
    background: var(--dark, #0f172a);
}

.site-header.header-style-magazine .header-nav-list>li>a {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Dark */
.site-header.header-style-dark .header-main {
    background: #111827;
    color: #f9fafb;
}

.site-header.header-style-dark .header-main a,
.site-header.header-style-dark .header-main .weather-city,
.site-header.header-style-dark .header-main .weather-temp {
    color: #f9fafb;
}

.site-header.header-style-dark .header-social a {
    color: #9ca3af;
}

.site-header.header-style-dark .header-social a:hover {
    color: #f9fafb;
}

.site-header.header-style-dark .header-nav {
    background: #1f2937;
}

/* Classic */
.site-header.header-style-classic .header-main {
    background: #fafaf9;
    border-bottom: 2px solid #e7e5e4;
}

.site-header.header-style-classic .header-nav {
    background: var(--primary, #dc2626);
    border-top: none;
}

.site-header.header-style-classic .header-nav-list>li>a {
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ─── Search Popup ─── */
.search-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
}

.search-popup.active {
    display: flex;
}

.search-popup-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
    animation: popupSlide 0.3s var(--ease);
}

@keyframes popupSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-popup-inner h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.search-popup-form {
    display: flex;
    gap: 8px;
}

.search-popup-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.search-popup-form input:focus {
    border-color: var(--primary);
}

.search-popup-form button {
    padding: 14px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.search-popup-form button:hover {
    background: var(--primary-dark);
}

.search-popup-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
}


/* ═══════════════════════════════════════════════
   BREAKING NEWS BAR
   ═══════════════════════════════════════════════ */

.breaking-news-bar {
    background: #0d2847;
    padding: 0;
    overflow: hidden;
}

/* Header version */
.breaking-inner {
    display: flex;
    align-items: center;
    height: 38px;
}

.breaking-label {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    padding: 0 16px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    height: 100%;
    text-decoration: none;
    animation: pulse-label 2s infinite;
}

@keyframes pulse-label {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.breaking-label i {
    font-size: 12px;
    animation: flash 1.5s infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.breaking-slider {
    flex: 1;
    overflow: hidden;
    height: 40px;
    position: relative;
}

.breaking-track {
    transition: transform 0.5s var(--ease);
}

.breaking-item {
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 10px;
}

.breaking-time {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.breaking-item a {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breaking-item a:hover {
    text-decoration: underline;
}

/* Index page version */
.breaking-news-inner {
    display: flex;
    align-items: center;
    height: 42px;
}

.breaking-ticker {
    flex: 1;
    overflow: hidden;
    height: 42px;
}

.ticker-wrap {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
    gap: 60px;
}

.ticker-item {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    padding: 0 20px;
    line-height: 42px;
}

.ticker-item:hover {
    text-decoration: underline;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ═══════════════════════════════════════════════
   OFF-CANVAS MOBILE MENU
   ═══════════════════════════════════════════════ */

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -360px;
    width: 336px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    overflow-y: auto;
    transition: right 0.35s var(--ease);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
}

.offcanvas-menu.active {
    right: 0;
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    background: var(--dark);
}

.offcanvas-brand {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
}

.offcanvas-close {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    transition: var(--transition);
}

.offcanvas-close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.offcanvas-weather {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--bg-alt);
    font-size: 13px;
}

.offcanvas-weather .weather-icon {
    width: 24px;
    height: 24px;
}

.offcanvas-weather .weather-temp {
    font-weight: 700;
    font-size: 15px;
}

.offcanvas-weather .weather-city {
    color: var(--text-secondary);
}

.offcanvas-search {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.offcanvas-search form {
    display: flex;
    gap: 0;
    background: var(--bg-alt);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.offcanvas-search input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
}

.offcanvas-search button {
    width: 46px;
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.offcanvas-search button:hover {
    background: var(--primary-dark);
}

.offcanvas-nav {
    padding: 8px 0;
}

.offcanvas-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.offcanvas-nav li a:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

.offcanvas-nav li a i {
    width: 20px;
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
}

.offcanvas-nav li a:hover i {
    color: var(--primary);
}

.offcanvas-nav .nav-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 20px;
}

.offcanvas-nav .nav-section-title {
    padding: 12px 20px 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.offcanvas-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    border-top: 1px solid var(--border);
}

.offcanvas-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--text-secondary);
    font-size: 15px;
    transition: var(--transition);
}

.offcanvas-social a:hover {
    background: var(--primary);
    color: var(--white);
}


/* ═══════════════════════════════════════════════
   MANŞET SLIDER
   ═══════════════════════════════════════════════ */

.manset-section {
    margin: 20px 0 28px;
}

.manset-hero-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
    min-height: 420px;
}

.manset-slider-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: var(--dark);
}

.manset-sidebar-list {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

overflow: hidden;
background: var(--dark);
}

.manset-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.manset-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s var(--ease);
    display: block;
}

.manset-slide.active {
    opacity: 1;
    z-index: 1;
}

.manset-slide-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.manset-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manset-slide-overlay {
    position: absolute;
    bottom: 38px;
    left: 0;
    right: 0;
    padding: 60px 32px 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    z-index: 2;
}

.manset-cat {
    display: none;
}

.manset-title {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.manset-time {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.manset-time i {
    margin-right: 4px;
}

/* Manset Navigation */
.manset-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.manset-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.08);
}

.manset-prev {
    left: 14px;
}

.manset-next {
    right: 14px;
}

.manset-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    background: rgba(0, 0, 0, 0.7);
}

.manset-page-num {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.manset-page-num:last-child {
    border-right: none;
}

.manset-page-num.active,
.manset-page-num:hover {
    background: var(--primary);
    color: #fff;
}

/* Manset Sidebar List */

.manset-list-item {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.manset-list-item:last-child {
    border-bottom: none;
}

.manset-list-item:hover {
    background: var(--bg-alt);
}

.manset-list-item h4 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--text);
    display: block;
    overflow: visible;
    transition: var(--transition);
}

.manset-list-item:hover h4 {
    color: var(--primary);
}


/* ═══════════════════════════════════════════════
   HOMEPAGE LAYOUT (Main + Sidebar)
   ═══════════════════════════════════════════════ */

.home-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    margin-bottom: 28px;
}

.home-main {
    min-width: 0;
}

.home-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.widget-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

.widget-header h3 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-header h3 i {
    color: var(--primary);
    font-size: 14px;
}

/* Popular List */
.popular-list {
    padding: 8px 0;
}

.popular-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 20px;
    color: var(--text);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
}

.popular-item:last-child {
    border-bottom: none;
}

.popular-item:hover {
    background: var(--bg-alt);
}

.popular-rank {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-light);
    flex-shrink: 0;
    transition: var(--transition);
}

.popular-item:nth-child(1) .popular-rank {
    background: var(--primary);
    color: #fff;
}

.popular-item:nth-child(2) .popular-rank {
    background: #f97316;
    color: #fff;
}

.popular-item:nth-child(3) .popular-rank {
    background: #eab308;
    color: #fff;
}

.popular-content {
    flex: 1;
    min-width: 0;
}

.popular-content h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
}

.popular-item:hover h4 {
    color: var(--primary);
}

.popular-cat {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Service Grid */
.sidebar-services {
    padding-bottom: 16px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 16px;
}

.service-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    background: var(--bg-alt);
    transition: var(--transition);
    white-space: nowrap;
}

.service-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

.service-btn i {
    font-size: 14px;
    color: var(--primary);
    width: 18px;
    text-align: center;
    transition: var(--transition);
}

.service-btn:hover i {
    color: #fff;
}

/* Card Category Badge */
.card-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    z-index: 2;
    transition: var(--transition);
}

.news-card:hover .card-cat-badge {
    background: var(--dark);
}

/* Card Image Gradient Overlay */
.news-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .news-card-image::after {
    opacity: 1;
}


/* ═══════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════ */

.section-block {
    margin-bottom: 28px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    padding: 24px 28px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0 0 16px;
    border-bottom: none;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e7eb;
    border-radius: 2px;
}

.section-header h2 {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin: 0;
    color: var(--dark);
}

.section-header h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 22px;
    border-radius: 2px;
    margin-right: 10px;
    flex-shrink: 0;
    background: currentColor;
}

.section-header h2 a {
    color: inherit;
    transition: var(--transition);
    background: linear-gradient(135deg, color-mix(in srgb, currentColor 8%, transparent), color-mix(in srgb, currentColor 4%, transparent));
    padding: 6px 14px;
    border-radius: 8px;
}

.section-header h2 a:hover {
    background: linear-gradient(135deg, color-mix(in srgb, currentColor 15%, transparent), color-mix(in srgb, currentColor 8%, transparent));
}

.section-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 6px 14px;
    border-radius: 20px;
    background: color-mix(in srgb, var(--primary) 8%, transparent);
    transition: all .25s ease;
    text-decoration: none;
}

.section-more:hover {
    background: var(--primary);
    color: #fff;
    gap: 8px;
    transform: translateX(2px);
}

.section-more i {
    font-size: 11px;
    transition: transform .25s;
}

.section-more:hover i {
    transform: translateX(2px);
}

/* Light version (for dark bg sections) */
.section-header-light {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.section-header-light::after {
    background: rgba(255, 255, 255, .15);
}

.section-header-light h2 {
    color: var(--white);
}

.section-header-light h2::before {
    background: #fff;
}

.section-header-light h2 a {
    background: rgba(255, 255, 255, .1);
}

.section-header-light h2 a:hover {
    background: rgba(255, 255, 255, .2);
}

.section-more-light {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, .12);
}

.section-more-light:hover {
    color: var(--white);
}


/* ═══════════════════════════════════════════════
   TOP NEWS STRIP (Above Manşet)
   ═══════════════════════════════════════════════ */

.top-news-strip {
    margin-top: 10px;
    margin-bottom: 20px;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.strip-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.strip-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: transparent;
}

.strip-card-img {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    flex-shrink: 0;
    line-height: 0;
}

.strip-card-img img {
    display: block;
    width: 100% !important;
    min-width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center center;
    transition: transform 0.5s var(--ease);
}

.strip-card:hover .strip-card-img img {
    transform: scale(1.06);
}

.strip-card h3 {
    padding: 14px 16px 18px;
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
    color: var(--text);
    display: block;
    overflow: visible;
    transition: var(--transition);
}

.strip-card:hover h3 {
    color: var(--primary);
}

@media (max-width: 768px) {
    .strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .strip-card h3 {
        font-size: 14px;
        padding: 10px 12px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .strip-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .strip-card h3 {
        font-size: 13.5px;
        padding: 10px 10px;
        line-height: 1.4;
    }
}


/* ═══════════════════════════════════════════════
   NEWS CARDS & GRIDS
   ═══════════════════════════════════════════════ */

.news-grid {
    display: grid;
    gap: 20px;
}

.news-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.news-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.news-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.35s var(--ease);
    border: 1px solid var(--border);
}

.news-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: transparent;
}

.news-card-image {
    display: block;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    line-height: 0;
}

.news-card-image img {
    display: block;
    width: 100% !important;
    min-width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center center;
    transition: transform 0.6s var(--ease);
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
}

.news-card:hover .news-card-image img {
    transform: scale(1.08);
}

.news-card-cat-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary, #dc2626);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.news-card-body {
    padding: 16px 18px 18px;
}

.news-card-body h3 {
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text);
    margin: 0 0 6px;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-body a:hover h3 {
    color: var(--primary);
}

.news-card-excerpt {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-light);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-time {
    display: none;
}

.news-card-time i {
    font-size: 11px;
}

/* Card with category badge */
.news-card-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: 6px;
}


/* ═══════════════════════════════════════════════
   CATEGORY FEATURED GRID (Düziçi, Ekonomi style)
   ═══════════════════════════════════════════════ */

.cat-featured-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    min-height: 380px;
}

.cat-featured-main {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.featured-card-big {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.featured-card-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.featured-card-big:hover img {
    transform: scale(1.05);
}

.featured-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 24px 24px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.featured-card-overlay h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.cat-featured-list {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.cat-list-link {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.cat-list-link:last-child {
    border-bottom: none;
}

.cat-list-link:hover {
    background: var(--bg-alt);
    padding-left: 22px;
}

.cat-list-link h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text);
    transition: var(--transition);
}

.cat-list-link:hover h4 {
    color: var(--primary);
}

.cat-list-card {
    display: flex;
    gap: 14px;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    align-items: center;
}

.cat-list-card:hover {
    box-shadow: var(--shadow);
    border-color: transparent;
    transform: translateX(4px);
}

.cat-list-card img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.cat-list-card-body {
    flex: 1;
    min-width: 0;
}

.cat-list-card-body h4 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
}

.cat-list-card:hover h4 {
    color: var(--primary);
}

.news-time {
    display: none;
}

.news-time i {
    font-size: 10px;
}


/* ═══════════════════════════════════════════════
   SPOR SECTION (Numbered List)
   ═══════════════════════════════════════════════ */

.spor-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 20px;
}

.spor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.spor-section-inner {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.spor-header-label {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
    color: #fff;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spor-numbered-list {
    padding: 8px 0;
}

.spor-numbered-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    color: var(--text);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
}

.spor-numbered-item:last-child {
    border-bottom: none;
}

.spor-numbered-item:hover {
    background: var(--bg-alt);
    padding-left: 24px;
}

.spor-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.spor-numbered-item:hover .spor-num {
    background: var(--primary);
    color: var(--white);
}

.spor-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}


/* ═══════════════════════════════════════════════
   FOTO GALERİ SECTION
   ═══════════════════════════════════════════════ */

.foto-galeri-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 40px 0;
    margin: 40px 0;
}

.foto-galeri-slider {
    position: relative;
    overflow: hidden;
}

.foto-galeri-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s var(--ease);
}

.foto-galeri-card {
    flex: 0 0 280px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.foto-galeri-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.foto-galeri-card:hover img {
    transform: scale(1.08);
}

.foto-galeri-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 16px 16px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.foto-galeri-overlay h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.foto-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.foto-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.foto-prev {
    left: 8px;
}

.foto-next {
    right: 8px;
}


/* ═══════════════════════════════════════════════
   VİDEO GALERİ SECTION
   ═══════════════════════════════════════════════ */

.video-galeri-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    padding: 40px 0;
    margin: 40px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-card {
    display: block;
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-4px);
}

.video-thumb {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    margin-bottom: 12px;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.video-card:hover .video-thumb img {
    transform: scale(1.06);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-card:hover .play-icon {
    background: var(--primary);
    border-color: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}


/* ═══════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════ */

.main-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

.sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 24px;
}

.sidebar-widget-header {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--dark);
    position: relative;
}

.sidebar-widget-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 18px;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.sidebar-widget-body {
    padding: 16px 18px;
}

/* Popular news widget */
.popular-news-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: flex-start;
}

.popular-news-item:last-child {
    border-bottom: none;
}

.popular-news-num {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
}

.popular-news-item:hover .popular-news-num {
    background: var(--primary);
    color: var(--white);
}

.popular-news-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    transition: var(--transition);
}

.popular-news-item:hover .popular-news-text {
    color: var(--primary);
}

/* Sidebar ad */
.sidebar-ad {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */

.site-footer {
    margin-top: auto;
}

/* Newsletter */
.footer-newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.newsletter-text h3 i {
    margin-right: 8px;
}

.newsletter-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    display: flex;
    gap: 0;
    flex: 1;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 14px 24px;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--dark);
    color: var(--white);
}

/* Footer Main */
.footer-main {
    background: var(--dark);
    padding: 48px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-about {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 400;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-col ul li a i {
    font-size: 10px;
    width: 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
}

.footer-col ul li a:hover i {
    color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    background: var(--dark);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
}

.footer-legal {
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.25) !important;
}

.footer-software {
    margin-top: 8px !important;
}

.footer-software a {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.footer-software a:hover {
    color: var(--white);
}


/* ─── Back to Top ─── */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 800;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-slow);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}


/* ═══════════════════════════════════════════════
   ARTICLE / NEWS DETAIL PAGE
   ═══════════════════════════════════════════════ */

.article-hero {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 50px 0 0;
    margin-top: -1px;
}

.article-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 24px;
}

.article-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.article-breadcrumb a:hover {
    color: #fff;
}

.article-breadcrumb i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

.article-breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.article-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.article-category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    color: #fff;
}

.article-hero-title {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.article-hero-excerpt {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 700px;
}

.article-meta-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.article-meta-item i {
    font-size: 14px;
}

.article-meta-item strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.article-hero-image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    transform: translateY(20px);
}

.article-hero-image img {
    width: 100%;
    display: block;
}

/* ═══════════════════════════════════════════════
   HABER DETAY (DÜZİCİHABER STYLE)
   ═══════════════════════════════════════════════ */

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #b81212, #e31410);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Detail Wrapper & Layout */
.detail-wrapper {
    padding-bottom: 40px;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 24px 30px 40px;
    margin-top: 16px;
}

.detail-breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 14px 20px;
    margin: 0 0 16px;
    font-size: 13px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.detail-breadcrumb li {
    color: var(--text-secondary);
}

.detail-breadcrumb li+li::before {
    content: '/';
    padding: 0 8px;
    color: #ccc;
}

.detail-breadcrumb li a {
    color: var(--dark);
    font-weight: 500;
}

.detail-breadcrumb li a:hover {
    color: var(--primary);
}

.detail-breadcrumb li.active {
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
}

.detail-content {
    min-width: 0;
}



/* Title */
.detail-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 900;
    color: #000;
    line-height: 1.25;
    letter-spacing: -1px;
    margin-bottom: 20px;
    margin-top: 10px;
}

/* Meta Row */
.detail-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    color: #888;
    font-size: 13px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.detail-meta-left,
.detail-meta-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.detail-meta-row i {
    margin-right: 4px;
}

/* Featured Image */
.detail-image {
    margin-bottom: 20px;
}

.detail-image img {
    width: 100%;
    display: block;
    border-radius: 4px;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
}

.detail-image img.shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.detail-image figcaption {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 8px 0;
    text-align: center;
}

/* Blockquote Excerpt */
.detail-excerpt {
    position: relative;
    margin: 0 0 30px;
    padding: 25px;
    color: #0a0a0a;
    background: #fff;
    box-shadow: 0px 20px 50px 0px rgba(0, 11, 47, 0.08);
    border-radius: 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    border-left: 3px solid #0088cb;
    overflow: hidden;
    z-index: 1;
}

/* Share Bar */
.detail-share-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.detail-sharebox {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 36px;
    padding: 0 16px;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
    letter-spacing: 0;
}

.share-btn i {
    font-size: 14px;
}

.share-btn:hover {
    opacity: 0.85;
    color: #fff;
}

.share-btn .share-count {
    font-size: 13px;
    font-weight: 600;
    opacity: 1;
    margin-top: 0;
}

.share-gnews {
    background: #4285f4;
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #000;
}

.share-whatsapp {
    background: #25d366;
}

.share-telegram {
    background: #0088cc;
}

.share-linkedin {
    background: #0a66c2;
}

.detail-font-controls {
    display: flex;
    gap: 0;
}

.font-ctrl-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #f5f5f5;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
    cursor: pointer;
}

.font-ctrl-link:first-child {
    border-radius: 4px 0 0 4px;
}

.font-ctrl-link:last-child {
    border-radius: 0 4px 4px 0;
}

.font-ctrl-link:hover {
    background: #e0e0e0;
    color: #000;
}

/* News Detail Content (duzicihaber style) */
.news-detail {
    margin-top: 28px;
    clear: both;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.news-detail img {
    max-width: 100%;
    height: auto !important;
    border-radius: 4px;
    margin: 16px 0;
}

.news-detail p {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 1.7rem;
    color: #111;
}

.news-detail>p:first-of-type::first-letter {
    font-family: inherit;
    float: none;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin-top: 0;
    padding-right: 0;
    display: inline;
    vertical-align: baseline;
    font-weight: inherit;
}

.news-detail h2,
.news-detail h3,
.news-detail h4,
.news-detail h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.news-detail blockquote {
    position: relative;
    margin: 20px 0 35px;
    padding: 25px;
    color: #0a0a0a;
    background: #fff;
    box-shadow: 0px 20px 50px 0px rgba(0, 11, 47, 0.08);
    border-radius: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    border-left: 3px solid #0088cb;
    z-index: 1;
}

.news-detail ul,
.news-detail ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.news-detail ul {
    list-style: disc;
}

.news-detail ol {
    list-style: decimal;
}

.news-detail li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.7;
    color: #111;
}

/* Source */
.detail-source {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: #f8f8f8;
    border-radius: 4px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.detail-source a {
    color: var(--primary);
    font-weight: 600;
}

/* News Tags */
.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
    margin-top: 16px;
}

.news-tags__link {
    display: inline-block;
    padding: 6px 14px;
    background: #f0f0f0;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.2s;
}

.news-tags__link:hover {
    background: var(--primary);
    color: #fff;
}

/* CTA Button - Animated Gradient */
.widget-actual-btn {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 70px;
    border-radius: 5px;
    margin-top: 20px;
}

.widget-actual-btn::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    opacity: 0.9;
    background-image: linear-gradient(to right, #0072bc 0%, #004470 100%);
    animation: cta-color-change ease 5s infinite;
}

.widget-actual-btn a {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 15;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.widget-actual-btn a span {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.widget-actual-btn a i {
    color: #fff;
    font-size: 18px;
}

@keyframes cta-color-change {
    0% {
        background-position: 0;
    }

    50% {
        background-position: 320px;
    }

    100% {
        background-position: 0;
    }
}

/* YouTube Subscribe Banner */
.youtube-subscribe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    margin: 20px 0;
    transition: transform 0.3s;
    animation: yt-pulse 2s ease-in-out infinite;
}

.youtube-subscribe:hover {
    transform: scale(1.02);
    color: #fff;
}

.youtube-subscribe__branding {
    font-size: 28px;
    margin: 0;
}

.youtube-subscribe__branding .fa-bell {
    animation: bell-ring 1s ease-in-out infinite;
}

.youtube-subscribe__text {
    font-size: 15px;
    margin: 0;
}

.youtube-subscribe__link {
    text-decoration: underline;
}

@keyframes yt-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
}

@keyframes bell-ring {

    0%,
    100% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-15deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

/* BUNLARA DA BAKABİLİRSİNİZ */
.list-wrapper {
    margin: 24px 0;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.list-title {
    font-size: 16px;
    font-weight: 800;
    color: #0a0a0a;
    padding: 14px 18px;
    margin: 0;
    background: #f8f8f8;
    border-bottom: 2px solid #222;
}

.list-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-wrapper ul li {
    border-bottom: 1px solid #f0f0f0;
}

.list-wrapper ul li:last-child {
    border-bottom: none;
}

.list-wrapper ul li a {
    display: block;
    padding: 12px 18px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    line-height: 1.5;
}

.list-wrapper ul li a:hover {
    background: #f8f8f8;
    color: var(--primary);
    padding-left: 24px;
}

/* Prev/Next Navigation */
.article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.article-nav-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
    background: #f9f9f9;
    border-radius: 4px;
    transition: all 0.2s;
    text-decoration: none;
}

.article-nav-item:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.article-nav-next {
    text-align: right;
}

.article-nav-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-nav-next .article-nav-label {
    justify-content: flex-end;
}

.article-nav-title {
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Emoji Reactions */
.reactions {
    padding: 30px 0;
}

.reactions-box {
    display: flex;
    justify-content: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.reaction {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s;
    user-select: none;
}

.reaction:hover {
    border-color: #3b5998;
    transform: translateY(-4px);
}

.reaction.reacted {
    border-color: #3b5998;
    background: rgba(59, 89, 152, 0.06);
}

.emoji {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.emoji-img {
    font-size: 32px;
    display: block;
    transition: transform 0.3s;
}

.reaction:hover .emoji-img {
    transform: scale(1.3);
}

.emoji-text {
    font-size: 11px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Editor Card */
.editor-card {
    margin: 30px 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 28px;
}

.editor-card__main {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.editor-card__avatar img,
.editor-card__initials {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #f1f5f9;
}

.editor-card__initials {
    background: linear-gradient(135deg, var(--primary, #dc2626), #f59e0b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
}

.editor-card__body {
    flex: 1;
    min-width: 0;
}

.editor-card__name {
    margin: 0 0 2px;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.editor-card__email {
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.editor-card__email:hover {
    color: var(--primary, #dc2626);
}

.editor-card__bio {
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
    margin: 8px 0 0;
}

.editor-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.editor-card__all-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary, #dc2626);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.editor-card__all-link:hover {
    text-decoration: underline;
}

.editor-card__social {
    display: flex;
    gap: 8px;
}

.editor-card__social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8fafc;
    color: #475569;
    font-size: 14px;
    transition: all .2s;
    text-decoration: none;
}

.editor-card__social a:hover {
    background: var(--primary, #dc2626);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .editor-card__main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .editor-card__footer {
        flex-direction: column;
        gap: 10px;
    }
}

/* Comment Form */
.comment-form {
    padding: 24px;
    background-color: #f8f8f8;
    border-radius: 4px;
    margin-top: 24px;
}

.section-heading-line {
    position: relative;
    margin-bottom: 15px;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.section-headline {
    position: relative;
    padding: 0 0 15px;
    margin: 0;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
}

.section-headline::after {
    content: '';
    background-color: #222;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -1px;
    left: 0;
}

.comment-note {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.comment-note span {
    color: #e31410;
}

.comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.comment-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fff;
}

.comment-input:focus {
    border-color: var(--primary);
    outline: none;
}

.comment-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s;
    background: #fff;
}

.comment-textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.comment-form-full {
    margin-bottom: 16px;
}

.btn-comment {
    display: inline-block;
    padding: 10px 24px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.btn-comment:hover {
    background: #000;
}

/* ═══ Detail Sidebar ═══ */
.detail-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
}

.detail-sidebar .widget-social-follow,
.detail-sidebar .widget-poll,
.detail-sidebar .sidebar-similar-news,
.detail-sidebar .sidebar-numbered-news {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Social Follow Widget */
.widget-social-follow {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    overflow: hidden;
}

.widget-social-title {
    font-size: 15px;
    font-weight: 700;
    color: #0a0a0a;
    padding: 14px 18px;
    border-bottom: 2px solid #222;
    background: #f9f9f9;
}

.social-follow-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-follow-list li {
    border-bottom: 1px solid #f0f0f0;
}

.social-follow-list li:last-child {
    border-bottom: none;
}

.social-follow-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.social-follow-list li a:hover {
    opacity: 0.9;
    color: #fff;
}

.social-follow-list li a i {
    font-size: 20px;
}

.sf-facebook a {
    background: #3b5998;
}

.sf-twitter a {
    background: #1da1f2;
}

.sf-instagram a {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.sf-youtube a {
    background: #ff0000;
}

.sf-rss a {
    background: #f26522;
}

/* Poll Widget */
.widget-poll {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.widget-poll-title {
    font-size: 15px;
    font-weight: 700;
    color: #0a0a0a;
    padding: 14px 18px;
    border-bottom: 2px solid #222;
    background: #f9f9f9;
}

.widget-poll-body {
    padding: 18px;
}

.poll-question {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 14px;
    color: #0a0a0a;
}

.poll-options {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.poll-options li {
    margin-bottom: 6px;
    padding: 8px 10px;
    border: 1px solid #eee;
    border-radius: 3px;
    transition: background 0.2s;
}

.poll-options li:hover {
    background: #f5f5f5;
}

.poll-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    margin: 0;
}

.poll-buttons {
    display: flex;
    gap: 8px;
}

.btn-poll {
    flex: 1;
    padding: 8px 14px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-poll:hover {
    background: #444;
}

.btn-poll-results {
    background: #555;
}

.btn-poll-results:hover {
    background: #777;
}

/* Similar News Widget */
.widget-similar-news {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.widget-similar-title {
    font-size: 15px;
    font-weight: 700;
    color: #0a0a0a;
    padding: 14px 18px;
    border-bottom: 2px solid #222;
    background: #f9f9f9;
}

.similar-featured {
    overflow: hidden;
}

.similar-featured img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}

.similar-featured a:hover img {
    transform: scale(1.05);
}

.similar-content {
    padding: 14px 18px;
}

.similar-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.4;
}

.similar-content h4 a {
    color: #0a0a0a;
    text-decoration: none;
}

.similar-content h4 a:hover {
    color: var(--primary);
}

.similar-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Numbered Popular News List */
.widget-numbered-news {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.numbered-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.numbered-item {
    border-bottom: 1px solid #f0f0f0;
}

.numbered-item:last-child {
    border-bottom: none;
}

.numbered-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    transition: background 0.2s;
}

.numbered-item a:hover {
    background: #f9f9f9;
}

.numbered-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: #e31410;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.numbered-text {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.numbered-item a:hover .numbered-text {
    color: var(--primary);
}

/* Utility classes */
.mt-4 {
    margin-top: 1.5rem;
}

.my-4 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.ml-3 {
    margin-left: 1rem;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Homepage Responsive */
@media (max-width: 1024px) {
    .home-layout {
        grid-template-columns: 1fr;
    }

    .home-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .home-sidebar {
        grid-template-columns: 1fr;
    }

    .news-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .cat-featured-grid {
        grid-template-columns: 1fr;
    }

    .section-block {
        padding: 14px 12px;
        border-radius: 8px;
    }

    .section-header h2 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    .news-grid-3 {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .news-grid-2 {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-block {
        padding: 12px 10px;
    }
}

/* Detail Responsive */
@media (max-width: 992px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .detail-wrapper {
        padding: 14px 12px 24px;
        margin-top: 8px;
        border-radius: 0;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
    }

    .detail-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .detail-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .detail-share-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .detail-excerpt {
        font-size: 16px;
        line-height: 26px;
        padding: 18px;
    }

    .article-nav {
        grid-template-columns: 1fr;
    }

    .article-nav-next {
        text-align: left;
    }

    .article-nav-next .article-nav-label {
        justify-content: flex-start;
    }

    .reactions-box {
        gap: 8px;
    }

    .reaction {
        padding: 8px 10px;
    }

    .emoji-img {
        font-size: 24px;
    }

    .editor-card__head {
        flex-direction: column;
        text-align: center;
    }

    .editor-card__social {
        justify-content: center;
    }

    .editor-card__bio {
        text-align: center;
    }

    .comment-form-row {
        grid-template-columns: 1fr;
    }

    .share-btn {
        height: 32px;
        padding: 0 10px;
        font-size: 12px;
        border-radius: 3px;
    }

    .share-btn .share-count {
        display: none;
    }

    .news-detail>p:first-of-type::first-letter {
        font-size: inherit;
        line-height: inherit;
    }
}


/* ═══════════════════════════════════════════════
   CATEGORY PAGE
   ═══════════════════════════════════════════════ */

.cat-page {
    padding: 20px 0 40px;
}

.cat-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 12px;
    padding: 12px 16px;
    background: var(--bg-alt, #f8fafc);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 8px;
}

.cat-breadcrumb a {
    color: var(--text-light, #64748b);
    text-decoration: none;
    font-weight: 500;
}

.cat-breadcrumb a:hover {
    color: var(--primary, #dc2626);
}

.cat-breadcrumb-sep {
    color: #cbd5e1;
}

.cat-breadcrumb-current {
    color: var(--text, #1e293b);
    font-weight: 600;
}

.cat-page-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text, #1e293b);
    margin: 0 0 20px;
}

/* Category Manşet */
.cat-manset {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    aspect-ratio: 16/7;
}

.cat-manset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.cat-manset:hover img {
    transform: scale(1.03);
}

.cat-manset-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 28px 24px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.cat-manset-overlay h2 {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Category News List */
.cat-news-list {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border, #e2e8f0);
    overflow: hidden;
    margin-bottom: 24px;
}

.cat-news-item {
    display: flex;
    align-items: stretch;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.cat-news-item:last-child {
    border-bottom: none;
}

.cat-news-item:hover {
    background: #f8fafc;
}

.cat-news-item-img {
    flex-shrink: 0;
    width: 220px;
    min-height: 140px;
    overflow: hidden;
}

.cat-news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.cat-news-item:hover .cat-news-item-img img {
    transform: scale(1.05);
}

.cat-news-item-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.cat-news-item-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.5;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-news-item:hover .cat-news-item-body h3 {
    color: var(--primary, #dc2626);
}

.cat-news-item-body p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category Pagination */
.cat-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 24px 0 0;
}

.cat-pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary, #dc2626);
    background: #fff;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.cat-pagination-btn:hover {
    background: var(--primary, #dc2626);
    color: #fff;
    border-color: var(--primary, #dc2626);
}

.cat-pagination-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    background: #fff;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.cat-pagination-num:hover {
    background: var(--primary, #dc2626);
    color: #fff;
    border-color: var(--primary, #dc2626);
}

.cat-pagination-num.active {
    background: var(--primary, #dc2626);
    color: #fff;
    border-color: var(--primary, #dc2626);
}

.cat-pagination-dots {
    padding: 0 4px;
    color: #94a3b8;
}

/* Keep old category-sidebar for backward compat */
.category-sidebar {
    display: none;
}

.sidebar-widget-modern {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 24px;
}

.sidebar-widget-header {
    padding: 18px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}

.sidebar-widget-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget-header h3 i {
    color: var(--primary, #dc2626);
}

.sidebar-widget-body {
    padding: 16px;
}

.popular-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.popular-item:last-child {
    border-bottom: none;
}

.popular-item:first-child {
    padding-top: 0;
}

.popular-item-number {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #64748b;
    flex-shrink: 0;
}

.popular-item:nth-child(1) .popular-item-number {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.popular-item:nth-child(2) .popular-item-number {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: #475569;
}

.popular-item:nth-child(3) .popular-item-number {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    color: #c2410c;
}

.popular-item-content {
    flex: 1;
    min-width: 0;
}

.popular-item-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-item-title a {
    color: inherit;
    text-decoration: none;
}

.popular-item-title a:hover {
    color: var(--primary, #dc2626);
}

.popular-item-views {
    font-size: 11px;
    color: #94a3b8;
}

.pagination-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.pagination-modern a,
.pagination-modern span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.pagination-modern a {
    background: #f1f5f9;
    color: #64748b;
}

.pagination-modern a:hover {
    background: var(--primary, #dc2626);
    color: #fff;
}

.pagination-modern .current {
    background: var(--primary, #dc2626);
    color: #fff;
}

.pagination-modern .dots {
    color: #94a3b8;
}

.pagination-modern .prev,
.pagination-modern .next {
    padding: 0 18px;
}

/* Empty/no-content state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.empty-state h3 {
    margin: 0 0 8px;
    color: #1e293b;
}

.empty-state p {
    margin: 0;
}


/* ═══════════════════════════════════════════════
   SEARCH PAGE
   ═══════════════════════════════════════════════ */

.search-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 40px 0;
    margin-top: -1px;
    margin-bottom: 32px;
}

.search-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.search-hero-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.search-hero-form {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-hero-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
}

.search-hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-hero-form button {
    padding: 16px 28px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}

.search-hero-form button:hover {
    background: var(--primary-dark);
}


/* ═══════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════ */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 40px 0 20px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
}

.pagination a:hover {
    background: var(--bg-alt);
    border-color: var(--dark);
}

.pagination .current,
.pagination span.current {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.pagination .disabled {
    opacity: 0.4;
    pointer-events: none;
}


/* ═══════════════════════════════════════════════
   SERVICES PAGES (SERİ İLANLAR, TAZİYELER, etc.)
   ═══════════════════════════════════════════════ */

.service-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 40px 0;
    margin-top: -1px;
    margin-bottom: 32px;
}

.service-hero-inner {
    text-align: center;
    padding: 0 20px;
}

.service-hero-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--primary);
}

.service-hero-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.service-hero-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 24px;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow);
    border-color: transparent;
}

.service-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-card-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.service-card-body {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* ═══════════════════════════════════════════════
   ERROR PAGE (404)
   ═══════════════════════════════════════════════ */

.error-page {
    text-align: center;
    padding: 80px 20px;
}

.error-page h1 {
    font-size: 100px;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    margin-bottom: 16px;
}

.error-page p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}


/* ═══════════════════════════════════════════════
   İFTAR VAKTİ PAGE
   ═══════════════════════════════════════════════ */

.iftar-page {
    padding: 30px 0;
    background: linear-gradient(180deg, #1a237e 0%, #283593 50%, #f1f5f9 50%);
    min-height: 100vh;
}

.iftar-header {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.iftar-header h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.iftar-header h1 i {
    color: #ffd54f;
}

.iftar-header p {
    opacity: 0.9;
}

.city-selector {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-lg);
}

.city-selector form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.selector-group {
    flex: 1;
    min-width: 200px;
}

.selector-group label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.selector-group label i {
    color: var(--primary);
}

.selector-group select,
.selector-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
}

.selector-group select:focus,
.selector-group input:focus {
    border-color: var(--primary);
    outline: none;
}

.countdown-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.countdown-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.iftar-card {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #fff;
}

.sahur-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.countdown-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: 0.9;
}

.countdown-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.countdown-timer {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.countdown-time {
    font-size: 0.875rem;
    margin-top: 12px;
    opacity: 0.8;
}

.times-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.times-section h2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.times-section h2 i {
    color: var(--primary);
}

.times-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.time-card {
    background: var(--bg);
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.2s;
}

.time-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.time-card.highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #fff;
}

.time-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.time-card.highlight .time-icon {
    color: #fff;
}

.time-name {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-card.highlight .time-name {
    color: rgba(255, 255, 255, 0.9);
}

.time-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.time-card.highlight .time-value {
    color: #fff;
}

.ramadan-calendar {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.ramadan-calendar h2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
}

.calendar-table th,
.calendar-table td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.calendar-table th {
    background: var(--bg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.calendar-table tr.today {
    background: rgba(220, 38, 38, 0.05);
}

.calendar-table tr.today td {
    font-weight: 600;
}

.iftar-time {
    color: var(--primary);
    font-weight: 700;
}

.info-box {
    display: flex;
    gap: 16px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
}

.info-icon {
    font-size: 1.5rem;
    color: #856404;
}

.info-content h4 {
    margin: 0 0 8px 0;
    color: #856404;
}

.info-content p {
    margin: 0;
    font-size: 0.875rem;
    color: #856404;
}


/* ═══════════════════════════════════════════════
   DUALAR PAGE
   ═══════════════════════════════════════════════ */

.dua-page {
    padding: 30px 0;
    background: linear-gradient(180deg, #1a3c34 0%, #2e5e4e 100px, #f1f5f9 100px);
    min-height: 100vh;
}

.dua-header {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.dua-header h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.dua-header h1 i {
    color: #c9b037;
}

.dua-header p {
    opacity: 0.9;
}

.category-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: #fff;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text);
    transition: all 0.2s;
    box-shadow: var(--shadow);
}

.tab-btn:hover {
    background: var(--bg);
}

.tab-btn.active {
    background: #1a3c34;
    color: #fff;
}

.tab-btn i {
    margin-right: 6px;
}

.dua-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dua-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.dua-card-header {
    background: linear-gradient(135deg, #1a3c34 0%, #2e5e4e 100%);
    padding: 16px 20px;
}

.dua-card-header h3 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

.dua-card-body {
    padding: 20px;
}

.dua-arabic {
    font-size: 1.5rem;
    text-align: right;
    direction: rtl;
    font-family: 'Amiri', 'Traditional Arabic', serif;
    color: #1a3c34;
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    line-height: 2;
}

.dua-section {
    margin-bottom: 12px;
}

.dua-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.dua-text {
    color: var(--text);
    line-height: 1.6;
}

.dua-section.fazileti {
    background: #fff8e1;
    border-left: 3px solid #c9b037;
    padding: 12px;
    border-radius: 0 8px 8px 0;
    margin-top: 16px;
}

.dua-section.fazileti .dua-label {
    color: #c49000;
}

.ayet-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ayet-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ayet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    padding: 16px 20px;
    color: #fff;
}

.ayet-sure {
    font-weight: 700;
    font-size: 1.1rem;
}

.ayet-no {
    font-size: 0.875rem;
    opacity: 0.9;
}

.ayet-body {
    padding: 20px;
}

.ayet-arabic {
    font-size: 1.4rem;
    text-align: right;
    direction: rtl;
    font-family: 'Amiri', 'Traditional Arabic', serif;
    color: #1a237e;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    line-height: 2.2;
}

.ayet-section {
    margin-bottom: 16px;
}

.ayet-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.ayet-text {
    color: var(--text);
    line-height: 1.7;
}

.ayet-section.fazileti {
    background: #e8f5e9;
    border-left: 3px solid #4caf50;
    padding: 12px;
    border-radius: 0 8px 8px 0;
}

.ayet-section.fazileti .ayet-label {
    color: #388e3c;
}

.esma-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.esma-intro {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 16px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 24px;
    color: #1565c0;
}

.esma-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.esma-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.2s;
}

.esma-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.esma-number {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.esma-arabic {
    font-size: 2rem;
    font-family: 'Amiri', serif;
    color: #1a3c34;
    margin-bottom: 8px;
}

.esma-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.esma-meaning {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.esma-note {
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
    margin-top: 20px;
    border-top: 1px solid var(--border);
}

.esma-note i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.daily-dua {
    margin-top: 40px;
}

.daily-dua-inner {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, #c9b037 0%, #a68b00 100%);
    border-radius: 12px;
    padding: 24px;
    color: #fff;
}

.daily-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.daily-content h4 {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
}

.daily-arabic {
    font-size: 1.3rem;
    font-family: 'Amiri', serif;
    direction: rtl;
    text-align: right;
    margin-bottom: 8px;
}

.daily-turkish {
    opacity: 0.95;
    font-size: 0.95rem;
}


/* ═══════════════════════════════════════════════
   HABER AJANSLARI PAGE
   ═══════════════════════════════════════════════ */

.agency-page {
    padding: 30px 0;
    background: #f8fafc;
    min-height: 100vh;
}

.agency-header {
    text-align: center;
    margin-bottom: 30px;
}

.agency-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.agency-header h1 i {
    color: var(--primary);
}

.agency-header p {
    color: var(--text-muted);
}

.agency-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

.agency-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.source-filter-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.source-filter-card h3 {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.source-filter-card h3 i {
    color: var(--primary);
}

.source-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 400px;
    overflow-y: auto;
}

.source-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
}

.source-list li:last-child a {
    border-bottom: none;
}

.source-list li a:hover {
    background: var(--bg);
}

.source-list li a.active {
    background: var(--primary);
    color: #fff;
}

.source-list li a.active .source-count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.source-name {
    font-size: 13px;
    font-weight: 500;
}

.source-count {
    font-size: 11px;
    background: var(--bg);
    padding: 2px 8px;
    border-radius: 10px;
    color: var(--text-muted);
}

.agency-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.stat-item {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.agency-content {
    min-width: 0;
}

.active-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary);
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.active-filter span {
    font-weight: 600;
}

.clear-filter {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.clear-filter:hover {
    color: #fff;
}

.agency-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.agency-news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.2s;
}

.agency-news-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.agency-news-card .news-image {
    position: relative;
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.agency-news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.agency-news-card:hover .news-image img {
    transform: scale(1.05);
}

.agency-news-card .news-source {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.agency-news-card .news-body {
    padding: 16px;
}

.agency-news-card .news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.agency-news-card .news-cat {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.agency-news-card .news-time {
    font-size: 12px;
    color: var(--text-muted);
}

.agency-news-card .news-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

.agency-news-card .news-title a {
    color: var(--dark);
}

.agency-news-card .news-title a:hover {
    color: var(--primary);
}

.agency-news-card .news-summary {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.no-news {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
}

.no-news i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 16px;
}

.no-news h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.no-news p {
    color: var(--text-muted);
}

.pagination-wrap {
    margin-top: 30px;
    text-align: center;
}

.pagination-info {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}


/* ═══════════════════════════════════════════════
   SEÇİM PAGE
   ═══════════════════════════════════════════════ */

.election-page {
    padding: 30px 0;
}

.election-header {
    text-align: center;
    margin-bottom: 30px;
}

.election-header h1 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.election-header h1 i {
    color: var(--primary);
}

.election-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.election-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.summary-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid #ccc;
}

.summary-card.akp {
    border-top-color: #F68B1E;
}

.summary-card.chp {
    border-top-color: #ED1C24;
}

.summary-card.dem {
    border-top-color: #9C27B0;
}

.summary-card.mhp {
    border-top-color: #D32F2F;
}

.party-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.summary-card.akp .party-logo {
    color: #F68B1E;
}

.summary-card.chp .party-logo {
    color: #ED1C24;
}

.summary-card.dem .party-logo {
    color: #9C27B0;
}

.summary-card.mhp .party-logo {
    color: #D32F2F;
}

/* ─── Page Header Banner ─── */
.page-header-banner {
    text-align: center;
    padding: 48px 20px;
    margin-bottom: 32px;
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.page-header-banner h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 8px;
}

.page-header-banner h1 i {
    margin-right: 8px;
    color: var(--primary);
}

.page-header-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

/* ─── Classified Filter Bar ─── */
.classified-filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.classified-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
}

.classified-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.classified-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ─── Form Input ─── */
.form-input {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .page-header-banner h1 {
        font-size: 1.4rem;
    }

    .classified-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
}

.party-count {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.party-name {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.election-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.map-container {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.map-legend {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.turkey-map {
    width: 100%;
    height: auto;
    min-height: 400px;
}

.province-circle {
    cursor: pointer;
    transition: all 0.2s;
}

.province-circle:hover {
    r: 22;
    stroke-width: 3;
}

.province.selected .province-circle {
    r: 24;
    stroke: var(--dark);
    stroke-width: 4;
}

.province-tooltip {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    pointer-events: none;
    z-index: 100;
    min-width: 200px;
}

.tooltip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.province-name {
    font-weight: 700;
    font-size: 1rem;
}

.province-winner {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    color: #fff;
}

.election-detail {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.detail-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.detail-placeholder i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.3;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.detail-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.detail-winner {
    font-size: 0.875rem;
    padding: 6px 12px;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
}

.detail-results {
    margin-bottom: 20px;
}

.result-bar {
    margin-bottom: 12px;
}

.result-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    font-size: 0.875rem;
}

.result-bar-fill {
    height: 24px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.bar-akp {
    background: #F68B1E;
}

.bar-chp {
    background: #ED1C24;
}

.bar-mhp {
    background: #D32F2F;
}

.bar-iyi {
    background: #00AEEF;
}

.bar-dem {
    background: #9C27B0;
}

.detail-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.meta-item {
    text-align: center;
}

.meta-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.meta-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
}

.election-table-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.election-table-section h2 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.election-table {
    width: 100%;
    border-collapse: collapse;
}

.election-table th,
.election-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.election-table th {
    background: var(--bg);
    font-weight: 600;
    font-size: 0.875rem;
}

.election-table tr:hover {
    background: var(--bg);
    cursor: pointer;
}

.party-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.party-akp {
    background: #F68B1E;
}

.party-chp {
    background: #ED1C24;
}

.party-mhp {
    background: #D32F2F;
}

.party-iyi {
    background: #00AEEF;
}

.party-dem {
    background: #9C27B0;
}


/* ═══════════════════════════════════════════════
   INFINITE SCROLL
   ═══════════════════════════════════════════════ */

.article-separator {
    text-align: center;
    padding: 40px 0 30px;
    position: relative;
}

.article-separator .separator-line {
    display: flex;
    align-items: center;
    gap: 16px;
}

.article-separator .separator-line::before,
.article-separator .separator-line::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e74c3c, transparent);
}

.article-separator .separator-label {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #e74c3c;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.infinite-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #888;
}

.loading-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #eee;
    border-top-color: #e74c3c;
    border-radius: 50%;
    animation: spinLoader 0.7s linear infinite;
}

@keyframes spinLoader {
    to {
        transform: rotate(360deg);
    }
}

.infinite-article {
    animation: fadeInArticle 0.5s ease;
}

@keyframes fadeInArticle {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════ */

@media (max-width: 1200px) {
    :root {
        --container: 100%;
    }

    .news-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 992px) {
    .header-center {
        display: none;
    }

    .header-date {
        display: block;
    }

    .news-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-featured-grid {
        grid-template-columns: 1fr;
    }

    .main-layout {
        grid-template-columns: 1fr;
    }

    .article-layout,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .cat-manset {
        aspect-ratio: 16/9;
    }

    .cat-news-item-img {
        width: 180px;
    }

    /* İftar responsive */
    .times-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Dualar responsive */
    .dua-grid {
        grid-template-columns: 1fr;
    }

    .esma-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Haber ajansları responsive */
    .agency-layout {
        grid-template-columns: 1fr;
    }

    .agency-sidebar {
        position: static;
    }

    .source-list {
        max-height: 200px;
    }

    .agency-stats {
        display: none;
    }

    /* Seçim responsive */
    .election-content {
        grid-template-columns: 1fr;
    }

    .election-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .manset-hero-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .manset-slider-wrap {
        aspect-ratio: 16/9;
    }

    .manset-sidebar-list {
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .manset-list-item {
        padding: 12px 16px;
    }

    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .d-none-mobile {
        display: none !important;
    }

    /* Header */
    .header-main {
        padding: 10px 0;
    }

    .header-main-inner {
        gap: 12px;
    }

    .header-logo::before {
        top: -6px;
        width: 28px;
        height: 2px;
    }

    .header-logo:hover::before {
        width: 42px;
    }

    .header-logo-img {
        max-height: 56px;
    }

    .logo-text-main {
        font-size: 22px;
    }

    .logo-subtitle {
        font-size: 8px;
        letter-spacing: 1.5px;
        margin-top: 2px;
    }

    .header-date {
        display: none;
    }

    .header-weather {
        display: none;
    }

    .header-social {
        display: none !important;
    }

    .header-center {
        display: none !important;
    }

    .header-right {
        gap: 10px;
    }

    .header-btn {
        width: 42px;
        height: 42px;
        font-size: 17px;
        border-radius: 12px;
    }

    .header-nav {
        overflow: hidden;
        border-bottom-width: 2px;
    }

    .header-nav-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 6px;
        gap: 4px;
    }

    .header-nav-list>li>a {
        padding: 14px 16px;
        font-size: 13.5px;
        font-weight: 500;
        letter-spacing: 0.2px;
    }

    .header-nav-list>li>a.nav-hot {
        padding: 11px 12px 11px 20px;
    }

    .header-nav-list>li>a.nav-hot::before {
        left: 8px;
        width: 5px;
        height: 5px;
    }

    .header-ticker-bar {
        display: none;
    }

    /* Manset - Homepage reorder */
    .home-container {
        display: flex;
        flex-direction: column;
    }

    .home-container .top-news-strip {
        order: 2;
        margin-top: 12px;
    }

    .home-container .manset-section {
        order: 1;
        margin: 12px 0 16px;
    }

    .home-container .home-layout {
        order: 3;
    }

    .home-container .section-block {
        order: 4;
    }

    .manset-slider-wrap {
        aspect-ratio: 16/9;
        border-radius: var(--radius);
    }

    .manset-sidebar-list {
        display: none;
    }

    .manset-title {
        font-size: 20px !important;
        line-height: 1.35;
    }

    .manset-cat {
        font-size: 11px;
        padding: 4px 12px;
        margin-bottom: 8px;
    }

    .manset-nav {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .manset-slide-overlay {
        padding: 50px 20px 20px;
    }

    .strip-grid {
        gap: 10px;
    }

    .strip-card h3 {
        font-size: 14px;
        padding: 12px 13px;
    }

    /* Grids */
    .news-grid-4,
    .news-grid-3,
    .news-grid-2 {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .news-card-body {
        padding: 12px 14px 14px;
    }

    .news-card-body h3 {
        font-size: 15px;
        line-height: 1.45;
    }

    .news-card-excerpt {
        font-size: 13.5px;
        line-height: 1.5;
    }

    .section-block {
        margin-bottom: 16px;
        padding: 14px 12px;
        border-radius: 0;
    }

    .section-header h2 {
        font-size: 17px;
    }

    /* Category blocks */
    .cat-featured-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cat-featured-main {
        aspect-ratio: 16/9;
    }

    .featured-card-overlay h3 {
        font-size: 19px;
    }

    .cat-list-link {
        padding: 10px 14px;
    }

    .cat-list-link h4 {
        font-size: 14px;
    }

    /* Footer mobile */
    .footer-col h4 {
        font-size: 15px;
    }

    .footer-col ul li a {
        font-size: 14px;
        padding: 5px 0;
    }

    .footer-about {
        font-size: 14px;
    }

    /* Foto galeri */
    .foto-galeri-section {
        padding: 28px 0;
        margin: 28px 0;
    }

    .foto-galeri-card {
        flex: 0 0 220px;
    }

    /* Video */
    .video-galeri-section {
        padding: 28px 0;
        margin: 28px 0;
    }

    .video-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-main {
        padding: 32px 0 24px;
    }

    /* Article */
    .article-meta-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-share-icons {
        width: 100%;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    /* Category */
    .cat-page-title {
        font-size: 22px;
    }

    .cat-manset {
        aspect-ratio: 16/10;
        border-radius: 8px;
    }

    .cat-news-item {
        flex-direction: column;
    }

    .cat-news-item-img {
        width: 100%;
        min-height: 180px;
    }

    .cat-news-item-body {
        padding: 12px 14px;
    }

    .cat-pagination-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .cat-pagination-num {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    /* İftar responsive */
    .iftar-page {
        background: linear-gradient(180deg, #1a237e 0%, #283593 120px, #f1f5f9 120px);
    }

    .iftar-header h1 {
        font-size: 1.5rem;
    }

    .countdown-cards {
        grid-template-columns: 1fr;
    }

    .countdown-card {
        padding: 24px 16px;
    }

    .countdown-timer {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.95rem;
    }

    .times-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .time-card {
        padding: 16px 10px;
    }

    .time-name {
        font-size: 0.8rem;
    }

    .time-value {
        font-size: 1.15rem;
    }

    .city-selector form {
        flex-direction: column;
        gap: 12px;
    }

    .selector-group {
        min-width: 100%;
    }

    .calendar-table th,
    .calendar-table td {
        padding: 10px 6px;
        font-size: 0.85rem;
    }

    .info-box {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Dualar responsive */
    .dua-page {
        background: linear-gradient(180deg, #1a3c34 0%, #2e5e4e 80px, #f1f5f9 80px);
    }

    .dua-header h1 {
        font-size: 1.4rem;
    }

    .esma-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .esma-card {
        padding: 14px 10px;
    }

    .esma-arabic {
        font-size: 1.6rem;
    }

    .esma-name {
        font-size: 0.85rem;
    }

    .esma-meaning {
        font-size: 0.8rem;
    }

    .category-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-btn {
        text-align: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .dua-arabic {
        font-size: 1.25rem;
        padding: 12px;
    }

    .dua-card-body {
        padding: 14px;
    }

    .dua-card-header {
        padding: 12px 14px;
    }

    .dua-card-header h3 {
        font-size: 1rem;
    }

    .dua-text {
        font-size: 0.9rem;
    }

    .ayet-arabic {
        font-size: 1.2rem;
        padding: 14px;
    }

    .ayet-body {
        padding: 14px;
    }

    .ayet-header {
        padding: 12px 14px;
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .ayet-sure {
        font-size: 0.95rem;
    }

    .ayet-text {
        font-size: 0.9rem;
    }

    .daily-dua-inner {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .daily-arabic {
        font-size: 1.1rem;
    }

    .daily-turkish {
        font-size: 0.9rem;
    }

    /* Haber ajansları responsive */
    .agency-header h1 {
        font-size: 1.5rem;
    }

    .agency-news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .agency-news-card .news-title {
        font-size: 16px;
    }

    .agency-news-card .news-summary {
        font-size: 14px;
    }

    .agency-news-card .news-body {
        padding: 14px;
    }

    .source-filter-card h3 {
        font-size: 15px;
        padding: 14px 16px;
    }

    .source-list li a {
        padding: 10px 16px;
        font-size: 14px;
    }

    /* Seçim responsive */
    .election-content {
        grid-template-columns: 1fr;
    }

    .election-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 10px;
    }

    .section-block {
        padding: 12px 10px;
        margin-bottom: 12px;
    }

    .detail-wrapper {
        padding: 12px 10px 20px;
        margin-top: 6px;
    }

    .header-btn {
        width: 40px;
        height: 40px;
        font-size: 15px;
        border-radius: 12px;
    }

    .header-logo::before {
        width: 22px;
    }

    .logo-text-main {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .header-nav-list>li>a {
        padding: 13px 14px;
        font-size: 13px;
        font-weight: 700;
    }

    .header-nav-list>li>a.nav-hot {
        padding-left: 18px;
    }

    .header-nav-list>li>a.nav-hot::before {
        left: 7px;
        width: 4px;
        height: 4px;
    }

    .manset-slider-wrap {
        aspect-ratio: 16/9;
        border-radius: var(--radius-sm);
    }

    .manset-title {
        font-size: 20px !important;
        line-height: 1.3;
    }

    .manset-cat {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 6px;
    }

    .manset-slide-overlay {
        padding: 50px 16px 16px;
    }

    .manset-nav {
        display: none;
    }

    .strip-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .strip-card h3 {
        font-size: 13px;
        padding: 10px 12px;
        line-height: 1.4;
    }

    .news-grid-4,
    .news-grid-3,
    .news-grid-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .news-card {
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid #e5e7eb;
    }

    .news-card:hover {
        transform: none;
    }

    .news-card-image {
        aspect-ratio: 16/9;
    }

    .news-card-body {
        padding: 14px 16px 18px;
    }

    .news-card-body h3 {
        font-size: 17px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 6px;
        -webkit-line-clamp: 3;
    }

    .news-card-excerpt {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.5;
        color: #6b7280;
        -webkit-line-clamp: 2;
    }

    .breaking-label {
        font-size: 11px;
        padding: 0 10px;
    }

    .section-header h2 {
        font-size: 16px;
    }

    .featured-card-overlay h3 {
        font-size: 18px;
    }

    .cat-list-link h4 {
        font-size: 14.5px;
        line-height: 1.4;
    }

    .spor-layout {
        grid-template-columns: 1fr;
    }

    .spor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spor-numbered-item {
        padding: 10px 14px;
        gap: 10px;
    }

    .spor-text {
        font-size: 14px;
    }

    .footer-newsletter {
        padding: 28px 0;
    }

    .newsletter-text h3 {
        font-size: 17px;
    }

    .footer-col h4 {
        font-size: 15px;
    }

    .footer-col ul li a {
        font-size: 14.5px;
        padding: 5px 0;
    }

    .footer-about {
        font-size: 14px;
    }

    .article-hero-title {
        font-size: 22px !important;
    }

    .article-content {
        font-size: 15px;
    }

    .foto-galeri-card {
        flex: 0 0 180px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    /* Category page 480 */
    .cat-page-title {
        font-size: 20px;
    }

    .cat-breadcrumb {
        font-size: 13px;
        padding: 10px 12px;
    }

    .cat-manset-overlay h2 {
        font-size: 18px;
    }

    .cat-news-item-body h3 {
        font-size: 15px;
    }

    .cat-news-item-body p {
        font-size: 13.5px;
    }

    .cat-news-item-body {
        padding: 12px;
    }

    /* Pagination */
    .pagination {
        gap: 4px;
    }

    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }

    /* İftar 480px */
    .iftar-page {
        padding: 16px 0;
        background: linear-gradient(180deg, #1a237e 0%, #283593 90px, #f1f5f9 90px);
    }

    .iftar-header h1 {
        font-size: 1.3rem;
    }

    .countdown-card {
        padding: 20px 12px;
        border-radius: 12px;
    }

    .countdown-icon {
        font-size: 1.8rem;
    }

    .countdown-timer {
        font-size: 1.7rem;
    }

    .times-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .time-card {
        padding: 12px 6px;
        border-radius: 8px;
    }

    .time-icon {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }

    .time-name {
        font-size: 0.65rem;
        letter-spacing: 0;
    }

    .time-value {
        font-size: 1rem;
    }

    .times-section {
        padding: 14px;
    }

    .times-section h2 {
        font-size: 1.05rem;
    }

    .ramadan-calendar {
        padding: 14px;
    }

    .ramadan-calendar h2 {
        font-size: 1.05rem;
    }

    .calendar-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .calendar-table th,
    .calendar-table td {
        padding: 8px 4px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .city-selector {
        padding: 14px;
    }

    /* Dualar 480px */
    .dua-page {
        padding: 16px 0;
        background: linear-gradient(180deg, #1a3c34 0%, #2e5e4e 70px, #f1f5f9 70px);
    }

    .dua-header h1 {
        font-size: 1.2rem;
    }

    .dua-grid {
        gap: 14px;
    }

    .dua-card-header {
        padding: 10px 12px;
    }

    .dua-card-header h3 {
        font-size: 0.95rem;
    }

    .dua-card-body {
        padding: 12px;
    }

    .dua-arabic {
        font-size: 1.1rem;
        padding: 10px;
        line-height: 1.8;
    }

    .dua-label {
        font-size: 0.7rem;
    }

    .dua-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .dua-section.fazileti {
        padding: 10px;
    }

    .tab-btn {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .ayet-arabic {
        font-size: 1.05rem;
        padding: 12px;
        line-height: 2;
    }

    .ayet-body {
        padding: 12px;
    }

    .ayet-text {
        font-size: 0.85rem;
    }

    .esma-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .esma-card {
        padding: 12px 8px;
        border-radius: 8px;
    }

    .esma-arabic {
        font-size: 1.4rem;
    }

    .esma-name {
        font-size: 0.8rem;
    }

    .esma-meaning {
        font-size: 0.72rem;
    }

    .esma-intro {
        padding: 12px;
        font-size: 0.85rem;
    }

    .daily-dua-inner {
        padding: 14px;
        gap: 12px;
    }

    .daily-icon {
        font-size: 2rem;
    }

    .daily-content h4 {
        font-size: 1rem;
    }

    .daily-arabic {
        font-size: 1rem;
    }

    .daily-turkish {
        font-size: 0.85rem;
    }

    /* Haber Ajansları 480px */
    .agency-page {
        padding: 16px 0;
    }

    .agency-header {
        margin-bottom: 16px;
    }

    .agency-header h1 {
        font-size: 1.3rem;
    }

    .agency-header p {
        font-size: 0.85rem;
    }

    .source-filter-card h3 {
        padding: 12px 14px;
        font-size: 14px;
    }

    .source-list li a {
        padding: 10px 14px;
    }

    .source-name {
        font-size: 13px;
    }

    .agency-news-card .news-image {
        aspect-ratio: 16/9;
    }

    .agency-news-card .news-body {
        padding: 12px;
    }

    .agency-news-card .news-title {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 6px;
    }

    .agency-news-card .news-summary {
        font-size: 13px;
        line-height: 1.5;
    }

    .agency-news-card .news-meta {
        margin-bottom: 8px;
    }

    .active-filter {
        padding: 10px 12px;
        font-size: 13px;
    }

    .no-news {
        padding: 40px 16px;
    }

    .no-news i {
        font-size: 36px;
    }

    .no-news h3 {
        font-size: 16px;
    }
}


/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lazy load animation */
.news-card {
    animation: slideUp 0.4s var(--ease) both;
}

.news-card:nth-child(1) {
    animation-delay: 0s;
}

.news-card:nth-child(2) {
    animation-delay: 0.05s;
}

.news-card:nth-child(3) {
    animation-delay: 0.05s;
}

.news-card:nth-child(4) {
    animation-delay: 0.1s;
}

.news-card:nth-child(5) {
    animation-delay: 0.1s;
}

.news-card:nth-child(6) {
    animation-delay: 0.15s;
}

.news-card:nth-child(7) {
    animation-delay: 0.15s;
}

.news-card:nth-child(8) {
    animation-delay: 0.2s;
}


/* ═══════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════ */

@media print {

    .site-header,
    .header-ticker-bar,
    .breaking-news-bar,
    .offcanvas-menu,
    .offcanvas-overlay,
    .back-to-top,
    .site-footer,
    .sidebar,
    .manset-nav,
    .manset-pagination {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .article-content {
        font-size: 12pt;
    }

    img {
        max-width: 100%;
    }
}

/* ═══════════════════════════════════════════════
   LIGHTBOX OVERLAY
   ═══════════════════════════════════════════════ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .5);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, .3);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #ccc;
    font-size: 14px;
    text-align: center;
    max-width: 80%;
    background: rgba(0, 0, 0, .6);
    padding: 8px 18px;
    border-radius: 6px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .12);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, .25);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.news-detail img {
    cursor: zoom-in;
}

/* ═══════════════════════════════════════════════
   READING PROGRESS PERCENTAGE
   ═══════════════════════════════════════════════ */
.reading-progress-pct {
    position: fixed;
    top: 6px;
    right: 18px;
    z-index: 10001;
    background: #b81212;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
    font-family: 'Oswald', sans-serif;
}

.reading-progress-pct.visible {
    opacity: 1;
}

/* ═══════════════════════════════════════════════
   IN-ARTICLE AD SLOTS
   ═══════════════════════════════════════════════ */
.ad-slot-inline {
    margin: 28px 0;
    padding: 18px;
    background: #f8f9fa;
    border: 1px dashed #ddd;
    border-radius: 6px;
    text-align: center;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
    letter-spacing: .5px;
}

.ad-slot-inline::before {
    content: 'REKLAM ALANI';
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    color: #bbb;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════
   TEXT-TO-SPEECH BUTTON
   ═══════════════════════════════════════════════ */
.btn-tts {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    background: #f5f5f5;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all .2s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-tts:hover {
    background: #e0e0e0;
    color: #000;
}

.btn-tts.speaking {
    background: #b81212;
    color: #fff;
    border-color: #b81212;
}

.btn-tts i {
    font-size: 15px;
}

/* ═══════════════════════════════════════════════
   SHARE COUNTERS
   ═══════════════════════════════════════════════ */
.share-count {
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

/* ═══════════════════════════════════════════════
   RELATED NEWS THUMBNAILS (BUNLARA DA BAKIN)
   ═══════════════════════════════════════════════ */
.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px;
}

.related-card {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: box-shadow .2s, transform .2s;
    text-decoration: none;
}

.related-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
}

.related-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f0f0f0;
}

.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.related-card:hover .related-card-img img {
    transform: scale(1.05);
}

.related-card-body {
    padding: 12px;
}

.related-card-body h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 576px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
   BOOKMARK / SAVE BUTTON
   ═══════════════════════════════════════════════ */
.btn-bookmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    background: #f5f5f5;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all .2s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-bookmark:hover {
    background: #e0e0e0;
    color: #000;
}

.btn-bookmark.saved {
    background: #b81212;
    color: #fff;
    border-color: #b81212;
}

.btn-bookmark.saved:hover {
    background: #9a0f0f;
}

.btn-bookmark i {
    font-size: 15px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE TABLE SUPPORT
   ═══════════════════════════════════════════════ */
.news-detail .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px 0;
    border-radius: 4px;
    border: 1px solid #eee;
}

.news-detail table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 480px;
}

.news-detail table th,
.news-detail table td {
    padding: 10px 14px;
    border: 1px solid #e8e8e8;
    text-align: left;
    vertical-align: top;
}

.news-detail table th {
    background: #f8f8f8;
    font-weight: 700;
    font-size: 13px;
    color: #333;
    white-space: nowrap;
}

.news-detail table tr:nth-child(even) {
    background: #fafafa;
}

.news-detail table tr:hover {
    background: #f0f7ff;
}

/* ═══════════════════════════════════════════════
   ENHANCED MOBILE RESPONSIVE v2.0
   ═══════════════════════════════════════════════ */

/* ── Tablet (max-width: 768px) enhancements ── */
@media (max-width: 768px) {

    /* Manşet sidebar hidden on tablet/mobile */
    .manset-sidebar-list {
        display: none;
    }

    .manset-hero-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 0;
    }

    /* Spor layout single column */
    .spor-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .spor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Story bar tighter */
    .story-bar {
        gap: 10px;
        padding: 8px 0;
    }

    /* Video grid 2 cols */
    .video-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .video-card h4 {
        font-size: 13px;
        line-height: 1.35;
    }

    /* Foto galeri smaller cards */
    .foto-galeri-card {
        flex: 0 0 200px;
    }

    /* Popular list compact */
    .popular-item {
        padding: 10px 14px;
    }

    .popular-content h4 {
        font-size: 13px;
    }

    /* Service buttons stack */
    .service-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .service-btn {
        font-size: 12px;
        padding: 10px 8px;
    }
}

/* ── Small phones (max-width: 480px) ── */
@media (max-width: 480px) {

    /* Full-width sections no margin */
    .foto-galeri-section,
    .video-galeri-section {
        margin: 20px 0;
        padding: 24px 0;
    }

    /* Video single column */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .video-card h4 {
        font-size: 14px;
    }

    /* Foto galeri small cards */
    .foto-galeri-card {
        flex: 0 0 180px;
    }

    .foto-galeri-overlay h4 {
        font-size: 12px;
    }

    /* Footer single column */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-main {
        padding: 24px 0 16px;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    /* Spor grid single col */
    .spor-grid {
        grid-template-columns: 1fr;
    }

    /* Breaking news compact */
    .breaking-inner {
        gap: 8px;
    }

    .breaking-label {
        font-size: 10px;
        padding: 0 8px;
        min-width: auto;
    }

    /* Popular sidebar full list */
    .popular-rank {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    /* Section more links */
    .section-more,
    .section-more-light {
        font-size: 12px;
    }

    /* Offcanvas better touch */
    .offcanvas-menu {
        width: 85vw;
        max-width: 320px;
    }

    .offcanvas-nav li a {
        padding: 14px 20px;
        font-size: 15px;
    }

    /* Search popup full width */
    .search-popup-inner {
        width: 92%;
        padding: 20px;
    }

    .search-popup-form input {
        font-size: 16px;
        /* prevents zoom on iOS */
    }

    /* Back to top smaller */
    .back-to-top {
        width: 40px;
        height: 40px;
        right: 12px;
        bottom: 12px;
        font-size: 14px;
    }

    /* cat-featured-main height */
    .cat-featured-main {
        min-height: auto;
        aspect-ratio: 16/9;
    }

    /* Newsletter form stack */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 8px;
    }

    /* Home container spacing */
    .home-container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* ── Ultra-small phones (max-width: 360px) ── */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }

    .strip-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .logo-text-main {
        font-size: 16px;
    }

    .logo-subtitle {
        display: none;
    }

    .header-nav-list>li>a {
        padding: 12px 10px;
        font-size: 12px;
    }

    .news-card-body h3 {
        font-size: 15px;
    }

    .featured-card-overlay h3 {
        font-size: 16px;
    }

    .buyuk-manset-overlay h2 {
        font-size: 1.1rem;
    }

    .buyuk-manset-overlay p {
        display: none;
    }
}

/* ── Touch-friendly enhancements ── */
@media (hover: none) and (pointer: coarse) {

    /* Disable hover transforms on touch */
    .news-card:hover,
    .strip-card:hover,
    .video-card:hover {
        transform: none;
    }

    /* Better tap targets */
    .manset-nav {
        width: 44px;
        height: 44px;
    }

    .foto-nav {
        width: 44px;
        height: 44px;
    }

    /* Smooth scrolling for horizontal lists */
    .story-bar,
    .foto-galeri-track,
    .breaking-track {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .story-item {
        scroll-snap-align: start;
    }

    .foto-galeri-card {
        scroll-snap-align: start;
    }

    /* Manset pagination bigger tap */
    .manset-page-num {
        padding: 12px 0;
        min-height: 44px;
    }
}