/**
 * Vatansoft Ana Sayfa - Tam Sayfa Şablon Stilleri
 * yenivatan.com.au benzeri profesyonel tasarım
 */

/* ===== RESET & TEMA OVERRIDE ===== */
html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
}

body.vatansoft-homepage-template {
    background: var(--gray-100) !important;
}

/* Site wrapper - sticky için önemli */
.vatan-site-wrapper {
    position: relative;
    min-height: 100vh;
}

/* WordPress tema stillerini override et */
body.vatansoft-homepage-template .site,
body.vatansoft-homepage-template .wp-site-blocks,
body.vatansoft-homepage-template main,
body.vatansoft-homepage-template article,
body.vatansoft-homepage-template section,
body.vatansoft-homepage-template .entry-content,
body.vatansoft-homepage-template .wp-block-group,
body.vatansoft-homepage-template .wp-block-template-part {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Sticky header için özel ayarlar */
body.vatansoft-homepage-template .vatan-header {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 99999 !important;
    width: 100% !important;
}

body.vatansoft-homepage-template header:not(.vatan-header),
body.vatansoft-homepage-template footer:not(.vatan-footer),
body.vatansoft-homepage-template .site-header,
body.vatansoft-homepage-template .site-footer {
    display: none !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --red: #c41e3a;
    --red-dark: #a01830;
    --dark: #1a1a2e;
    --dark-light: #16213e;
    --gold: #d4af37;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --text: #212529;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
    --radius: 0;
    --font: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

[data-theme="dark"] {
    --white: #1a1a1a;
    --gray-100: #2d2d2d;
    --gray-200: #3d3d3d;
    --gray-300: #4d4d4d;
    --text: #e9ecef;
}

body.vatansoft-homepage-template {
    font-family: var(--font) !important;
    background: var(--gray-100);
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

/* Başlıklar için Open Sans */
body.vatansoft-homepage-template h1,
body.vatansoft-homepage-template h2,
body.vatansoft-homepage-template h3,
body.vatansoft-homepage-template h4,
body.vatansoft-homepage-template h5,
body.vatansoft-homepage-template h6,
body.vatansoft-homepage-template .section-head h3,
body.vatansoft-homepage-template .news-title,
body.vatansoft-homepage-template .vatan-menu a {
    font-family: 'Open Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif !important;
    font-weight: 700 !important;
}

.vatan-site-wrapper {
    min-height: 100vh;
    position: relative;
    overflow: visible !important;
    height: auto !important;
}

.vatan-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: visible !important;
    /* Sticky sidebar için gerekli */
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s;
}

ul {
    list-style: none;
}

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

/* ===== HEADER ===== */
.vatan-header {
    background: var(--dark);
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 99999 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
}

/* Header Top */
.vatan-header-top {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.header-top-left {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.header-top-left .egazete-link,
.header-top-left .current-date {
    font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif !important;
}

.header-top-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-socials {
    display: flex;
    gap: 5px;
    align-items: center;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 18px;
}

.footer-socials a:hover {
    background: var(--red);
    color: white;
}

.theme-btn,
.search-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 0;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}

.theme-btn:hover,
.search-btn:hover {
    background: var(--red);
}

.theme-btn .dark-icon {
    display: none;
}

[data-theme="dark"] .theme-btn .light-icon {
    display: none;
}

[data-theme="dark"] .theme-btn .dark-icon {
    display: inline;
}

/* Header Main */
.vatan-header-main {
    padding: 20px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

.vatan-header-main .vatan-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.vatan-logo {
    display: block;
}

.vatan-logo-link {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

.logo-text {
    text-align: center;
}

.logo-title {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: white;
    letter-spacing: 6px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-subtitle {
    display: block;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 4px;
    margin-top: 8px;
    text-transform: uppercase;
}

.vatan-logo img {
    max-height: 70px;
}

.header-ad-area {
    flex: 1;
    max-width: 728px;
    text-align: center;
}

/* Navigation */
.vatan-nav {
    background: var(--red);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 0;
    transition: 0.3s;
}

.vatan-menu {
    display: flex;
    width: 100%;
}

.vatan-menu li a {
    display: block;
    padding: 14px 18px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-transform: none !important;
    letter-spacing: 0.5px;
}

.vatan-menu li a:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    width: 90%;
    max-width: 500px;
    position: relative;
}

.search-modal form {
    display: flex;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
}

.search-modal input {
    flex: 1;
    padding: 18px 20px;
    border: none;
    font-size: 16px;
    outline: none;
}

.search-modal button[type="submit"] {
    padding: 18px 25px;
    background: var(--red);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.close-search {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* ===== TOP AD ===== */
.vatan-top-ad {
    background: white;
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

/* ===== FLASH NEWS ===== */
.vatan-flash-bar {
    background: #000;
    overflow: hidden;
}

.vatan-flash-bar .vatan-container {
    display: flex;
    align-items: stretch;
}

.flash-label {
    background: var(--red);
    color: white;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.flash-scroll {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.flash-track {
    display: flex;
    gap: 50px;
    animation: scroll 35s linear infinite;
    white-space: nowrap;
    padding: 0 20px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

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

.flash-item {
    color: white;
    font-size: 14px;
}

.flash-item:hover {
    color: var(--gold);
}

/* ===== MAIN CONTENT ===== */
.vatan-main {
    padding: 25px 0;
    overflow: visible !important;
    /* Sticky sidebar için gerekli */
}

.vatan-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 25px;
    align-items: start;
    /* Sticky sidebar için gerekli */
    overflow: visible;
    /* Sticky için overflow visible olmalı */
}

.vatan-content {
    min-width: 0;
}

/* ===== MANŞET SLIDER ===== */
.manset-section {
    margin-bottom: 30px;
}

.manset-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.manset-slide {
    display: none;
}

.manset-slide.active {
    display: block;
}

.manset-slide a {
    display: block;
    position: relative;
}

.manset-slide img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.manset-placeholder-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.manset-placeholder-image .placeholder-icon {
    font-size: 80px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.manset-placeholder-image .placeholder-text {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
    opacity: 0.8;
}

.manset-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 25px 35px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    z-index: 5;
}

.manset-cat {
    display: inline-block;
    background: #e31e24;
    padding: 7px 16px;
    font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    margin-bottom: 0;
}

.manset-ust-baslik {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.95;
}

.manset-info h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
    margin-top: 15px;
}

/* ===== BÜYÜK MANŞET SLIDER ===== */
.buyuk-manset-section {
    margin-bottom: 30px;
    width: 100%;
    /* Görünür değilse gizle */
    display: none;
}

.buyuk-manset-section[style*="display: block"] {
    display: block !important;
}

.buyuk-manset-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.buyuk-manset-slide {
    display: none;
}

.buyuk-manset-slide.active {
    display: block;
}

.buyuk-manset-slide a {
    display: block;
    position: relative;
    width: 100%;
}

.buyuk-manset-image {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.buyuk-manset-placeholder-image {
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.buyuk-manset-placeholder-image .placeholder-icon {
    font-size: 80px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.buyuk-manset-placeholder-image .placeholder-text {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
    opacity: 0.8;
}

.buyuk-manset-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 25px 35px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    z-index: 5;
}

.buyuk-manset-cat {
    display: inline-block;
    background: var(--red);
    padding: 5px 12px;
    font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    margin-bottom: 0;
}

.buyuk-manset-ust-baslik {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.95;
}

.buyuk-manset-info h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
    margin-top: 15px;
}

.buyuk-manset-pagination {
    background: #020617;
    padding: 0;
    margin-top: -1px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    overflow: hidden;
}

.buyuk-manset-pagination .pagination-numbers {
    justify-content: center;
}

@media (max-width: 768px) {
    .buyuk-manset-info h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .buyuk-manset-info h2 {
        font-size: 16px;
    }
}

/* Slider Navigasyon - Pagination Bar */
.manset-slider {
    position: relative;
}

.slider-pagination-bar {
    background: #020617;
    padding: 0;
    margin-top: -1px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    overflow: hidden;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    justify-content: stretch;
    gap: 0;
    flex-wrap: nowrap;
    padding: 0;
    width: 100%;
}

.manset-section {
    position: relative;
}


.slider-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0;
    cursor: pointer;
    transition: 0.2s;
}

.dot.active,
.dot:hover {
    background: var(--red);
    transform: scale(1.2);
}

/* ===== 5'Lİ YATAY MANŞET SLIDER ===== */
.yatay-manset-section {
    margin-bottom: 30px;
}

.yatay-manset-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.yatay-manset-pagination-left {
    flex-shrink: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-numbers-vertical {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
    align-content: flex-start;
}

.pagination-number-vertical {
    background: #020617;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    flex-shrink: 0;
    /* Width will be set dynamically to match height via inline style */
}

.pagination-number-vertical:hover {
    background: #111827;
}

.pagination-number-vertical.active {
    background: #d90416;
    color: white;
}

.yatay-manset-slider {
    flex: 1;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: transparent;
}

.yatay-manset-slide {
    display: none;
}

.yatay-manset-slide.active {
    display: block;
}

.yatay-manset-slide a {
    display: block;
    position: relative;
}

.yatay-manset-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: stretch;
    height: 100%;
}

.yatay-manset-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.yatay-manset-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    /* Background image kullanıyoruz */
}

.yatay-manset-placeholder-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    z-index: 1;
}

.yatay-manset-placeholder-image .placeholder-icon {
    font-size: 80px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.yatay-manset-placeholder-image .placeholder-text {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
    opacity: 0.8;
}

.yatay-manset-info {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 72%;
    padding: 22px 24px 24px 84px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 44%, rgba(0, 0, 0, 0.28) 74%, transparent 100%);
    color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.yatay-manset-cat {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    margin-bottom: 14px;
    border-radius: 4px;
    background: #e31e24;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.yatay-manset-title {
    margin: 0;
    max-width: 92%;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.16;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.yatay-manset-excerpt {
    margin: 10px 0 0;
    max-width: 88%;
    color: rgba(255, 255, 255, 0.92);
    font-size: 11px;
    line-height: 1.45;
}

.yatay-manset-date {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .yatay-manset-wrapper {
        flex-direction: column;
    }

    .yatay-manset-pagination-left {
        width: 100%;
    }

    .pagination-numbers-vertical {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .pagination-number-vertical {
        width: 45px !important;
        height: 45px !important;
        font-size: 13px;
        font-weight: 400;
    }

    .yatay-manset-image-wrapper {
        flex-direction: column;
    }

    .yatay-manset-info {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 18px 18px 18px 62px;
    }

    .yatay-manset-image {
        position: relative;
        left: 0;
        width: 100%;
        height: 200px;
    }

    .yatay-manset-placeholder-image {
        position: relative;
        left: 0;
        width: 100%;
        height: 200px;
    }

    .yatay-manset-title {
        font-size: 20px;
        max-width: 100%;
    }

    .yatay-manset-excerpt {
        max-width: 100%;
        font-size: 13px;
    }

    .yatay-manset-date {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .yatay-manset-title {
        font-size: 17px;
    }

    .yatay-manset-cat {
        min-height: 24px;
        padding: 0 10px;
        font-size: 10px;
    }

    .pagination-number-vertical {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Numaralı Navigasyon */
.slider-numbers {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pagination-number {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    height: 46px;
    background: #020617;
    border: 0;
    color: #ffffff;
    font-family: 'Metropolis', 'Open Sans', Arial, sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border-radius: 0;
}

.pagination-number:hover {
    background: #111827;
    color: #ffffff;
}

.pagination-number.active {
    background: #d90416;
    color: white;
    font-weight: 900;
}

.pagination-number:last-child {
}

.pagination-number::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 0;
    width: 2px;
    height: 22px;
    background: rgba(255, 255, 255, 0.42);
}

.pagination-number:last-child::after {
    display: none;
}

/* Empty State */
.empty-manset {
    background: var(--white);
    border-radius: var(--radius);
    padding: 60px 30px;
    text-align: center;
}

.empty-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--gray-600);
}

.empty-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.add-news-btn {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 12px 25px;
    border-radius: var(--radius);
    font-weight: 600;
}

.add-news-btn:hover {
    background: var(--red-dark);
}

/* ===== NEWS SECTION ===== */
.news-section {
    margin-bottom: 30px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--red);
}

/* Kategori başlıkları için üstten boşluk (ilk section hariç) */
.home-section-block .section-head,
section+section .section-head,
.news-section+.news-section .section-head,
.cat-section+.cat-section .section-head {
    margin-top: 30px;
}

.section-head h3 {
    font-size: 18px;
    font-weight: 700;
}

.section-head a {
    font-size: 13px;
    color: var(--red);
    font-weight: 600;
}

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

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.2s;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

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

.card-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--red);
    color: white;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

.card-body {
    padding: 15px;
}

.card-body h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.news-card:hover h4 {
    color: var(--red);
}

.card-date {
    font-size: 12px;
    color: var(--gray-600);
}

/* ===== CATEGORY SECTIONS ===== */
.category-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cat-section {
    background: transparent;
    border-radius: var(--radius);
    padding: 0;
    box-shadow: none;
}

.cat-section .section-head {
    border-bottom-width: 2px;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.cat-section .section-head h3 {
    font-size: 16px;
    color: var(--red);
}

.cat-featured {
    margin-bottom: 15px;
}

.featured-img {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
    aspect-ratio: 16/9;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-featured h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.cat-featured:hover h4 {
    color: var(--red);
}

.cat-featured p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

.cat-item {
    padding: 12px 0;
    border-top: 1px solid var(--gray-200);
}

.cat-item a {
    display: flex;
    gap: 12px;
    align-items: center;
}

.item-img {
    width: 70px;
    height: 50px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-item h5 {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.cat-item:hover h5 {
    color: var(--red);
}

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

.sidebar-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.sidebar-box h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
}

/* Weather */
.weather-box h4 {
    font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif !important;
    font-weight: 700 !important;
}

.weather-now {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.weather-now img {
    width: 60px;
    height: 60px;
}

.weather-now strong {
    display: block;
    font-size: 14px;
    font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

.weather-now .temp {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

.weather-week {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    text-align: center;
}

.weather-week .day {
    background: var(--gray-100);
    padding: 10px 5px;
    border-radius: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* Gün adı */
.weather-week .day .day-name {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: normal;
    margin-bottom: 5px;
}

/* Sıcaklık container */
.weather-week .day .day-temps {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: normal;
    margin-top: 5px;
}

/* En düşük sıcaklık */
.weather-week .day .temp-min {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: normal;
}

/* En yüksek sıcaklık */
.weather-week .day .temp-max {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: normal;
}

.weather-week .day img {
    width: 28px;
    height: 28px;
    margin: 5px auto;
}

/* Category News Sidebar */
.category-news-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.category-news-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
}

.category-news-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    border: none;
}

.category-news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.category-news-item {
    border-bottom: 1px solid #f0f0f0;
}

.category-news-item:last-child {
    border-bottom: none;
}

.category-news-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.category-news-link:hover {
    background: transparent;
}

.category-news-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 0;
    overflow: hidden;
    background: #eee;
}

.category-news-content {
    flex: 1;
    min-width: 0;
}

.category-news-headline,
.category-news-content h5 {
    margin: 0;
    font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    color: #1a1a2e !important;
}

.category-news-link:hover .category-news-headline {
    color: var(--red);
}

/* Popular */
.popular-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.popular-item {
    border-bottom: 1px solid #f0f0f0;
}

.popular-item:last-child {
    border-bottom: none;
}

.popular-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.popular-link:hover {
    background: transparent;
}

.popular-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 0;
    overflow: hidden;
    background: #eee;
}

.popular-content {
    flex: 1;
    min-width: 0;
}

.popular-headline,
.popular-content h5 {
    margin: 0;
    font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    color: #1a1a2e !important;
}

.popular-link:hover .popular-headline {
    color: var(--red);
}

.popular-list li:last-child {
    border-bottom: none;
}

.popular-list li::before {
    content: counter(popular);
    min-width: 26px;
    height: 26px;
    background: var(--red);
    color: white;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.popular-list li a {
    font-size: 13px;
    line-height: 1.4;
}

.popular-list li:hover a {
    color: var(--red);
}

/* Translate */
.translate-box {
    text-align: center;
}

/* Ad Box */
.ad-box {
    text-align: center;
    padding: 15px;
}

/* ===== FOOTER ===== */
.vatan-footer {
    background: var(--dark);
    color: white;
    padding: 40px 0 0;
    margin-top: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col ul li,
.footer-col p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-btn {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius);
    margin-top: 10px;
}

.footer-btn:hover {
    background: var(--red-dark);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .vatan-grid {
        grid-template-columns: 1fr;
    }

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

    .header-ad-area {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .vatan-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--red-dark);
        flex-direction: column;
    }

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

    .vatan-menu li a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .category-sections {
        grid-template-columns: 1fr;
    }

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

    .vatan-sidebar {
        grid-template-columns: 1fr;
    }

    .manset-info h2 {
        font-size: 20px;
    }

    .logo-title {
        font-size: 36px;
    }
}

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

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

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

    .manset-info h2 {
        font-size: 16px;
    }

    .logo-title {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .logo-subtitle {
        font-size: 9px;
        letter-spacing: 2px;
    }
}

/* ===== CATEGORY MODULES ===== */
.category-module {
    margin-bottom: 50px;
}

.category-slider {
    position: relative;
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.slider-slide {
    min-width: 100%;
    flex-shrink: 0;
    width: 100%;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.pagination-dot {
    font-family: Arial, sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 21px !important;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-dot.active {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* MAGAZİN Module */
.magazin-module {
    padding: 0;
}

.magazin-module .pagination-dot.active {
    background: #c41e3a;
    color: #fff;
}

/* BİLİM-TEKNOLOJİ Module */
.bilim-module {
    padding: 0;
}

.bilim-module .pagination-dot.active {
    background: #c41e3a;
    color: #fff;
}

/* AVUSTRALYA Slider */
.avustralya-slider {
    border-radius: 0;
    overflow: hidden;
}

.avustralya-slider-track {
    display: flex !important;
}

.avustralya-slide {
    min-width: 100% !important;
    flex-shrink: 0;
}

.avustralya-dot.active {
    background: #fff !important;
    opacity: 1 !important;
}

/* Responsive: Magazin ve Bilim yan yana */
@media (max-width: 992px) {
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    div[style*="grid-template-columns: 1fr 1fr"]>section {
        margin-bottom: 50px;
    }

    div[style*="grid-template-columns: 1fr 1fr"]>section:last-child {
        margin-bottom: 0;
    }
}

/* Spot/Özetler için PT Sans */
.slide-excerpt,
.news-excerpt,
.news-excerpt-block,
p.slide-excerpt,
.news-content p {
    font-family: 'PT Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: rgb(35, 35, 35) !important;
    line-height: 24px !important;
}

.crime-showcase-module > div:first-child {
    grid-template-columns: 300px minmax(0, 1fr) !important;
}

.crime-showcase-module h2 {
    font-size: 80px !important;
    line-height: 0.95 !important;
    letter-spacing: -2.4px !important;
}

.crime-showcase-module > div:first-child > div:last-child p {
    font-size: 15px !important;
    line-height: 1.35 !important;
}

.crime-showcase-module > div:first-child > div:last-child a {
    font-size: 16px !important;
}

#crimeStoppersShowcase h3,
#crimeStoppersShowcase h3 a {
    text-transform: none !important;
    text-decoration: none !important;
}

#crimeStoppersShowcase h3 a {
    font-size: 29px !important;
    line-height: 1.08 !important;
}

#crimeStoppersShowcase a[style*="Read More"],
#crimeStoppersShowcase article a:last-child {
    font-size: 14px !important;
}

@media (max-width: 767px) {
    .crime-showcase-module h2 {
        font-size: 52px !important;
        line-height: 0.96 !important;
    }
}
