﻿/* ============ HABER SİTESİ — KLASİK ŞABLON ============ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@300;400;500;600&display=swap');

.hs-root * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hs-root {
    font-family: 'Inter', sans-serif;
    background: #f8f7f4;
    color: #1a1a1a;
    min-height: 100vh;
}

/* ---- BREAKING BAND ---- */
.hs-breaking {
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    height: 34px;
    overflow: hidden;
}

.hs-breaking-label {
    background: #c0392b;
    padding: 0 16px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    gap: 6px;
}

.hs-breaking-ticker {
    flex: 1;
    overflow: hidden;
    padding: 0 16px;
}

.hs-ticker-inner {
    display: flex;
    gap: 48px;
    animation: ticker 35s linear infinite;
    white-space: nowrap;
}

    .hs-ticker-inner span {
        font-size: 12px;
        color: #ccc;
    }

        .hs-ticker-inner span::before {
            content: "/ ";
            color: #c0392b;
            font-weight: 700;
            margin-right: 4px;
        }

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---- HEADER ---- */
.hs-header {
    background: #fff;
    border-bottom: 1px solid #e8e6e0;
}

.hs-header-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 16px 48px;
    border-bottom: 1px solid #f0ede8;
}

.hs-date {
    font-size: 11px;
    color: #999;
    letter-spacing: 0.5px;
}

.hs-masthead {
    text-align: center;
}

.hs-masthead-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    color: #1a1a1a;
}

.hs-masthead-tagline {
    font-size: 10px;
    color: #bbb;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

.hs-header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.hs-search-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #e8e6e0;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #888;
    font-size: 14px;
    transition: all 0.15s;
}

    .hs-search-btn:hover {
        background: #f5f3ee;
        color: #1a1a1a;
    }

/* ---- NAV ---- */
.hs-nav-wrapper {
    background: #fff;
    border-bottom: 3px solid #1a1a1a;
}

.hs-nav {
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: 1400px;
    margin: 0 auto;
}

    .hs-nav::-webkit-scrollbar {
        display: none;
    }

    .hs-nav a {
        color: #555;
        text-decoration: none;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        padding: 14px 18px;
        white-space: nowrap;
        transition: color 0.15s;
        border-bottom: 3px solid transparent;
        margin-bottom: -3px;
        display: block;
    }

        .hs-nav a:hover {
            color: #1a1a1a;
        }

        .hs-nav a.active {
            color: #c0392b;
            border-bottom-color: #c0392b;
        }

/* Hamburger */
.hs-nav-toggle {
    display: none;
    width: 100%;
    background: transparent;
    border: none;
    color: #444;
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
}

.hs-nav-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .hs-nav-toggle-icon span {
        display: block;
        width: 18px;
        height: 1.5px;
        background: #444;
        border-radius: 2px;
        transition: transform 0.2s, opacity 0.2s;
    }

.hs-nav-toggle.open .hs-nav-toggle-icon span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.hs-nav-toggle.open .hs-nav-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.hs-nav-toggle.open .hs-nav-toggle-icon span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

.hs-nav-mobile {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #f0ede8;
}

    .hs-nav-mobile.open {
        display: flex;
    }

    .hs-nav-mobile a {
        color: #444;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        padding: 13px 20px;
        border-bottom: 1px solid #f5f3ee;
        transition: color 0.15s, background 0.15s;
    }

        .hs-nav-mobile a:hover, .hs-nav-mobile a.active {
            color: #c0392b;
            background: #fdf9f9;
            padding-left: 24px;
        }

/* ---- MAIN ---- */
.hs-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 36px 48px;
}

/* ---- MANŞET ---- */
.hs-headline-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0;
    border: 1px solid #e8e6e0;
    margin-bottom: 40px;
    background: #fff;
}

.hs-main-story {
    border-right: 1px solid #e8e6e0;
    display: flex;
    flex-direction: column;
}

.hs-main-story-img {
    width: 100%;
    height: 400px;
    background: linear-gradient(160deg, #1a2a4a 0%, #2c5282 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

    .hs-main-story-img::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.75));
    }

.hs-img-placeholder {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
}

.hs-img-caption {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.55);
    font-size: 10px;
    letter-spacing: 0.5px;
}

.hs-main-story-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hs-cat-label {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-bottom: 12px;
    color: #fff;
}

.hs-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: #1a1a1a;
    flex: 1;
}

.hs-lead {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.hs-byline {
    font-size: 11px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

    .hs-byline strong {
        color: #555;
        font-weight: 600;
    }

.hs-byline-dot {
    opacity: 0.4;
}

/* Sağ Sütun */
.hs-side-stories {
    display: flex;
    flex-direction: column;
}

.hs-side-story {
    flex: 1;
    padding: 20px;
    border-bottom: 1px solid #f0ede8;
    display: flex;
    flex-direction: column;
    transition: background 0.15s;
}

    .hs-side-story:last-child {
        border-bottom: none;
    }

    .hs-side-story:hover {
        background: #fdfcfa;
    }

.hs-side-story-img {
    width: 100%;
    height: 90px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    flex-shrink: 0;
}

.hs-side-img-1 {
    background: linear-gradient(135deg, #4a1942, #8e44ad);
}

.hs-side-img-2 {
    background: linear-gradient(135deg, #1a3a2a, #27ae60);
}

.hs-side-img-3 {
    background: linear-gradient(135deg, #3a1a1a, #c0392b);
}

.hs-side-title {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.hs-side-meta {
    font-size: 10px;
    color: #bbb;
    margin-top: auto;
}

/* ---- BÖLÜM BAŞLIĞI ---- */
.hs-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hs-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 900;
    color: #1a1a1a;
    white-space: nowrap;
}

.hs-section-line {
    flex: 1;
    height: 1px;
    background: #e8e6e0;
}

/* ---- SON HABERLER GRID ---- */
.hs-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.hs-list-stories {
    display: flex;
    flex-direction: column;
}

.hs-list-story {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0ede8;
    align-items: start;
    transition: opacity 0.15s;
}

    .hs-list-story:hover {
        opacity: 0.8;
    }

.hs-list-img {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: rgba(255,255,255,0.4);
}

.hs-list-img-1 {
    background: linear-gradient(135deg, #1a3a4a, #2980b9);
}

.hs-list-img-2 {
    background: linear-gradient(135deg, #3a1a1a, #e74c3c);
}

.hs-list-img-3 {
    background: linear-gradient(135deg, #2a3a1a, #27ae60);
}

.hs-list-img-4 {
    background: linear-gradient(135deg, #2a1a3a, #9b59b6);
}

.hs-list-title {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.hs-list-excerpt {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 6px;
}

.hs-list-meta {
    font-size: 10px;
    color: #bbb;
}

/* ---- SIDEBAR ---- */
.hs-sidebar-widget {
    border: 1px solid #e8e6e0;
    background: #fff;
    margin-bottom: 20px;
}

.hs-widget-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    padding: 14px 18px;
    border-bottom: 2px solid #1a1a1a;
    background: #fdfcfa;
}

.hs-trending-item {
    display: flex;
    gap: 12px;
    align-items: start;
    padding: 12px 18px;
    border-bottom: 1px solid #f5f3ee;
}

    .hs-trending-item:last-child {
        border-bottom: none;
    }

.hs-trending-num {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    color: #ece9e3;
    line-height: 1;
    min-width: 28px;
}

.hs-trending-title {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    color: #333;
    padding-top: 2px;
}

/* Yakında widget */
.hs-coming-soon {
    padding: 28px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hs-coming-soon-icon {
    font-size: 28px;
    opacity: 0.3;
}

.hs-coming-soon-text {
    font-size: 12px;
    color: #bbb;
    line-height: 1.5;
}

.hs-coming-soon-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c0392b;
    border: 1px solid #c0392b33;
    padding: 3px 10px;
    border-radius: 2px;
    margin-top: 4px;
}

/* ---- FOOTER ---- */
.hs-footer {
    background: #1a1a1a;
    color: #666;
    padding: 48px;
    margin-top: 48px;
}

.hs-footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 28px;
}

.hs-footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.hs-footer-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #555;
}

.hs-footer-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 16px;
}

.hs-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .hs-footer-links a {
        color: #555;
        text-decoration: none;
        font-size: 13px;
        transition: color 0.15s;
    }

        .hs-footer-links a:hover {
            color: #fff;
        }

.hs-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #444;
}

/* ============ MOBİL ============ */
@media (max-width: 1100px) {
    .hs-headline-grid {
        grid-template-columns: 1fr 280px;
    }

    .hs-bottom-grid {
        grid-template-columns: 1fr 260px;
        gap: 24px;
    }

    .hs-main {
        padding: 28px 32px;
    }

    .hs-header-top {
        padding: 14px 32px;
    }

    .hs-nav {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .hs-header-top {
        padding: 12px 16px;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 8px;
    }

    .hs-header-right {
        justify-content: center;
    }

    .hs-date {
        order: 2;
    }

    .hs-masthead {
        order: 1;
    }

    .hs-masthead-name {
        font-size: 40px;
    }

    .hs-nav {
        display: none;
    }

    .hs-nav-toggle {
        display: flex;
    }

    .hs-main {
        padding: 20px 16px;
    }

    .hs-headline-grid {
        grid-template-columns: 1fr;
        border: none;
        gap: 0;
        background: transparent;
    }

    .hs-main-story {
        border-right: none;
        border: 1px solid #e8e6e0;
        margin-bottom: 2px;
        background: #fff;
    }

    .hs-main-story-img {
        height: 220px;
    }

    .hs-img-placeholder {
        font-size: 32px;
    }

    .hs-side-stories {
        border: 1px solid #e8e6e0;
        background: #fff;
    }

    .hs-side-story-img {
        height: 70px;
    }

    .hs-bottom-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hs-sidebar {
        margin-top: 32px;
    }

    .hs-list-story {
        grid-template-columns: 84px 1fr;
        gap: 12px;
    }

    .hs-list-img {
        height: 60px;
    }

    .hs-list-title {
        font-size: 13px;
    }

    .hs-list-excerpt {
        display: none;
    }

    .hs-footer {
        padding: 32px 16px;
    }

    .hs-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .hs-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hs-breaking-label {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hs-masthead-name {
        font-size: 32px;
    }

    .hs-headline {
        font-size: 20px;
    }

    .hs-footer-grid {
        grid-template-columns: 1fr;
    }

    .hs-list-story {
        grid-template-columns: 72px 1fr;
    }
}
