:root {
    --bg: #f6f8fc;
    --surface: #ffffff;
    --surface-soft: #eef4ff;
    --border: #e2e8f0;
    --text: #0f172a;
    --muted: #64748b;
    --primary: #2563eb;
    --primary-soft: #e8f0ff;
    --accent: #ef4444;
    --shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    --radius-xl: 26px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

img {
    max-width: 100%;
}

.site-shell {
    min-height: 100vh;
}

.section-space {
    padding: 56px 0;
}

.section-space-top {
    padding-top: 32px;
    padding-bottom: 56px;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(238,244,255,0.9) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.site-topbar {
    background: #0f172a;
    color: #dbe4f0;
    font-size: 13px;
}

.site-topbar__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-topbar__left,
.site-topbar__right {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .site-topbar__right a {
        color: #dbe4f0;
        transition: .2s ease;
    }

        .site-topbar__right a:hover {
            color: #fff;
            transform: translateY(-1px);
        }

.topbar-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-weight: 700;
}

.site-branding {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.site-branding__inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.site-brand__logo img {
    width: auto;
    height: 56px;
    object-fit: contain;
    display: block;
}

.site-brand__textlogo {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

.site-brand__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

    .site-brand__text strong {
        font-size: 24px;
        line-height: 1.1;
    }

.site-brand__tagline {
    color: var(--muted);
    font-size: 14px;
    margin-top: 2px;
}

.site-search__form {
    min-width: 360px;
    height: 48px;
    border-radius: 999px;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 8px 0 16px;
    gap: 10px;
}

    .site-search__form i {
        color: var(--muted);
        font-size: 15px;
    }

    .site-search__form input {
        flex: 1 1 auto;
        height: 100%;
        border: 0;
        outline: 0;
        background: transparent;
        color: var(--text);
        font-size: 14px;
    }

    .site-search__form button {
        border: 0;
        outline: 0;
        height: 36px;
        padding: 0 16px;
        border-radius: 999px;
        background: var(--primary);
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
    }

.site-search__form--mobile {
    min-width: 100%;
    margin-top: 16px;
}

.site-nav-wrapper {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.site-nav .nav-link {
    color: var(--text);
    font-weight: 700;
    padding: 18px 16px !important;
    font-size: 15px;
}

    .site-nav .nav-link:hover,
    .site-nav .nav-link:focus {
        color: var(--primary);
    }

.site-nav .dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 10px;
    margin-top: 10px;
}

.site-nav .dropdown-item {
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 600;
}

    .site-nav .dropdown-item:hover {
        background: var(--surface-soft);
        color: var(--primary);
    }

.site-nav__toggler {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px 12px;
    background: #fff;
    color: var(--text);
}

.site-mobile-brand {
    font-weight: 800;
}

.breaking-strip {
    padding-top: 22px;
}

.breaking-strip__inner {
    min-height: 56px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.breaking-strip__badge {
    flex: 0 0 auto;
    min-width: 190px;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, #f97316 100%);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .04em;
}

.breaking-strip__badge--danger {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
}

.breaking-strip__ticker {
    overflow: hidden;
    width: 100%;
}

.breaking-strip__track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: tickerMove 34s linear infinite;
}

.breaking-strip__inner:hover .breaking-strip__track {
    animation-play-state: paused;
}

.breaking-strip__item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    color: var(--text);
    padding: 0 22px;
    font-weight: 700;
    font-size: 15px;
    position: relative;
}

    .breaking-strip__item::after {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--primary);
        position: absolute;
        right: -3px;
    }

@keyframes tickerMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-card,
.mini-card,
.stack-card,
.ranking-card,
.news-card,
.category-tabs-card,
.empty-state,
.footer-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-card {
    overflow: hidden;
}

.hero-card__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-card__body {
    padding: 24px 24px 26px;
}

.hero-card__title {
    font-size: 2.15rem;
    line-height: 1.14;
    margin: 14px 0 14px;
    font-weight: 800;
    max-width: 95%;
}

    .hero-card__title a,
    .mini-card__title a,
    .stack-card__title a,
    .ranking-item__title a,
    .news-card__title a {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: color .2s ease;
    }

    .hero-card__title a {
        -webkit-line-clamp: 3;
    }

.hero-card__summary {
    color: var(--muted);
    margin: 0;
    font-size: 1rem;
}

.news-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.news-badge--soft {
    background: var(--primary-soft);
    color: var(--primary);
}

.mini-card {
    overflow: hidden;
    height: 100%;
}

.mini-card__image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.mini-card__body {
    padding: 16px;
}

.mini-card__title {
    font-size: 1rem;
    line-height: 1.38;
    margin: 12px 0 0;
    font-weight: 800;
    min-height: 84px;
    overflow: hidden;
}

    .mini-card__title a {
        -webkit-line-clamp: 3;
    }

.hero-news .stack-list {
    width: 100%;
    max-width: none;
}

.stack-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stack-card {
    display: flex;
    gap: 14px;
    padding: 14px;
}

.stack-card__image {
    flex: 0 0 132px;
    max-width: 132px;
}

    .stack-card__image img {
        width: 132px;
        height: 110px;
        object-fit: cover;
        display: block;
        border-radius: 12px;
    }

.stack-card__body {
    min-width: 0;
    flex: 1 1 auto;
}

.stack-card__title {
    font-size: 1.05rem;
    line-height: 1.35;
    margin: 12px 0 0;
    font-weight: 800;
}

    .stack-card__title a {
        -webkit-line-clamp: 4;
    }

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.section-head--with-button {
    align-items: center;
}

.section-head__eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    margin-bottom: 6px;
}

.section-head__title {
    margin: 0;
    font-size: 1.85rem;
    line-height: 1.2;
    font-weight: 800;
}

.read-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    white-space: nowrap;
}

    .read-all-btn:hover {
        color: #fff;
        transform: translateY(-1px);
    }

.ranking-card {
    overflow: hidden;
}

.ranking-card__head {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}

    .ranking-card__head h3 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 800;
    }

.ranking-list {
    padding: 10px 16px 14px;
}

.ranking-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

    .ranking-item:last-child {
        border-bottom: 0;
    }

.ranking-item__number {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.ranking-item__image {
    flex: 0 0 110px;
    max-width: 110px;
}

    .ranking-item__image img {
        width: 110px;
        height: 82px;
        object-fit: cover;
        display: block;
        border-radius: 12px;
    }

.ranking-item__body {
    min-width: 0;
    flex: 1 1 auto;
}

.ranking-item__title {
    font-size: 1rem;
    line-height: 1.35;
    margin: 10px 0 0;
    font-weight: 800;
}

    .ranking-item__title a {
        -webkit-line-clamp: 3;
    }

.category-tabs-card {
    padding: 20px;
}

.category-tabs-nav {
    gap: 10px;
    border-bottom: 0;
    margin-bottom: 10px;
}

    .category-tabs-nav .nav-link {
        border: 0;
        background: var(--surface-soft);
        color: var(--text);
        border-radius: 999px;
        padding: 10px 16px;
        font-weight: 700;
    }

        .category-tabs-nav .nav-link.active {
            background: var(--primary);
            color: #fff;
        }

.news-card {
    overflow: hidden;
    height: 100%;
}

.news-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.news-card__body {
    padding: 18px;
}

.news-card__title {
    font-size: 1.08rem;
    line-height: 1.4;
    font-weight: 800;
    margin: 12px 0 12px;
    min-height: 92px;
    overflow: hidden;
}

    .news-card__title a {
        -webkit-line-clamp: 3;
    }

.news-card__summary {
    color: var(--muted);
    margin: 0;
    font-size: .95rem;
}

.news-card__stats {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    font-size: 13px;
}

    .news-card__stats i {
        margin-right: 6px;
        color: var(--primary);
    }

.empty-state {
    padding: 56px 24px;
    text-align: center;
}

    .empty-state h1 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .empty-state p {
        color: var(--muted);
        margin: 0;
    }

.site-footer {
    padding: 28px 0 32px;
    border-top: 1px solid var(--border);
    background: #f1f5fb;
}

.footer-panel {
    padding: 26px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 28px;
}

.footer-brand {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

    .footer-brand img {
        width: auto;
        height: 54px;
        object-fit: contain;
    }

    .footer-brand strong {
        display: block;
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .footer-brand p {
        margin: 0;
        color: var(--muted);
    }

.footer-panel h4 {
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 800;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .footer-tags a {
        display: inline-flex;
        align-items: center;
        min-height: 38px;
        padding: 0 14px;
        border-radius: 999px;
        background: var(--surface-soft);
        color: var(--text);
        font-weight: 700;
        font-size: 13px;
    }

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .footer-socials a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--surface-soft);
        color: var(--primary);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }

.site-footer__bottom {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.hero-card__title a:hover,
.mini-card__title a:hover,
.stack-card__title a:hover,
.ranking-item__title a:hover,
.news-card__title a:hover,
.breaking-strip__item:hover {
    color: var(--primary);
}

@media (max-width: 1199.98px) {
    .site-search__form {
        min-width: 300px;
    }

    .hero-card__title {
        font-size: 1.95rem;
    }

    .footer-panel {
        grid-template-columns: 1fr 1fr;
    }

    .footer-panel__right {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-news .stack-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hero-news .stack-card {
        height: 100%;
        margin: 0;
        padding: 12px;
    }

        .hero-news .stack-card:last-child:nth-child(odd) {
            grid-column: 1 / -1;
        }

    .hero-news .stack-card__image {
        flex: 0 0 104px;
        max-width: 104px;
    }

        .hero-news .stack-card__image img {
            width: 104px;
            height: 82px;
        }

    .hero-news .stack-card__title {
        font-size: 0.96rem;
        line-height: 1.32;
    }
}

@media (max-width: 991.98px) {
    .site-branding__inner {
        min-height: 82px;
    }

    .hero-card__image img {
        height: 380px;
    }

    .section-head__title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .site-topbar {
        display: none;
    }

    .site-branding__inner {
        min-height: 74px;
        justify-content: center;
    }

    .site-brand {
        width: 100%;
        justify-content: center;
    }

    .site-brand__logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .site-brand__text {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .site-brand__logo img,
    .footer-brand img {
        height: 42px;
    }

    .site-brand__text strong {
        font-size: 20px;
    }

    .site-brand__tagline {
        font-size: 13px;
        width: 100%;
        text-align: center;
    }

    .section-space,
    .section-space-top {
        padding: 36px 0;
    }

    .breaking-strip__inner {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
    }

    .breaking-strip__badge {
        min-width: 100%;
        min-height: 48px;
    }

    .breaking-strip__ticker {
        padding: 12px 0;
    }

    .hero-card__image img {
        height: 280px;
    }

    .hero-card__body {
        padding: 18px;
    }

    .hero-card__title {
        font-size: 1.55rem;
        max-width: 100%;
    }

    .stack-card {
        padding: 12px;
    }

    .stack-card__image {
        flex: 0 0 96px;
        max-width: 96px;
    }

        .stack-card__image img {
            width: 96px;
            height: 86px;
        }

    .ranking-item__image {
        flex: 0 0 92px;
        max-width: 92px;
    }

        .ranking-item__image img {
            width: 92px;
            height: 74px;
        }

    .news-card__image img,
    .mini-card__image img {
        height: 190px;
    }

    .section-head,
    .section-head--with-button {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-panel {
        grid-template-columns: 1fr;
    }
}

/*sonhaber*/
.breaking-page__hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.breaking-page__eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.breaking-page__title {
    margin: 0;
    font-size: 2.35rem;
    line-height: 1.1;
    font-weight: 800;
}

.breaking-page__summary {
    margin: 10px 0 0;
    color: var(--muted);
    max-width: 760px;
}

.breaking-page__status {
    min-width: 180px;
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-align: right;
}

.breaking-page__status-label {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 4px;
}

.breaking-page__status strong {
    font-size: 1.05rem;
    font-weight: 800;
}

.breaking-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
}

.breaking-card__image {
    position: relative;
    display: block;
}

    .breaking-card__image img {
        width: 100%;
        height: 235px;
        object-fit: cover;
        display: block;
    }

.breaking-card__clock {
    position: absolute;
    top: 14px;
    right: 14px;
    min-width: 64px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.86);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    backdrop-filter: blur(6px);
}

.breaking-card__body {
    padding: 18px;
}

.breaking-card__title {
    margin: 12px 0 12px;
    font-size: 1.18rem;
    line-height: 1.35;
    font-weight: 800;
}

    .breaking-card__title a {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        transition: color .2s ease;
    }

        .breaking-card__title a:hover {
            color: var(--primary);
        }

.breaking-card__summary {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
}

.breaking-widget {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.breaking-widget__head {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}

    .breaking-widget__head h3 {
        margin: 0;
        font-size: 1.08rem;
        font-weight: 800;
    }

.breaking-widget__body {
    padding: 14px;
}

.breaking-side-card {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

    .breaking-side-card:last-child {
        border-bottom: 0;
    }

.breaking-side-card__image {
    position: relative;
    flex: 0 0 104px;
    max-width: 104px;
}

    .breaking-side-card__image img {
        width: 104px;
        height: 82px;
        object-fit: cover;
        display: block;
        border-radius: 12px;
    }

.breaking-side-card__clock {
    position: absolute;
    left: 8px;
    top: 8px;
    min-width: 46px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.86);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.breaking-side-card__body {
    min-width: 0;
    flex: 1 1 auto;
}

.breaking-side-card__title {
    margin: 10px 0 0;
    font-size: .98rem;
    line-height: 1.34;
    font-weight: 800;
}

    .breaking-side-card__title a {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        transition: color .2s ease;
    }

        .breaking-side-card__title a:hover {
            color: var(--primary);
        }

@media (max-width: 1199.98px) {
    .breaking-page__hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .breaking-page__status {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .breaking-page__title {
        font-size: 1.8rem;
    }

    .breaking-card__image img {
        height: 220px;
    }

    .breaking-card__clock {
        top: 12px;
        right: 12px;
        min-width: 58px;
        height: 32px;
        font-size: 12px;
    }

    .breaking-side-card__image {
        flex: 0 0 92px;
        max-width: 92px;
    }

        .breaking-side-card__image img {
            width: 92px;
            height: 74px;
        }
}

/*son haber son*/
/*arch've*/

.archive-page {
    min-height: 60vh;
}

.archive-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.archive-hero__title {
    margin: 0;
    font-size: 2.3rem;
    line-height: 1.1;
    font-weight: 800;
}

.archive-hero__summary {
    margin: 12px 0 0;
    color: var(--muted);
    max-width: 760px;
}

.archive-hero__meta {
    min-width: 180px;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-align: right;
}

    .archive-hero__meta strong {
        display: block;
        font-size: 1.8rem;
        line-height: 1;
        font-weight: 800;
    }

    .archive-hero__meta span {
        display: block;
        color: var(--muted);
        margin-top: 6px;
        font-size: 13px;
    }

.archive-search-box {
    margin-bottom: 18px;
}

.archive-search-form {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

    .archive-search-form input {
        flex: 1 1 auto;
        height: 48px;
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 0 16px;
        outline: none;
        background: #fff;
        color: var(--text);
    }

    .archive-search-form button {
        border: 0;
        height: 48px;
        padding: 0 22px;
        border-radius: 14px;
        background: var(--primary);
        color: #fff;
        font-weight: 800;
    }

.archive-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.archive-filter {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

    .archive-filter.active {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
    }

.archive-card {
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.archive-card__image {
    display: block;
}

    .archive-card__image img,
    .archive-card__placeholder {
        width: 100%;
        height: 230px;
        display: block;
    }

    .archive-card__image img {
        object-fit: cover;
    }

.archive-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-soft);
    color: var(--muted);
    font-weight: 700;
}

.archive-card__body {
    padding: 18px;
}

.archive-card__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.archive-card__category {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.archive-card__date {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 10px;
}

.archive-card__title {
    margin: 0 0 12px;
    font-size: 1.12rem;
    line-height: 1.4;
    font-weight: 800;
    min-height: 94px;
    overflow: hidden;
}

    .archive-card__title a {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        transition: color .2s ease;
    }

        .archive-card__title a:hover {
            color: var(--primary);
        }

.archive-card__summary {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
    min-height: 72px;
}

.archive-card__footer {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    font-size: 13px;
}

    .archive-card__footer i {
        margin-right: 6px;
        color: var(--primary);
    }

.archive-pagination {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.archive-pagination__item {
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 700;
    box-shadow: var(--shadow);
}

    .archive-pagination__item.active {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
    }

    .archive-pagination__item.disabled {
        pointer-events: none;
        opacity: .45;
    }

@media (max-width: 991.98px) {
    .archive-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .archive-hero__meta {
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .archive-hero__title {
        font-size: 1.8rem;
    }

    .archive-search-form {
        flex-direction: column;
    }

        .archive-search-form button {
            width: 100%;
        }

    .archive-card__image img,
    .archive-card__placeholder {
        height: 210px;
    }

    .archive-card__title {
        min-height: auto;
    }

    .archive-card__summary {
        min-height: auto;
    }
}

/*son arch\ve*/

/*detail*/

.detail-page {
    min-height: 60vh;
}

.detail-hero__wrap {
    max-width: 980px;
}

.detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 16px;
}

    .detail-breadcrumb a:hover {
        color: var(--primary);
    }

.detail-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 13px;
}

.detail-hero__title {
    margin: 0;
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 800;
    max-width: 980px;
}

.detail-hero__summary {
    margin: 18px 0 0;
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--muted);
    max-width: 860px;
}

.detail-article {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.detail-media img,
.detail-media iframe,
.detail-media video {
    width: 100%;
    display: block;
}

.detail-media img {
    max-height: 520px;
    object-fit: cover;
}

.detail-media iframe,
.detail-media video {
    height: 520px;
    background: #000;
}

.detail-content {
    padding: 28px;
    font-size: 1.04rem;
    line-height: 1.9;
    color: var(--text);
    word-break: break-word;
}

    .detail-content > *:first-child {
        margin-top: 0 !important;
    }

    .detail-content > *:last-child {
        margin-bottom: 0 !important;
    }

    .detail-content h1,
    .detail-content h2,
    .detail-content h3,
    .detail-content h4,
    .detail-content h5,
    .detail-content h6 {
        color: var(--text);
        font-weight: 800;
        line-height: 1.3;
        margin-top: 28px;
        margin-bottom: 14px;
    }

    .detail-content h2 {
        font-size: 1.8rem;
    }

    .detail-content h3 {
        font-size: 1.45rem;
    }

    .detail-content p {
        margin-bottom: 18px;
    }

    .detail-content img {
        max-width: 100%;
        height: auto;
        border-radius: 18px;
        margin: 22px 0;
    }

    .detail-content iframe,
    .detail-content video {
        width: 100%;
        max-width: 100%;
        border-radius: 18px;
        margin: 22px 0;
    }

    .detail-content ul,
    .detail-content ol {
        padding-left: 22px;
        margin-bottom: 18px;
    }

    .detail-content li {
        margin-bottom: 8px;
    }

    .detail-content blockquote {
        margin: 24px 0;
        padding: 20px 22px;
        border-left: 4px solid var(--primary);
        background: var(--surface-soft);
        border-radius: 0 16px 16px 0;
        color: var(--text);
        font-weight: 500;
    }

    .detail-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 24px 0;
        display: block;
        overflow-x: auto;
    }

        .detail-content table td,
        .detail-content table th {
            border: 1px solid var(--border);
            padding: 12px;
            background: #fff;
        }

    .detail-content a {
        color: var(--primary);
        text-decoration: underline;
    }

.detail-tags {
    padding: 0 28px 28px;
}

    .detail-tags h3 {
        margin: 0 0 12px;
        font-size: 1.05rem;
        font-weight: 800;
    }

.detail-tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .detail-tags__list span {
        display: inline-flex;
        align-items: center;
        min-height: 38px;
        padding: 0 14px;
        border-radius: 999px;
        background: var(--surface-soft);
        color: var(--primary);
        font-size: 13px;
        font-weight: 700;
    }

.detail-bottom-nav {
    padding: 0 28px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.detail-bottom-nav__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
}

    .detail-bottom-nav__btn:hover {
        color: #fff;
    }

.detail-bottom-nav__btn--soft {
    background: var(--surface-soft);
    color: var(--primary);
}

    .detail-bottom-nav__btn--soft:hover {
        color: var(--primary);
    }

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 105px;
}

.detail-sidebar__card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 20px;
}

    .detail-sidebar__card h3 {
        margin: 0 0 16px;
        font-size: 1.05rem;
        font-weight: 800;
    }

.detail-sidebar__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.detail-sidebar__stat {
    padding: 14px;
    border-radius: 14px;
    background: var(--surface-soft);
}

    .detail-sidebar__stat span {
        display: block;
        color: var(--muted);
        font-size: 12px;
        margin-bottom: 4px;
    }

    .detail-sidebar__stat strong {
        display: block;
        color: var(--text);
        font-size: 1rem;
        font-weight: 800;
    }

.detail-sidebar__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-side-news {
    display: flex;
    gap: 12px;
}

.detail-side-news__image {
    flex: 0 0 92px;
    max-width: 92px;
}

    .detail-side-news__image img {
        width: 92px;
        height: 74px;
        object-fit: cover;
        border-radius: 12px;
        display: block;
    }

.detail-side-news__body {
    min-width: 0;
    flex: 1 1 auto;
}

.detail-side-news__category {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 6px;
}

.detail-side-news__body h4 {
    margin: 0;
    font-size: .98rem;
    line-height: 1.4;
    font-weight: 800;
}

    .detail-side-news__body h4 a {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

        .detail-side-news__body h4 a:hover {
            color: var(--primary);
        }

.detail-sidebar__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .detail-sidebar__tags span {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        padding: 0 12px;
        border-radius: 999px;
        background: var(--surface-soft);
        color: var(--primary);
        font-size: 12px;
        font-weight: 700;
    }

@media (max-width: 1199.98px) {
    .detail-hero__title {
        font-size: 2.3rem;
    }

    .detail-sidebar {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .detail-media img {
        max-height: 420px;
    }

    .detail-media iframe,
    .detail-media video {
        height: 420px;
    }
}

@media (max-width: 767.98px) {
    .detail-hero__title {
        font-size: 1.8rem;
    }

    .detail-hero__summary {
        font-size: .98rem;
        line-height: 1.7;
    }

    .detail-content,
    .detail-tags,
    .detail-bottom-nav {
        padding-left: 18px;
        padding-right: 18px;
    }

    .detail-media img {
        max-height: 280px;
    }

    .detail-media iframe,
    .detail-media video {
        height: 240px;
    }

    .detail-content {
        font-size: .98rem;
        line-height: 1.8;
    }

        .detail-content h2 {
            font-size: 1.45rem;
        }

        .detail-content h3 {
            font-size: 1.25rem;
        }
}

.detail-actions {
    margin: 18px 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.detail-like-btn {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    border-radius: 999px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .2s ease;
    box-shadow: var(--shadow);
}

    .detail-like-btn:hover {
        transform: translateY(-1px);
    }

    .detail-like-btn.is-liked {
        background: #fee2e2;
        border-color: #fecaca;
        color: #dc2626;
    }

.detail-stats-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

    .detail-stats-inline i {
        margin-right: 6px;
    }
/*son detail*/

/* cookie consent */
.cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: none;
}

    .cookie-consent.is-visible {
        display: block;
    }

.cookie-consent__box {
    max-width: 920px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.96);
    color: #f8fafc;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.28);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px 22px;
}

.cookie-consent__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cookie-consent__text {
    min-width: 0;
    flex: 1 1 auto;
}

.cookie-consent__title {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.cookie-consent__desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
}

    .cookie-consent__desc a {
        color: #93c5fd;
        text-decoration: underline;
    }

.cookie-consent__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s ease;
    white-space: nowrap;
}

    .cookie-consent__btn:hover {
        transform: translateY(-1px);
    }

.cookie-consent__btn--accept {
    background: #2563eb;
    color: #fff;
}

    .cookie-consent__btn--accept:hover {
        background: #1d4ed8;
    }

.cookie-consent__btn--reject {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.12);
}

    .cookie-consent__btn--reject:hover {
        background: rgba(255,255,255,0.14);
    }

@media (max-width: 767.98px) {
    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-consent__box {
        border-radius: 18px;
        padding: 16px;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
    }

    .cookie-consent__content {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .cookie-consent__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .cookie-consent__btn {
        width: 100%;
        min-height: 46px;
        white-space: normal;
    }
}/*inline*/
