﻿


.location-bar {
    position: relative;
    border-bottom: none;
    height: var(--location-bar-height);
    position: sticky;
    top: var(--header-height);
    z-index: calc(var(--z-sticky) - 1);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 15px;
}
.location-bar::-webkit-scrollbar { display: none; }
.location-bar::before, .location-bar::after { display: none; }
.location-bar::before {
    left: 0;
    background: linear-gradient(to right, #F8F9FA 0%, transparent 100%);
}
.location-bar::after {
    right: 0;
    background: linear-gradient(to left, #F8F9FA 0%, transparent 100%);
}
.location-bar.fade-left::before { opacity: 1; }
.location-bar.fade-right::after { opacity: 1; }
.location-bar .inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 var(--container-padding);
    height: 100%;
    min-width: max-content;
    max-width: var(--container-max);
    margin: 0 auto;
    }
.location-chip {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    background: #FFFFFF;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 10px 20px;
    border-radius: 24px;
    white-space: nowrap;
    transition: all 0.2s;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.location-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: #EE2225;
}
.location-chip.active {
    background: #EE2225;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


.breaking-ticker {
    background: #FFFFFF;
    border-bottom: none;
    animation: bannerSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-carousel .breaking-ticker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    border-bottom: none;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
@keyframes bannerSlideIn {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}
.breaking-ticker__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    height: 38px;
    gap: 0;
}


.breaking-ticker__badge {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    padding: 0 12px;
    height: 24px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #EE2225, #D32F2F);
    border-radius: 4px;
    margin-right: 16px;
}
.breaking-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    flex-shrink: 0;
    animation: dot-pulse 1.5s ease-in-out infinite;
}
@keyframes dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.7); }
}
.breaking-label {
    font-size: 11px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


.breaking-ticker__track {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 3%,
        black 97%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 3%,
        black 97%,
        transparent 100%
    );
}


.breaking-ticker__scroll {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: tickerScroll 20s linear infinite;
    will-change: transform;
}
.breaking-ticker:hover .breaking-ticker__scroll {
    animation-play-state: paused;
}

.ticker-group {
    display: inline-flex;
    align-items: center;
    
    min-width: 100vw;
    flex-shrink: 0;
}

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


.breaking-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-8);
    padding: 12px var(--sp-24);
    min-height: 48px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--duration-fast);
}
.breaking-ticker__item:hover {
    color: var(--red);
}
.ticker-sep {
    color: var(--text-muted);
}
    font-size: 6px;
    opacity: 0.5;
}




.cat-chip {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: var(--sp-4) var(--sp-8);
    border-radius: var(--radius-sm);
    background: var(--red);
    color: var(--navy);
    line-height: 1;
}
.cat-chip.outline {
    background: transparent;
    border: 1px solid currentColor;
    color: var(--ink-muted);
}


.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--sp-24);
    padding-bottom: var(--sp-8);
    border-bottom: 1px solid var(--gray-200);
}
.section-head h2 {
    font-size: var(--fs-2xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0;
    position: relative;
}

.section-head h2::after {
    content: '';
    position: absolute;
    bottom: -10px; 
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
}
.section-head a {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-muted);
    transition: color var(--duration-fast);
}
.section-head a:hover {
    color: var(--red);
}


.card-hero {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background: var(--navy);
    min-height: 280px;
    display: flex;
    align-items: flex-end;
}
.card-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    pointer-events: none;
}
.card-hero__content {
    position: relative;
    z-index: 2;
    padding: var(--sp-20);
    color: white;
    width: 100%;
}
.card-hero__content .cat-chip {
    margin-bottom: var(--sp-10);
}
.card-hero__title {
    font-size: var(--fs-xl);
    font-weight: 800;
    line-height: var(--lh-snug);
    color: white;
    margin-bottom: var(--sp-8);
}
.card-hero__meta {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

@media (min-width: 768px) {
    .card-hero {
        min-height: 400px;
    }
    .card-hero__title {
        font-size: var(--fs-3xl);
    }
    .card-hero__content {
        padding: var(--sp-32);
        max-width: 680px;
    }
}


.card-h {
    display: flex;
    gap: var(--sp-12);
    padding: var(--sp-12) 0;
    border-bottom: 1px solid var(--border-light);
    transition: background var(--duration-fast);
}
.card-h:last-child {
    border-bottom: none;
}
.card-h:hover {
    background: var(--surface-2);
}
.card-h:hover .card-h__title {
    color: var(--navy);
}
.card-h:hover .card-h__thumb img {
    transform: scale(1.05);
}
.card-h__thumb {
    width: 100px;
    height: 72px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--surface-2);
}
.card-h__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.card-h__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-h__cat {
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy-light);
    margin-bottom: var(--sp-4);
}
.card-h__title {
    font-size: var(--fs-base);
    font-weight: 700;
    line-height: var(--lh-snug);
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-h__time {
    font-size: var(--fs-xs);
    color: var(--ink-muted);
    margin-top: var(--sp-4);
}

@media (min-width: 768px) {
    .card-h__thumb {
        width: 140px;
        height: 95px;
    }
}


.card-v {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.card-v:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.card-v__thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--surface-2);
}
.card-v__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}
.card-v:hover .card-v__thumb img {
    transform: scale(1.03);
}
.card-v__info {
    padding: var(--sp-16);
}
.card-v__cat {
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy-light);
    margin-bottom: var(--sp-6);
}
.card-v__title {
    font-size: var(--fs-md);
    font-weight: 700;
    line-height: var(--lh-snug);
    color: var(--ink);
    margin-bottom: var(--sp-8);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-v__excerpt {
    font-size: var(--fs-sm);
    color: var(--ink-soft);
    line-height: var(--lh-normal);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--sp-8);
}
.card-v__time {
    font-size: var(--fs-xs);
    color: var(--ink-muted);
}


.card-mini {
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--duration-fast);
}
.card-mini:hover {
    box-shadow: var(--shadow-md);
}
.card-mini__thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--surface-2);
}
.card-mini__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-mini__info {
    padding: var(--sp-10);
}
.card-mini__cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy-light);
    margin-bottom: var(--sp-4);
}
.card-mini__title {
    font-size: var(--fs-sm);
    font-weight: 700;
    line-height: var(--lh-snug);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.most-read {
    background: #F4F7FB;
    border-radius: var(--radius-lg);
    padding: var(--sp-20);
}
.most-read .section-head {
    border-bottom-color: var(--red);
}
.most-read .section-head h2 {
    color: var(--navy);
}
.most-read ol {
    list-style: none;
    counter-reset: rank;
}
.most-read li {
    counter-increment: rank;
    display: flex;
    align-items: flex-start;
    gap: var(--sp-12);
    padding: var(--sp-12) 0;
    border-bottom: 1px solid var(--border-light);
}
.most-read li:last-child { border-bottom: none; }
.most-read li::before {
    content: counter(rank);
    font-size: 28px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}
.most-read h4 {
}
.card-h__thumb {
    width: 100px;
    height: 72px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--surface-2);
}
.card-h__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.card-h__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-h__cat {
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy-light);
    margin-bottom: var(--sp-4);
}
.card-h__title {
    font-size: var(--fs-base);
    font-weight: 700;
    line-height: var(--lh-snug);
    color: var(--ink);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-h__time {
    font-size: var(--fs-xs);
    color: var(--ink-muted);
    margin-top: var(--sp-4);
}

@media (min-width: 768px) {
    .card-h__thumb {
        width: 140px;
        height: 95px;
    }
}


.card-v {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.card-v:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.card-v__thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--surface-2);
}
.card-v__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}
.card-v:hover .card-v__thumb img {
    transform: scale(1.03);
}
.card-v__info {
    padding: var(--sp-16);
}
.card-v__cat {
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy-light);
    margin-bottom: var(--sp-6);
}
.card-v__title {
    font-size: var(--fs-md);
    font-weight: 700;
    line-height: var(--lh-snug);
    color: var(--ink);
    margin-bottom: var(--sp-8);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-v__excerpt {
    font-size: var(--fs-sm);
    color: var(--ink-soft);
    line-height: var(--lh-normal);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--sp-8);
}
.card-v__time {
    font-size: var(--fs-xs);
    color: var(--ink-muted);
}


.card-mini {
    background: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--duration-fast);
}
.card-mini:hover {
    box-shadow: var(--shadow-md);
}
.card-mini__thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--surface-2);
}
.card-mini__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-mini__info {
    padding: var(--sp-10);
}
.card-mini__cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy-light);
    margin-bottom: var(--sp-4);
}
.card-mini__title {
    font-size: var(--fs-sm);
    font-weight: 700;
    line-height: var(--lh-snug);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.most-read {
    background: #F4F7FB;
    border-radius: var(--radius-lg);
    padding: var(--sp-20);
}
.most-read .section-head {
    border-bottom-color: var(--red);
}
.most-read .section-head h2 {
    color: var(--navy);
}
.most-read ol {
    list-style: none;
    counter-reset: rank;
}
.most-read li {
    counter-increment: rank;
    display: flex;
    align-items: flex-start;
    gap: var(--sp-12);
    padding: var(--sp-12) 0;
    border-bottom: 1px solid var(--border-light);
}
.most-read li:last-child { border-bottom: none; }
.most-read li::before {
    content: counter(rank);
    font-size: 28px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}
.most-read h4 {
    font-size: 13.5px;
    font-weight: 600;
    line-height: var(--lh-snug);
    color: var(--ink);
}
.most-read li:hover h4 {
    color: var(--navy);
}


.newsletter-block {
    background: #F8F9FA;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--sp-24);
    color: var(--ink);
    text-align: center;
    margin: var(--sp-24) 0;
}
.newsletter-block h3 {
    font-size: var(--fs-lg);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: var(--sp-6);
}
.newsletter-block p {
    font-size: var(--fs-sm);
    color: var(--ink-muted);
    margin-bottom: var(--sp-16);
}
.newsletter-block .form {
    display: flex;
    gap: var(--sp-8);
    max-width: 360px;
    margin: 0 auto;
}
.newsletter-block input {
    flex: 1;
    padding: 11px 12px;
    border: 1px solid #CBD1DA;
    border-radius: var(--radius-sm);
    font-size: var(--fs-sm);
    background: white;
    color: var(--ink);
}
.newsletter-block input::placeholder {
    color: var(--ink-soft);
    opacity: 1;
}
.newsletter-block button {
    padding: var(--sp-12) var(--sp-20);
    background: var(--red);
    color: white;
    font-weight: 800;
    font-size: var(--fs-sm);
    border-radius: var(--radius-md);
    white-space: nowrap;
    border: none;
    cursor: pointer;
}
.newsletter-block button:hover {
    background: var(--red-deep);
}


.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: var(--sp-24) 0;
}
.pagination a,
.pagination span {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: background var(--duration-fast), color var(--duration-fast);
}
.pagination a {
    color: var(--ink-soft);
    background: var(--surface);
    border: 1px solid #CBD1DA;
}
.pagination a:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}
.pagination .current {
    background: var(--navy);
    color: white;
    font-weight: 700;
}
.pagination .dots {
    border: none;
    background: none;
    color: var(--ink-muted);
}


.breadcrumb {
    font-size: var(--fs-xs);
    color: var(--ink-muted);
    padding: var(--sp-12) 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.breadcrumb a {
    color: var(--navy-light);
    font-weight: 500;
    transition: color var(--duration-fast);
}
.breadcrumb a:hover {
    color: var(--red-deep);
}
.breadcrumb .sep {
    color: var(--ink-faint);
}


.tldr-box {
    background: var(--surface-2);
    border-left: 3px solid var(--red);
    padding: var(--sp-16) var(--sp-20);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: var(--sp-20) 0;
}
.tldr-box .label {
    font-size: var(--fs-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--red-deep);
    margin-bottom: var(--sp-6);
}
.tldr-box p {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: var(--lh-normal);
    color: var(--ink-soft);
}


.sources-block {
    background: var(--surface-2);
    border-radius: var(--radius-md);
    padding: var(--sp-16);
    margin: var(--sp-24) 0;
}
.sources-block h4 {
    font-size: var(--fs-sm);
    font-weight: 700;
    margin-bottom: var(--sp-8);
}
.sources-block li {
    font-size: var(--fs-sm);
    color: var(--ink-soft);
    padding: var(--sp-4) 0;
}
.sources-block li::before {
    content: '→ ';
    color: var(--red);
}


.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.article-tags__label {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--ink-soft);
}
.article-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--ink-soft);
    background: var(--surface-2);
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.article-tag:hover {
    background: var(--red);
    color: #fff;
}

/* Banner sidebar. Centrarea venea dintr-un style inline care continea si
   `display:block` — iar acela batea `.hide-mobile { display:none }`, deci
   bannerul aparea pe mobil desi clasa spunea contrariul. Pastram doar
   centrarea; vizibilitatea o decide clasa, din setarea bannerului. */
.top-stiri-banner {
    text-align: center;
}

/* Slot de banner in articol (~800x90). Cu un singur banner activ e static;
   cu mai multe, .is-slider le roteste si doar cel activ e vizibil. */
.article-banner-slot {
    margin: var(--sp-24) 0;
    text-align: center;
}
.article-banner-slot img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.article-banner-slot.is-slider .article-banner-slide {
    display: none;
}
.article-banner-slot.is-slider .article-banner-slide.is-active {
    display: block;
    animation: bannerFade .45s ease;
}
@keyframes bannerFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .article-banner-slot.is-slider .article-banner-slide.is-active {
        animation: none;
    }
}

.share-row {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
}
.share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--surface-2);
    color: var(--ink-muted);
    font-size: 16px;
    transition: background var(--duration-fast), color var(--duration-fast);
}
.share-btn:hover {
    background: var(--navy);
    color: white;
}


.image-caption {
    padding: 8px 16px 16px;
    font-size: 11.5px;
    color: var(--ink-muted);
    font-style: italic;
    line-height: 1.4;
    background: #F4F7FB;
}


.related-block {
    background: #F4F7FB;
    padding: 0;
}
.related-block .section-head {
    border-bottom-color: var(--red);
}
.related-block .section {
    background: transparent;
}


.author-pill {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
}
.author-pill__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy-light);
    overflow: hidden;
    flex-shrink: 0;
}
.author-pill__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-pill__name {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--navy-light);
}


.category-header {
    padding: var(--sp-16) 0 var(--sp-32);
    position: relative;
}
.category-header .cat-title {
    font-size: var(--fs-2xl);
    line-height: var(--lh-snug);
    margin-bottom: 0;
    border-left: 4px solid var(--red);
    padding-left: var(--sp-10);
    letter-spacing: -0.01em;
}
.category-header .cat-subtitle {
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
    font-family: var(--font-sans);
    margin: var(--sp-10) 0 0 14px;
    max-width: 600px;
}
@media (min-width: 768px) {
    .category-header {
        padding: var(--sp-32) 0 var(--sp-56);
    }
    .category-header .cat-title {
        font-size: var(--fs-3xl);
        border-left: 5px solid var(--red);
        padding-left: var(--sp-12);
    }
    .category-header .cat-subtitle {
        font-size: var(--fs-lg);
        margin: var(--sp-16) 0 0 17px;
    }
}


.cat-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: var(--sp-6);
}


.cat-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    margin-top: 0;
    margin-left: calc(-1 * var(--container-padding));
    margin-right: calc(-1 * var(--container-padding));
}

@media (min-width: 768px) {
    .cat-hero-card {
        border-radius: var(--radius-lg);
        margin-left: 0;
        margin-right: 0;
        margin-top: var(--sp-20);
    }
}
.cat-hero-card .hero-img {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #4A6588, #2A4368);
    transition: transform var(--duration);
    overflow: hidden;
}
.cat-hero-card .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}
.cat-hero-card:hover .hero-img img {
    transform: scale(1.03);
}
.cat-hero-card .hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--sp-24) var(--sp-20);
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.75) 100%);
    display: block;
}
.cat-hero-card .hero-overlay .cat {
    font-size: 10px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--sp-6);
}
.cat-hero-card .hero-overlay h2 {
    font-family: var(--font-body);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: white;
    line-height: var(--lh-snug);
}
.cat-hero-card .hero-overlay .time {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    margin-top: var(--sp-8);
}

@media (min-width: 1024px) {
    .cat-hero-card .hero-img {
        height: 380px;
    }
    .cat-hero-card .hero-overlay h2 {
        font-size: 28px;
        max-width: 600px;
    }
}


.cat-mediums-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-16);
    margin-top: var(--sp-20);
}

@media (min-width: 600px) {
    .cat-mediums-row {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-20);
    }
}

.cat-medium-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.cat-medium-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.cat-medium-card .medium-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #3A5577, #1E3655);
    overflow: hidden;
}
.cat-medium-card .medium-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}
.cat-medium-card:hover .medium-img img {
    transform: scale(1.03);
}
.cat-medium-card .medium-body {
    padding: var(--sp-16);
}
.cat-medium-card .medium-body .cat {
    font-size: 10px;
    font-weight: 700;
    color: var(--red-deep);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--sp-4);
}
.cat-medium-card .medium-body h3 {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--ink);
    line-height: var(--lh-snug);
    margin-bottom: var(--sp-6);
}
.cat-medium-card .medium-body p {
    font-size: var(--fs-sm);
    color: var(--ink-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cat-medium-card .medium-body .time {
    font-size: 11px;
    color: var(--ink-muted);
    margin-top: var(--sp-8);
}


.category-grid {
    display: block;
}
@media (min-width: 1024px) {
    .category-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    .category-grid .card-h {
        padding: var(--sp-16) var(--sp-20);
    }
    .category-grid .card-h:nth-child(odd) {
        border-right: 1px solid var(--border-light);
    }
}



.hub-hero-compact {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.hub-hero-compact__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 26, 48, 0.95) 0%,
        rgba(10, 26, 48, 0.7) 40%,
        rgba(10, 26, 48, 0.3) 100%
    );
}
.hub-hero-compact__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--sp-20) var(--container-padding);
}
.hub-hero-compact__meta {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
    margin-bottom: var(--sp-10);
}
.hub-hero-compact__badge {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
}
.hub-hero-compact__count {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}
.hub-hero-compact__link {
    display: block;
    text-decoration: none;
}
.hub-hero-compact__link .cat-chip {
    margin-bottom: var(--sp-8);
}
.hub-hero-compact__link h1 {
    font-size: var(--fs-xl);
    font-weight: 900;
    color: white;
    line-height: var(--lh-snug);
    margin-bottom: var(--sp-6);
}
.hub-hero-compact__link:hover h1 {
    color: var(--red-light);
}
.hub-hero-compact__excerpt {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--sp-6);
}
.hub-hero-compact__time {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

@media (min-width: 768px) {
    .hub-hero-compact {
        height: 360px;
    }
    .hub-hero-compact__inner {
        padding: var(--sp-32) var(--container-padding);
        max-width: 680px;
        margin: 0 auto 0 calc((100% - var(--container-max)) / 2 + var(--container-padding));
    }
    .hub-hero-compact__link h1 {
        font-size: var(--fs-2xl);
    }
}


.hub-articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
@media (min-width: 768px) {
    .hub-articles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0 var(--sp-24);
    }
}


.hub-hero {
    height: 240px;
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: var(--sp-24) var(--container-padding);
    color: white;
}
@media (min-width: 768px) {
    .hub-hero {
        height: 300px;
        padding: var(--sp-32) var(--container-padding);
    }
}
.hub-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 40%, transparent 75%);
}
.hub-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.hub-hero__label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.8;
    margin-bottom: var(--sp-4);
}
.hub-hero h1 {
    font-size: var(--fs-3xl);
    font-weight: 900;
    color: white;
}
.hub-hero__count {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.5);
    margin-top: var(--sp-4);
}


.read-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: var(--sp-6) var(--sp-12);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--navy);
    background: transparent;
    border: 1.5px solid var(--navy);
    border-radius: var(--radius-full, 50px);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.read-cta:hover {
    background: var(--navy);
    color: white;
}
#article-start {
    scroll-margin-top: calc(var(--header-height) + var(--location-bar-height) + var(--sp-16));
}


.comments-section {
    margin-top: var(--sp-32);
    padding-top: var(--sp-24);
    border-top: 2px solid var(--navy);
}
.comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-12) 0;
    cursor: pointer;
    user-select: none;
}
.comments-header__left {
    display: flex;
    align-items: center;
    gap: var(--sp-10);
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--ink);
}
.comments-header__left svg {
    color: var(--navy-light);
}
.comments-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    border-radius: 12px;
    background: var(--navy);
    color: white;
    font-size: 11px;
    font-weight: 700;
}
.comments-arrow {
    font-size: 14px;
    color: var(--ink-muted);
    transition: transform 0.25s ease;
}
.comments-header.open .comments-arrow {
    transform: rotate(180deg);
}
.comments-list {
    display: none;
}
.comments-list.open {
    display: block;
    padding-top: var(--sp-8);
}
.comments-empty {
    padding: var(--sp-24);
    text-align: center;
    color: var(--ink-muted);
    font-size: var(--fs-sm);
    background: var(--surface-2);
    border-radius: var(--radius-lg);
}
.comment-item {
    display: flex;
    gap: var(--sp-12);
    padding: var(--sp-16) 0;
    border-bottom: 1px solid var(--border-light);
}
.comment-item:last-of-type { border-bottom: none; }
.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: white;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.comment-body {
    flex: 1;
    min-width: 0;
}
.comment-meta {
    display: flex;
    align-items: baseline;
    gap: var(--sp-8);
    margin-bottom: var(--sp-4);
}
.comment-author {
    font-weight: 700;
    font-size: var(--fs-sm);
    color: var(--ink);
}
.comment-date {
    font-size: var(--fs-xs);
    color: var(--ink-muted);
}
.comment-text {
    font-size: var(--fs-sm);
    color: var(--ink-soft);
    line-height: var(--lh-normal);
}


.comment-form {
    margin-top: var(--sp-24);
    padding: var(--sp-24);
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--navy);
}
.comment-form h4 {
    font-size: var(--fs-md);
    font-weight: 700;
    margin-bottom: var(--sp-4);
}
.comment-form__note {
    font-size: var(--fs-xs);
    color: var(--ink-muted);
    margin-bottom: var(--sp-16);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    margin-bottom: var(--sp-12);
}
@media (min-width: 768px) {
    .form-row.two-col {
        grid-template-columns: 1fr 1fr;
    }
}
.form-field input,
.form-field textarea {
    width: 100%;
    padding: var(--sp-12) var(--sp-16);
    border: 1px solid #CBD1DA;
    border-radius: var(--radius-md);
    background: var(--surface);
    font-size: var(--fs-sm);
    transition: border-color var(--duration-fast);
}
.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--navy-light);
    outline: none;
}
.form-field textarea {
    min-height: 100px;
    resize: vertical;
}
.form-field label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--ink-muted);
    margin-bottom: var(--sp-4);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-8);
    padding: var(--sp-12) var(--sp-24);
    background: var(--navy);
    color: white;
    font-weight: 700;
    font-size: var(--fs-sm);
    border-radius: var(--radius-md);
    transition: background var(--duration-fast);
}
.btn-primary:hover {
    background: var(--navy-light);
}


.search-header {
    background: #F4F7FB;
    padding: var(--sp-24) 0;
    border-bottom: 1px solid var(--border-light);
}
.search-field {
    display: flex;
    gap: var(--sp-8);
    margin-bottom: var(--sp-16);
}
.search-field input {
    flex: 1;
    padding: var(--sp-12) var(--sp-16);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: var(--fs-base);
    transition: border-color var(--duration-fast);
}
.search-field input:focus {
    border-color: var(--navy);
    outline: none;
}
.search-results-count {
    font-size: var(--fs-sm);
    color: var(--ink-muted);
    font-weight: 500;
}

.search-filters {
    display: flex;
    gap: var(--sp-6);
    padding: var(--sp-12) 0;
    overflow-x: auto;
}

.filter-chip {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #CBD1DA;
    background: white;
    color: var(--ink-soft);
    white-space: nowrap;
    transition: all var(--duration-fast);
}
.filter-chip:hover {
    border-color: var(--navy);
    color: var(--navy);
}
.filter-chip.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.search-count {
    padding: var(--sp-10) var(--sp-16);
    font-size: var(--fs-sm);
    color: var(--ink-muted);
    font-weight: 600;
    background: var(--surface-2);
    border-radius: var(--radius-md);
    margin-bottom: var(--sp-16);
}

.search-results-grid {
    display: block;
}
@media (min-width: 1024px) {
    .search-results-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

mark {
    background: rgba(232,169,60,0.3);
    color: inherit;
    padding: 0 1px;
    border-radius: 2px;
}
.search-close-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--surface-2);
    color: var(--ink-muted);
    font-size: 18px;
    flex-shrink: 0;
    transition: background var(--duration-fast), color var(--duration-fast);
}
.search-close-btn:hover {
    background: var(--red);
    color: white;
}


.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration) var(--ease-out), visibility var(--duration);
    z-index: 50;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--navy-light);
}


.flash-message {
    padding: var(--sp-12) var(--sp-16);
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--sp-16);
}
.flash-message.success {
    background: rgba(46, 125, 50, 0.1);
    color: #2E7D32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}
.flash-message.error {
    background: rgba(211, 47, 47, 0.1);
    color: var(--red);
    border: 1px solid rgba(211, 47, 47, 0.2);
}


.author-hero {
    background: var(--navy-grad);
    color: white;
    padding: var(--sp-32) 0 var(--sp-24);
    text-align: center;
}
.author-hero__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.author-hero .avatar-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    margin: 0 auto var(--sp-16);
    border: 3px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
    overflow: hidden;
}
.author-hero h1 {
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: white;
    margin-bottom: var(--sp-4);
}
.author-hero .role {
    font-size: var(--fs-sm);
    opacity: 0.75;
    font-weight: 500;
    margin-bottom: var(--sp-16);
}
.author-hero .bio {
    font-size: 13.5px;
    line-height: var(--lh-normal);
    opacity: 0.85;
    max-width: 480px;
    margin: 0 auto var(--sp-20);
}
.author-stats {
    display: flex;
    gap: var(--sp-20);
    justify-content: center;
}
.author-stats .stat { text-align: center; }
.author-stats .stat .num {
    font-size: 22px;
    font-weight: 900;
    color: var(--red);
    display: block;
}
.author-stats .stat .label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.65;
}
.author-socials {
    display: flex;
    gap: var(--sp-8);
    justify-content: center;
    margin-top: var(--sp-16);
}
.author-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: white;
    transition: background var(--duration-fast);
}
.author-socials a:hover {
    background: var(--red);
    color: var(--navy);
}

@media (min-width: 1024px) {
    .author-hero {
        padding: var(--sp-40) 0;
        text-align: left;
    }
    .author-hero__inner {
        display: flex;
        align-items: center;
        gap: var(--sp-32);
    }
    .author-hero .avatar-lg {
        margin: 0;
        width: 100px;
        height: 100px;
        font-size: 36px;
        flex-shrink: 0;
    }
    .author-hero .author-info-block { flex: 1; }
    .author-hero .author-stats { justify-content: flex-start; }
    .author-hero .bio { margin: 0 0 var(--sp-16); }
}


.live-update-bar {
    background: #F4F7FB;
    padding: var(--sp-10) 0;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}
.live-update-bar__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    margin-right: 4px;
}
.live-pulse-text {
    color: var(--red);
    animation: pulseFade 2s ease-in-out infinite;
}
@keyframes pulseFade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}


.live-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-24);
    padding: var(--sp-24) 0;
}
@media (min-width: 1024px) {
    .live-grid {
        grid-template-columns: 1fr 300px;
        gap: var(--sp-32);
    }
}

.live-timeline {
    min-width: 0;
}
.live-entry {
    padding: 0 0 0 var(--sp-24);
    border-left: 2px solid var(--border-light);
    position: relative;
    margin-bottom: var(--sp-4);
}
.live-entry.latest {
    border-left-color: var(--red);
}
.live-entry__dot {
    position: absolute;
    left: -6px;
    top: 16px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    border: 2px solid white;
}
.live-entry.latest .live-entry__dot {
    background: var(--red);
    box-shadow: 0 0 0 3px rgba(211,47,47,0.2);
}
.live-entry__card {
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    padding: var(--sp-16);
    transition: box-shadow 0.2s;
}
.live-entry.latest .live-entry__card {
    background: #FFF5F5;
    border: 1px solid rgba(211,47,47,0.1);
}
.live-entry__card:hover {
    box-shadow: var(--shadow-card);
}
.live-entry .timestamp {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-muted);
    margin-bottom: var(--sp-6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.live-entry.latest .timestamp {
    color: var(--red);
}
.live-entry h3 {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--sp-6);
}
.live-entry p {
    font-size: var(--fs-sm);
    color: var(--ink-soft);
    line-height: var(--lh-normal);
}
.live-entry .entry-img {
    width: 100%;
    border-radius: var(--radius-md);
    margin-top: var(--sp-10);
    overflow: hidden;
}
.live-entry .entry-img img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
}


.live-sidebar {
    display: none;
}
@media (min-width: 1024px) {
    .live-sidebar {
        display: block;
        position: sticky;
        top: calc(var(--header-height) + var(--location-bar-height) + 52px + var(--sp-16));
        align-self: start;
    }
}
.live-info-card {
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    padding: var(--sp-20);
    margin-bottom: var(--sp-20);
}
.live-info-card h4 {
    font-size: var(--fs-sm);
    font-weight: 700;
    margin-bottom: var(--sp-8);
    color: var(--ink);
}
.live-info-card > p {
    font-size: var(--fs-sm);
    color: var(--ink-soft);
    line-height: var(--lh-normal);
    margin-bottom: var(--sp-12);
}
.live-info-meta {
    font-size: var(--fs-xs);
    color: var(--ink-muted);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.live-info-meta strong {
    color: var(--ink-soft);
}


.opinion-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #F3E8FF;
    color: #7C3AED;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--sp-12);
}
.editorial-head {
    padding: var(--sp-24) 0;
    border-bottom: 1px solid var(--border-light);
}
.editorial-head .author-block {
    display: flex;
    align-items: center;
    gap: var(--sp-12);
    margin-bottom: var(--sp-16);
}
.editorial-head .author-block .avatar-md {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
}
.editorial-head .author-block .author-info .name {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--ink);
}
.editorial-head .author-block .author-info .title-role {
    font-size: 11.5px;
    color: var(--ink-muted);
    font-weight: 500;
}
.editorial-head h1 {
    font-family: var(--font-body);
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 700;
    line-height: var(--lh-snug);
    color: var(--ink);
    font-style: italic;
    margin-bottom: var(--sp-10);
}
.editorial-head .dek {
    font-size: var(--fs-base);
    color: var(--ink-soft);
    line-height: 1.5;
}
.editorial-disclaimer {
    margin: var(--sp-16) 0;
    padding: var(--sp-12) var(--sp-16);
    background: #F3E8FF;
    border-left: 3px solid #7C3AED;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: var(--fs-sm);
    color: #5B21B6;
    font-weight: 500;
    line-height: 1.5;
}


.liveblog-banner {
    display: flex;
    align-items: center;
    gap: var(--sp-10);
    padding: var(--sp-8) var(--container-padding);
    background: linear-gradient(90deg, #D32F2F 0%, #B71C1C 100%);
    color: white;
    text-decoration: none;
    font-size: var(--fs-sm);
    font-weight: 600;
    transition: background 0.2s;
}
.liveblog-banner:hover {
    background: linear-gradient(90deg, #E53935 0%, #C62828 100%);
}
.liveblog-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex-shrink: 0;
}
.liveblog-banner__badge .dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}
.liveblog-banner__title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.liveblog-banner__arrow {
    flex-shrink: 0;
    font-size: 16px;
    opacity: 0.7;
    transition: transform 0.2s;
}
.liveblog-banner:hover .liveblog-banner__arrow {
    transform: translateX(3px);
    opacity: 1;
}


.static-page-header {
    background: linear-gradient(135deg, var(--navy) 0%, #0D3461 100%);
    color: white;
    padding: var(--sp-32) 0;
}
.static-page-header__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.static-page-header .breadcrumb {
    margin-bottom: var(--sp-12);
}
.static-page-header .breadcrumb a {
    color: rgba(255,255,255,0.6);
}
.static-page-header .breadcrumb a:hover {
    color: white;
}
.static-page-header .breadcrumb .sep {
    color: rgba(255,255,255,0.3);
}
.static-page-header .breadcrumb span:last-child {
    color: rgba(255,255,255,0.8);
}
.static-page-header h1 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    line-height: var(--lh-snug);
    color: white;
}
.static-page-body {
    max-width: 720px;
    padding: var(--sp-32) 0 var(--sp-48);
}
.static-page-body .article-content h2 {
    font-size: var(--fs-xl);
    margin-top: var(--sp-8);
    margin-bottom: var(--sp-16);
}
.static-page-body .article-content h3 {
    font-size: var(--fs-lg);
    margin-top: var(--sp-24);
    margin-bottom: var(--sp-12);
}
.static-page-body .article-content ul {
    padding-left: var(--sp-20);
}
.static-page-body .article-content ul li {
    margin-bottom: var(--sp-6);
}


.contact-form-wrap p {
    margin-bottom: var(--sp-24);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
}
@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}
.contact-form .form-group {
    margin-bottom: var(--sp-20);
}
.contact-form label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--sp-6);
}
.contact-form label .required {
    color: var(--accent);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #CBD1DA;
    border-radius: var(--radius-md);
    font-size: var(--fs-base);
    font-family: inherit;
    color: var(--text-primary);
    background: var(--surface);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(10, 47, 98, 0.08);
}
.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}
.contact-form .btn-primary {
    padding: 14px 32px;
    font-size: var(--fs-base);
    cursor: pointer;
}
.contact-form-status {
    margin-top: var(--sp-16);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
}
.contact-form-status.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
.contact-form-status.error {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #ef9a9a;
}


.article-tools {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
    flex-wrap: wrap;
}


.article-toolbar {
    display: flex;
    align-items: center;
    gap: var(--sp-12);
    padding: var(--sp-10) var(--sp-16);
    margin: 0 0 var(--sp-20);
    background: var(--surface-2);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}
.article-toolbar__group {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
}
.article-toolbar__label {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.article-toolbar__divider {
    width: 1px;
    height: 24px;
    background: var(--border-light);
    flex-shrink: 0;
}
body.reader-mode .article-toolbar {
    background: transparent;
    border-color: transparent;
    padding: var(--sp-4) 0;
}
body.reader-mode .article-toolbar__divider {
    display: none;
}
@media (max-width: 480px) {
    .article-toolbar {
        flex-wrap: wrap;
        gap: var(--sp-8);
    }
    .article-toolbar__divider {
        display: none;
    }
}


.font-size-controls {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--surface-2);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
}
.font-size-controls button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--ink-muted);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--duration-fast);
    font-family: var(--font-ui);
    position: relative;
}
.font-size-controls button:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--border-light);
}
.font-size-controls button:hover {
    background: var(--border-light);
    color: var(--ink);
}
.font-size-controls button.active {
    background: var(--navy);
    color: white;
}
[data-theme="dark"] .font-size-controls button.active {
    background: #4d9fff;
    color: #0f1419;
}
.font-size-controls .fs-small {
    font-size: 12px;
}
.font-size-controls .fs-medium {
    font-size: 15px;
}
.font-size-controls .fs-large {
    font-size: 18px;
}


.article-content.font-small {
    font-size: 16px !important;
}
.article-content.font-small p,
.article-content.font-small li,
.article-content.font-small blockquote {
    font-size: 16px !important;
}

.article-content.font-medium {
    font-size: 18px !important;
}
.article-content.font-medium p,
.article-content.font-medium li,
.article-content.font-medium blockquote {
    font-size: 18px !important;
}

.article-content.font-large {
    font-size: 22px !important;
}
.article-content.font-large p,
.article-content.font-large li,
.article-content.font-large blockquote {
    font-size: 22px !important;
    line-height: 1.7 !important;
}




.reader-mode-toggle {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-6);
    padding: var(--sp-6) var(--sp-12);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--ink-muted);
    background: var(--surface-2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration-fast);
    white-space: nowrap;
    font-family: var(--font-ui);
}
.reader-mode-toggle:hover {
    background: var(--border-light);
    color: var(--ink);
}
.reader-mode-toggle svg {
    width: 14px;
    height: 14px;
}
.reader-mode-toggle.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}
[data-theme="dark"] .reader-mode-toggle.active {
    background: #4d9fff;
    color: #0f1419;
    border-color: #4d9fff;
}


body.reader-mode .location-bar,
body.reader-mode .breaking-ticker,
body.reader-mode .liveblog-banner,
body.reader-mode .article-sidebar-col,
body.reader-mode .homepage-sidebar,
body.reader-mode .share-row,
body.reader-mode .share-btn:not(.reader-mode-toggle),
body.reader-mode .related-block,
body.reader-mode .comments-section,
body.reader-mode .footer-newsletter,
body.reader-mode .tts-listen-btn,
body.reader-mode .read-cta {
    display: none !important;
}


body.reader-mode .article-grid {
    grid-template-columns: 1fr !important;
    max-width: 720px;
    margin: 0 auto;
}


body.reader-mode .article-content {
    font-size: 19px;
    line-height: 1.85;
    letter-spacing: 0.01em;
}

body.reader-mode .article-content p {
    margin-bottom: 1.5em;
}

body.reader-mode .article-content h2 {
    margin-top: 2em;
    margin-bottom: 0.75em;
}

body.reader-mode .article-content h3 {
    margin-top: 1.75em;
    margin-bottom: 0.5em;
}

body.reader-mode .article-content blockquote {
    font-size: 20px;
    line-height: 1.7;
    padding: var(--sp-20) var(--sp-24);
    margin: var(--sp-32) 0;
}


body.reader-mode .progress-bar {
    background: var(--red);
    height: 3px;
}


body.reader-mode .flex-center.gap-8.mt-24.mb-24 {
    display: none !important;
}


.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-24);
    cursor: zoom-out;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}
.lightbox-overlay.active img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
    line-height: 1;
}
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}
.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-sm);
    font-style: italic;
    text-align: center;
    max-width: 600px;
    padding: var(--sp-8) var(--sp-16);
}

.article-content img {
    cursor: zoom-in;
    transition: opacity 0.2s ease;
}
.article-content img:hover {
    opacity: 0.9;
}


.share-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}
.share-btn {
    position: relative;
}
.share-btn .share-tooltip {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
}
.share-btn .share-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--navy);
}
.share-btn .share-tooltip.visible {
    opacity: 1;
    visibility: visible;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: var(--sp-16);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s ease;
    pointer-events: none;
}
.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.cookie-banner__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--sp-16);
    padding: var(--sp-20) var(--sp-24);
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    color: var(--ink);
}
.cookie-banner__text {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-12);
}
.cookie-banner__icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--red);
}
.cookie-banner__text p {
    font-family: var(--font-ui);
    font-size: var(--fs-sm);
    line-height: var(--lh-normal);
    margin: 0;
}
.cookie-banner__text a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
    transition: color var(--duration-fast);
}
.cookie-banner__text a:hover {
    color: var(--red-light);
}
.cookie-banner__actions {
    display: flex;
    gap: var(--sp-8);
    flex-shrink: 0;
}
.cookie-banner__btn {
    font-family: var(--font-ui);
    font-size: var(--fs-sm);
    font-weight: 700;
    padding: var(--sp-10) var(--sp-20);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration-fast);
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cookie-banner__btn--accept {
    background: var(--red);
    color: white;
    border: none;
}
.cookie-banner__btn--accept:hover {
    background: var(--red-deep);
}
.cookie-banner__btn--settings {
    background: transparent;
    color: var(--ink-soft);
    border: 1px solid var(--border);
}
.cookie-banner__btn--settings:hover {
    border-color: var(--ink-muted);
    color: var(--ink);
}


@media (min-width: 768px) {
    .cookie-banner__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--sp-16);
    padding: var(--sp-20) var(--sp-24);
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    color: var(--ink);
}
}


[data-theme="dark"] .cookie-banner__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--sp-16);
    padding: var(--sp-20) var(--sp-24);
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--ink);
}


.cookie-toggle-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9997;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--duration-fast);
}
.cookie-toggle-btn.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
.cookie-toggle-btn:hover {
    transform: scale(1.05);
}
.cookie-toggle-btn svg {
    width: 20px;
    height: 20px;
}
[data-theme="dark"] .cookie-toggle-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9997;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--duration-fast);
}
[data-theme="dark"] .cookie-toggle-btn:hover {
    transform: scale(1.05);
}


.card-featured-h {
    display: flex;
    flex-direction: column;
    gap: var(--sp-24);
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition-fast);
}

.card-featured-h:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.card-featured-h__img {
    position: relative;
    width: 100%;
    aspect-ratio: 21/9;
    overflow: hidden;
}

.card-featured-h__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card-featured-h:hover .card-featured-h__img img {
    transform: scale(1.05);
}

.card-featured-h__img .cat-chip {
    position: absolute;
    bottom: var(--sp-12);
    left: var(--sp-12);
    background: var(--brand-primary);
    color: white;
    padding: var(--sp-4) var(--sp-12);
    border-radius: var(--br-sm);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
}

.card-featured-h__body {
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
    padding: var(--sp-16);
}

.card-featured-h .card-title {
    font-size: var(--fs-lg);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--text-primary);
}

.card-featured-h:hover .card-title {
    color: var(--brand-primary);
}

.card-featured-h .card-excerpt {
    display: none;
    font-size: var(--fs-base);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .card-featured-h {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }
    
    .card-featured-h__img {
        width: 40%;
        aspect-ratio: 16/10;
        flex-shrink: 0;
    }
    
    .card-featured-h__body {
        width: 60%;
        padding: var(--sp-24);
        justify-content: center;
    }
    
    .card-featured-h .card-excerpt {
        display: block;
    }
    
    .card-featured-h .card-title {
        font-size: var(--fs-xl);
    }
}


.location-chip--special {
    background: var(--red);
    color: var(--navy);
    border-color: var(--red);
}
.location-chip--special:hover {
    background: var(--red-deep);
    color: white;
    border-color: var(--red-deep);
}
.location-chip--special.active {
    background: var(--navy);
    color: var(--red);
    border-color: var(--navy);
}

.location-chip--info {
    margin-left: auto;
}



