/* rumors-listing.css - Stili specifici pagina listing rumors */

:root {
    --page-accent: #f59e0b;
    --page-accent-dark: #d97706;
    --page-accent-darker: #b45309;
    --page-accent-bg: #fffbeb;
    --page-accent-bg2: #fef3c7;
}

/* ===== MAIN ===== */
main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px;
}

/* ===== HERO ===== */
.page-hero {
    text-align: center;
    padding: 16px 0 24px;
}

.page-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.page-hero h1 span {
    color: var(--amber-500);
}

.hero-stats {
    color: var(--gray-400);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.hero-stats .counter {
    font-family: 'Inter', monospace;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--amber-500);
    letter-spacing: -0.03em;
}

.hero-stats .sep {
    color: var(--gray-300);
    margin: 0 4px;
}

/* ===== VERTICAL TIMELINE (sidebar) ===== */
.vtl {
    position: relative;
    padding-left: 28px;
    margin-top: 16px;
}

.vtl::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: var(--gray-200);
}

.vtl-step {
    position: relative;
    padding: 0 0 24px;
    cursor: pointer;
    transition: opacity 0.15s;
}

.vtl-step:last-child {
    padding-bottom: 0;
}

.vtl-step:hover {
    opacity: 0.8;
}

.vtl-dot {
    position: absolute;
    left: -28px;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5625rem;
    font-weight: 700;
    color: var(--white);
    z-index: 1;
    transition: transform 0.2s;
}

.vtl-dot.today {
    background: var(--green-500);
    box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.15);
}

.vtl-dot.past {
    background: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(255, 184, 77, 0.15);
}

.vtl-step.active .vtl-dot {
    transform: scale(1.15);
}

.vtl-date {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1px;
    transition: color 0.15s;
}

.vtl-step.active .vtl-date {
    color: var(--amber-600);
}

.vtl-step:first-child.active .vtl-date {
    color: var(--green-500);
}

.vtl-sub {
    font-size: 0.6875rem;
    color: var(--gray-400);
}

.vtl-count {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-top: 2px;
}

/* ===== COUNTDOWN BANNER ===== */
.countdown-banner {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.countdown-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 77, 0.10) 0%, transparent 60%);
    pointer-events: none;
}

.countdown-banner::after {
    content: '';
    position: absolute;
    bottom: -60%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 77, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cb-pills {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.cb-pill {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.6875rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.25s, color 0.25s, box-shadow 0.25s;
    letter-spacing: -0.01em;
}

.cb-pill:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
}

.cb-pill.active {
    background: var(--amber-500);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

.cb-content {
    position: relative;
    z-index: 1;
    transition: opacity 0.3s;
}

.cb-content.fade {
    opacity: 0;
}

.cb-event {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.cb-date {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.cb-timer {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.cb-unit {
    text-align: center;
}

.cb-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
    line-height: 1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    min-width: 60px;
    transition: opacity 0.3s;
}

.cb-txt {
    font-size: 0.5625rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 8px;
}

.cb-sep {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-600);
    align-self: flex-start;
    padding-top: 12px;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* Countdown states */
.cb-live {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
}

.cb-live.visible {
    display: flex;
}

.cb-live-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ef4444;
    flex-shrink: 0;
    position: relative;
}

.cb-live-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.5);
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.cb-live-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.cb-ended {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.cb-ended.visible {
    display: block;
}

.cb-ended-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-500);
}

.cb-pill.ended {
    opacity: 0.4;
    text-decoration: line-through;
}

.cb-pill.live {
    background: rgba(239, 68, 68, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

/* ===== FILTERS ===== */
.filters-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--white);
    padding: 5px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}

.filter-tabs {
    display: flex;
    gap: 2px;
    position: relative;
}

/* ===== ACTIVE FILTERS FEEDBACK ===== */
.active-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-bottom: 0;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease,
                margin-bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.active-filters.visible {
    max-height: 50px;
    opacity: 1;
    margin-bottom: 20px;
}

.af-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
    white-space: nowrap;
}

.active-filters-tags {
    display: flex;
    align-items: center;
    gap: 5px;
}

.af-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    background: rgba(245, 166, 35, 0.08);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--amber-600);
    white-space: nowrap;
}

/* Level-specific tag colors — matches filter dots */
.af-tag[data-color="high"] {
    background: rgba(52, 199, 89, 0.10);
    color: #16a34a;
}

.af-tag[data-color="medium"] {
    background: rgba(245, 166, 35, 0.10);
    color: #b45309;
}

.af-tag[data-color="low"] {
    background: rgba(255, 107, 107, 0.10);
    color: #dc2626;
}

.af-tag[data-color="riepilogo"] {
    background: rgba(245, 166, 35, 0.10);
    color: #b45309;
}

.af-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gray-300);
    flex-shrink: 0;
}

.af-count {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    white-space: nowrap;
    padding-left: 2px;
}

.af-count strong {
    font-weight: 700;
    color: var(--gray-800);
    font-variant-numeric: tabular-nums;
}

.af-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.15s, background-color 0.15s;
    flex-shrink: 0;
    padding: 0;
}

.af-reset:hover {
    border-color: var(--red-500);
    background: rgba(239, 68, 68, 0.06);
}

.af-reset svg {
    width: 10px;
    height: 10px;
    color: var(--gray-600);
    transition: color 0.15s;
}

.af-reset:hover svg {
    color: var(--red-500);
}

.filter-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--amber-500);
    border-radius: 10px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.15, 1),
                width 0.4s cubic-bezier(0.4, 0, 0.15, 1);
    z-index: 0;
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

.filter-tab {
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-500);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.25s;
    font-family: inherit;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 7px;
}

.filter-tab:hover {
    color: var(--gray-900);
}

.filter-tab.active {
    color: var(--white);
    font-weight: 600;
}

.f-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.filter-tab.active .f-dot {
    background: rgba(255, 255, 255, 0.6) !important;
}

.f-green {
    background: var(--green-500);
}

.f-amber {
    background: var(--amber-500);
}

.f-red {
    background: var(--red-500);
}

.f-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--amber-500);
}

.filter-tab.active .f-icon {
    color: rgba(255, 255, 255, 0.85);
}

/* ===== RIEPILOGO TAG ===== */
.riepilogo-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--amber-600);
}

.riepilogo-tag svg {
    color: var(--amber-500);
}

/* ===== FEED SECTION HEADER (riepiloghi) ===== */
.feed-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 6px;
    margin-bottom: 4px;
}

.fsh-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fsh-icon {
    width: 18px;
    height: 18px;
    color: var(--amber-500);
    flex-shrink: 0;
}

.feed-section-header h2 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.fsh-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--amber-600);
    text-decoration: none;
    transition: color 0.15s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.fsh-link:hover {
    color: var(--amber-500);
}

.filter-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 8px;
}

.filter-sort label {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.custom-select {
    position: relative;
    user-select: none;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: none;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-family: inherit;
    background: transparent;
    color: var(--gray-900);
    cursor: pointer;
    transition: background-color 0.15s;
    white-space: nowrap;
}

.custom-select-trigger:hover {
    background: var(--gray-50);
}

.custom-select.open .custom-select-trigger {
    background: var(--gray-50);
}

.custom-select-trigger svg {
    width: 14px;
    height: 14px;
    fill: var(--gray-400);
    transition: transform 0.25s ease;
}

.custom-select.open .custom-select-trigger svg {
    transform: rotate(180deg);
}

.custom-select-trigger:focus-visible {
    outline: 2px solid var(--amber-500);
    outline-offset: 2px;
    border-radius: 10px;
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 6px;
    min-width: 170px;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.custom-select.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: background-color 0.12s, color 0.12s;
}

.custom-option:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

.custom-option:focus {
    background: var(--gray-50);
    color: var(--gray-900);
    outline: 2px solid var(--amber-500);
    outline-offset: -2px;
}

.custom-option.selected {
    color: var(--amber-600);
    font-weight: 600;
    background: var(--amber-50);
}

/* ===== MAIN COLUMN ===== */
.main-col {
    min-width: 0;
}

/* ===== RUMORS FEED ===== */
.feed-count {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.rumors-feed {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feed-date-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0 4px;
    scroll-margin-top: 76px;
}

.feed-date-header h2 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.feed-date-header .feed-count {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.rumor-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    display: flex;
    position: relative;
    transition: box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease;
}

.rumor-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.rumor-card:hover .rumor-title {
    color: var(--amber-600);
}

.rumor-card.filter-out {
    opacity: 0;
    transform: scale(0.97);
    pointer-events: none;
}

.rumor-card.hidden {
    display: none;
}

.rumor-img {
    width: 150px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Copertina reale (quando c'e'): riempie la striscia, ritagliata, INCASTONATA (frame bianco 5px solo se c'e' cover, via :has -> il fallback brand .bg-* resta intatto quando manca). */
.rumor-card .rumor-img:has(img) {
    background: var(--white);
    padding: 5px;
}
.rumor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.rumor-img.bg-apple {
    background: linear-gradient(145deg, #e4e4ea 0%, #c4c4cf 100%);
}

.rumor-img.bg-samsung {
    background: linear-gradient(145deg, #e8f0fe 0%, #d2e3fc 100%);
}

.rumor-img.bg-nintendo {
    background: linear-gradient(145deg, #fce4ec 0%, #f8bbd0 100%);
}

.rumor-img.bg-google {
    background: linear-gradient(145deg, #e8f5e9 0%, #c8e6c9 100%);
}

.rumor-img.bg-sony {
    background: linear-gradient(145deg, #ede7f6 0%, #d1c4e9 100%);
}

.rumor-img.bg-meta {
    background: linear-gradient(145deg, #e3f2fd 0%, #bbdefb 100%);
}

.rumor-img.bg-xiaomi {
    background: linear-gradient(145deg, #fff3e0 0%, #ffe0b2 100%);
}

.rumor-body {
    padding: 18px 22px;
    flex: 1;
    min-width: 0;
}

.rumor-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.rumor-brand {
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--gray-100);
    color: var(--gray-600);
}

.rumor-score {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gray-500);
}

.rumor-score .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.dot.high {
    background: var(--green-500);
}

.dot.medium {
    background: var(--amber-500);
}

.dot.low {
    background: var(--red-500);
}

/* Riepilogo icon in trending (same visual weight as dot) */
.trend-riepilogo-icon {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    color: var(--amber-500);
}

.rumor-title {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    transition: color 0.15s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rumor-excerpt {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rumor-meta {
    display: flex;
    gap: 14px;
    color: var(--gray-400);
    font-size: 0.6875rem;
}

.rumor-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-icon {
    width: 14px;
    height: 14px;
    color: var(--gray-400);
    flex-shrink: 0;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
}

.pg-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-900);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.15s, border-color 0.15s, color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-btn:hover:not(.disabled) {
    border-color: var(--amber-500);
    color: var(--amber-500);
}

.pg-btn:focus-visible {
    outline: 2px solid var(--amber-500);
    outline-offset: 2px;
}

.pg-btn.active {
    background: var(--amber-500);
    border-color: var(--amber-500);
    color: var(--white);
}

.pg-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.pg-dots {
    color: var(--gray-400);
    padding: 0 4px;
    font-size: 0.875rem;
}

/* ===== SIDEBAR ===== */
.sidebar {
    position: sticky;
    top: 88px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sb-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.sb-title {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sb-title-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* Trending rumors */
.trend-list {
    display: flex;
    flex-direction: column;
}

.trend-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    text-decoration: none;
    color: inherit;
    transition: background-color 0.15s, color 0.15s;
}

.trend-item:first-child {
    padding-top: 0;
}

.trend-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.trend-item:hover .trend-title {
    color: var(--amber-500);
}

.trend-item:hover .trend-rank {
    opacity: 0.7;
}

.trend-rank {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--amber-500);
    opacity: 0.4;
    width: 22px;
    flex-shrink: 0;
    line-height: 1.3;
    transition: opacity 0.15s;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
}

.trend-title {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color 0.15s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trend-reliability {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6875rem;
}

.trend-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

/* ===== NEWSLETTER SECTION (fuori main) ===== */
.newsletter-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px 32px;
}

.nl-icon {
    color: var(--amber-500);
}

/* ===== NEWSLETTER VARIANT ===== */
/* Newsletter amber accent (override condiviso per rumors) */
.nl-amber::before,
.nl-banner::before {
    background: var(--amber-500);
}

.nl-icon {
    color: var(--amber-500);
}

.nl-input:focus {
    border-color: var(--amber-500);
}

.nl-btn-amber,
.nl-btn {
    background: var(--amber-500);
}

.nl-btn-amber:hover,
.nl-btn:hover {
    background: var(--amber-600);
}

/* ===== ANIMATION PAUSE UTILITY ===== */
.anim-paused,
.anim-paused::after {
    animation-play-state: paused !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    main {
        padding: 20px;
    }

    .page-hero h1 {
        font-size: 1.875rem;
    }

    .filters-bar {
        flex-direction: column;
        align-items: stretch;
        border-radius: var(--radius-sm);
        padding: 10px;
        position: relative;
    }

    .filters-bar::after {
        content: '';
        position: absolute;
        top: 10px;
        right: 10px;
        width: 40px;
        height: 44px;
        background: linear-gradient(to right, transparent, var(--white));
        pointer-events: none;
        z-index: 2;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        transition: opacity 0.2s;
    }

    .filters-bar.scrolled-end::after {
        opacity: 0;
    }

    .filter-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .filter-tab {
        padding: 10px 14px;
        font-size: 0.75rem;
    }

    .filter-sort {
        padding: 8px 4px 4px;
        justify-content: center;
    }

    .rumor-body {
        padding: 14px 16px;
    }

    .rumor-title {
        font-size: 0.9375rem;
    }

    .rumor-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

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


    .rumor-img {
        width: 100px;
    }

    /* Countdown responsive */
    .countdown-banner {
        padding: 20px 16px;
    }

    .cb-event {
        font-size: 1.15rem;
    }

    .cb-date {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .cb-timer {
        gap: 6px;
    }

    .cb-num {
        font-size: 1.35rem;
        padding: 10px 10px;
        min-width: 44px;
        border-radius: 10px;
    }

    .cb-txt {
        font-size: 0.5rem;
        margin-top: 6px;
    }

    .cb-sep {
        font-size: 1.25rem;
        padding-top: 8px;
    }

    .cb-pill {
        padding: 5px 10px;
        font-size: 0.625rem;
    }
}
