/* ══════════════════════════════════════════════
           ROOT VARIABLES
           ══════════════════════════════════════════════ */
        :root {
            --bg-primary: #FAFAFA;
            --bg-card: #FFFFFF;
            --bg-card-hover: #F5F5F5;
            --bg-header: rgba(250, 250, 250, 0.82);
            --bg-section-alt: #F3F3F1;
            --bg-sidebar: #F7F7F5;
            --text-primary: #111111;
            --text-secondary: #555555;
            --text-tertiary: #888888;
            --accent: #EF4444;
            --accent-hover: #DC2626;
            --accent-orange: #F97316;
            --border-color: #E5E5E5;
            --border-hover: #EF4444;
            --cat-tecnologia: #7C3AED;
            --cat-politica: #2563EB;
            --cat-geral: #059669;
            --badge-agora-bg: #EF4444;
            --badge-agora-text: #FFFFFF;
            --badge-recente-bg: #FFF7ED;
            --badge-recente-text: #C2410C;
            --badge-fontes-bg: #F3F4F6;
            --badge-fontes-text: #374151;
            --font-display: 'Space Grotesk', sans-serif;
            --font-body: 'Inter', sans-serif;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.10);
            --radius: 10px;
            --radius-sm: 6px;
            --radius-pill: 999px;
            --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
        }

        @media (prefers-color-scheme: dark) {
            :root {
                --bg-primary: #0A0A0A;
                --bg-card: #161616;
                --bg-card-hover: #1E1E1E;
                --bg-header: rgba(10, 10, 10, 0.85);
                --bg-section-alt: #111111;
                --bg-sidebar: #131313;
                --text-primary: #F5F5F0;
                --text-secondary: #B0B0A8;
                --text-tertiary: #777770;
                --accent: #F87171;
                --accent-hover: #EF4444;
                --accent-orange: #FB923C;
                --border-color: #2A2A2A;
                --border-hover: #F87171;
                --badge-recente-bg: #431407;
                --badge-recente-text: #FDBA74;
                --badge-fontes-bg: #1F2937;
                --badge-fontes-text: #D1D5DB;
                --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
                --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
                --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
            }
        }

        /* ══════════════════════════════════════════════
           RESET & BASE
           ══════════════════════════════════════════════ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

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

        /* ══════════════════════════════════════════════
           ANIMATIONS
           ══════════════════════════════════════════════ */
        @keyframes pulse-dot {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: .55;
                transform: scale(1.35);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: .6;
            }
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(18px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes timeline-dot-glow {

            0%,
            100% {
                box-shadow: 0 0 6px rgba(239, 68, 68, 0.3);
            }

            50% {
                box-shadow: 0 0 14px rgba(239, 68, 68, 0.5), 0 0 24px rgba(239, 68, 68, 0.25);
            }
        }

        /* ══════════════════════════════════════════════
           HEADER
           ══════════════════════════════════════════════ */
        .header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--bg-header);
            backdrop-filter: blur(14px) saturate(1.6);
            -webkit-backdrop-filter: blur(14px) saturate(1.6);
            border-bottom: 1px solid var(--border-color);
            padding: 0 24px;
        }

        .header-inner {
            max-width: 1120px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 58px;
        }

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

        .pulse-dot {
            width: 10px;
            height: 10px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
            flex-shrink: 0;
        }

        .logo {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.4rem;
            letter-spacing: -0.03em;
            color: var(--text-primary);
        }

        .tagline {
            font-size: 0.78rem;
            color: var(--text-tertiary);
            font-weight: 400;
            margin-left: 4px;
            display: none;
        }

        @media (min-width: 640px) {
            .tagline {
                display: inline;
            }
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 0.8rem;
            color: var(--text-tertiary);
        }

        .header-date {
            font-weight: 500;
            color: var(--text-secondary);
        }

        .metrics-badge {
            background: var(--badge-fontes-bg);
            color: var(--badge-fontes-text);
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            font-size: 0.72rem;
            font-weight: 600;
            white-space: nowrap;
        }

        /* ══════════════════════════════════════════════
           PAGE CONTAINER (2-column grid)
           ══════════════════════════════════════════════ */
        .page-container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 28px 20px 0;
            display: grid;
            grid-template-columns: 2.2fr 1fr;
            gap: 32px;
        }

        @media (max-width: 900px) {
            .page-container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        /* ══════════════════════════════════════════════
           MAIN CONTENT (left column)
           ══════════════════════════════════════════════ */
        .main-content {
            min-width: 0;
        }

        /* ══════════════════════════════════════════════
           BADGES (shared)
           ══════════════════════════════════════════════ */
        .badge {
            display: inline-flex;
            align-items: center;
            padding: 3px 10px;
            border-radius: var(--radius-pill);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .badge-agora {
            background: var(--badge-agora-bg);
            color: var(--badge-agora-text);
            animation: pulse 2s ease-in-out infinite;
        }

        .badge-recente {
            background: var(--badge-recente-bg);
            color: var(--badge-recente-text);
        }

        .badge-fontes {
            background: var(--badge-fontes-bg);
            color: var(--badge-fontes-text);
        }

        .cat-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .cat-dot-tecnologia {
            background: var(--cat-tecnologia);
        }

        .cat-dot-politica {
            background: var(--cat-politica);
        }

        .cat-dot-geral {
            background: var(--cat-geral);
        }

        .cat-label {
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-tertiary);
        }

        /* ══════════════════════════════════════════════
           COVERAGE BAR
           ══════════════════════════════════════════════ */
        .coverage-bar-wrapper {
            flex: 1;
            min-width: 80px;
            max-width: 180px;
            height: 5px;
            background: var(--border-color);
            border-radius: var(--radius-pill);
            overflow: hidden;
        }

        .coverage-bar {
            height: 100%;
            border-radius: var(--radius-pill);
            background: linear-gradient(90deg, var(--accent), var(--accent-orange));
            transition: width 0.6s ease-out;
        }

        .coverage-1 {
            width: 20%;
        }

        .coverage-2 {
            width: 40%;
        }

        .coverage-3 {
            width: 60%;
        }

        .coverage-4 {
            width: 80%;
        }

        .coverage-5 {
            width: 100%;
        }

        /* ══════════════════════════════════════════════
           SOURCE CHIPS (shared)
           ══════════════════════════════════════════════ */
        .source-chip {
            display: inline-block;
            font-size: 0.73rem;
            font-weight: 500;
            color: var(--text-secondary);
            background: var(--badge-fontes-bg);
            padding: 2px 9px;
            border-radius: var(--radius-pill);
            transition: background var(--transition), color var(--transition);
        }

        .source-chip:hover {
            background: var(--accent);
            color: #fff;
        }

        /* ══════════════════════════════════════════════
           HERO SECTION
           ══════════════════════════════════════════════ */
        .hero {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            position: relative;
            margin-bottom: 32px;
            animation: fade-in-up 0.5s ease-out both;
            transition: box-shadow var(--transition);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--accent), var(--accent-orange));
            border-radius: 4px 0 0 4px;
            z-index: 2;
        }

        .hero:hover {
            box-shadow: var(--shadow-lg);
        }

        .hero-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-bottom: 1px solid var(--border-color);
        }

        .hero-body {
            padding: 28px 28px 24px;
        }

        .hero-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: 1.85rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.025em;
            margin-bottom: 10px;
            color: var(--text-primary);
            transition: color var(--transition);
        }

        .hero-title a:hover {
            color: var(--accent);
        }

        .hero-summary {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.65;
            margin-bottom: 14px;
        }

        .hero-author {
            font-size: 0.82rem;
            color: var(--text-tertiary);
            margin-bottom: 16px;
        }

        .hero-author strong {
            color: var(--text-secondary);
            font-weight: 600;
        }

        .hero-bar-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            flex-wrap: wrap;
        }

        /* Hero sources — detailed Veículo: Título format */
        .hero-sources {
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px solid var(--border-color);
        }

        .hero-sources-label {
            font-size: 0.72rem;
            color: var(--text-tertiary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 8px;
            display: block;
        }

        .hero-sources-list {
            list-style: none;
            padding-left: 12px;
            border-left: 2px solid var(--border-color);
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .hero-sources-list li a {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.45;
            transition: color var(--transition);
            display: block;
        }

        .hero-sources-list li a:hover {
            color: var(--accent);
        }

        .hero-sources-list li a strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* ══════════════════════════════════════════════
           DESTAQUES SECTION (grid 2-col cards)
           ══════════════════════════════════════════════ */
        .destaques-header {
            font-family: var(--font-display);
            font-size: 0.82rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-tertiary);
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }

        .destaques-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 8px;
        }

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

        .destaque-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-left: 3px solid transparent;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
            animation: fade-in-up 0.45s ease-out both;
        }

        .destaque-card:nth-child(1) {
            animation-delay: 0.05s;
        }

        .destaque-card:nth-child(2) {
            animation-delay: 0.10s;
        }

        .destaque-card:nth-child(3) {
            animation-delay: 0.15s;
        }

        .destaque-card:nth-child(4) {
            animation-delay: 0.20s;
        }

        .destaque-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-left-color: var(--border-hover);
        }

        .destaque-card-image {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-bottom: 1px solid var(--border-color);
        }

        .destaque-card-body {
            padding: 16px 16px 14px;
        }

        .destaque-card-meta {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 6px;
            flex-wrap: wrap;
        }

        .destaque-card-title {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 600;
            line-height: 1.35;
            letter-spacing: -0.015em;
            margin-bottom: 8px;
            color: var(--text-primary);
            transition: color var(--transition);
        }

        .destaque-card-title a:hover {
            color: var(--accent);
        }

        .destaque-card-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .destaque-card-time {
            font-size: 0.72rem;
            color: var(--text-tertiary);
        }

        /* Card sources — Veículo: Título (truncated) */
        .card-sources {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px dashed var(--border-color);
        }

        .card-source-link {
            font-size: 0.78rem;
            color: var(--text-secondary);
            line-height: 1.4;
            transition: color var(--transition);
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .card-source-link:hover {
            color: var(--accent);
        }

        .card-source-link strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* ══════════════════════════════════════════════
           SIDEBAR
           ══════════════════════════════════════════════ */
        .sidebar {
            position: sticky;
            top: 80px;
            align-self: start;
        }

        .sidebar-section {
            background: var(--bg-sidebar);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 20px 18px;
            margin-bottom: 20px;
        }

        .sidebar-title {
            font-family: var(--font-display);
            font-size: 0.78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-tertiary);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
            margin-bottom: 14px;
        }

        .recent-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .recent-item {
            border-bottom: 1px dotted var(--border-color);
            padding-bottom: 10px;
        }

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

        .recent-source {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            display: block;
            margin-bottom: 2px;
        }

        .recent-link {
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text-primary);
            line-height: 1.4;
            display: block;
            transition: color var(--transition);
        }

        .recent-link:hover {
            color: var(--accent);
        }

        .recent-time {
            font-size: 0.68rem;
            color: var(--text-tertiary);
            display: block;
            margin-top: 2px;
        }

        /* Ad slot */
        .ad-slot {
            background: var(--bg-sidebar);
            border: 1px dashed var(--border-color);
            border-radius: var(--radius);
            padding: 20px 16px;
            text-align: center;
            min-height: 250px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 20px;
        }

        .ad-label {
            display: block;
            font-size: 0.62rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--text-tertiary);
            font-weight: 600;
            margin-bottom: 12px;
            padding: 2px 10px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-pill);
        }

        .ad-placeholder-icon {
            font-size: 1.8rem;
            opacity: 0.2;
            margin-top: 60px;
        }

        /* ══════════════════════════════════════════════
           TIMELINE SECTION (full-width, alt bg)
           ══════════════════════════════════════════════ */
        .timeline-section {
            background: var(--bg-section-alt);
            border-top: 1px solid var(--border-color);
            padding: 40px 20px 48px;
            margin-top: 36px;
        }

        .timeline-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline-header {
            font-family: var(--font-display);
            font-size: 0.82rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-tertiary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }

        .timeline-feed {
            position: relative;
            padding: 8px 0 0;
        }

        /* Vertical timeline line */
        .timeline-feed::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: calc(70px + 11px);
            width: 2px;
            background: var(--border-color);
            z-index: 0;
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 70px 1fr;
            gap: 22px;
            padding: 18px 0;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            transition: background-color var(--transition);
            animation: fade-in-up 0.4s ease-out both;
        }

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

        .timeline-item:nth-child(1) {
            animation-delay: 0.05s;
        }

        .timeline-item:nth-child(2) {
            animation-delay: 0.10s;
        }

        .timeline-item:nth-child(3) {
            animation-delay: 0.12s;
        }

        .timeline-item:nth-child(4) {
            animation-delay: 0.14s;
        }

        .timeline-item:nth-child(5) {
            animation-delay: 0.16s;
        }

        .timeline-item:nth-child(6) {
            animation-delay: 0.18s;
        }

        .timeline-item:nth-child(n+7) {
            animation-delay: 0.20s;
        }

        .timeline-item:hover {
            background-color: rgba(0, 0, 0, 0.02);
        }

        @media (prefers-color-scheme: dark) {
            .timeline-item:hover {
                background-color: rgba(255, 255, 255, 0.02);
            }
        }

        /* Timeline dot */
        .timeline-item::before {
            content: '';
            position: absolute;
            left: calc(70px + 11px - 4px);
            top: 26px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--text-tertiary);
            z-index: 1;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .timeline-hot::before {
            background: var(--accent);
            box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
            animation: timeline-dot-glow 2s ease-in-out infinite;
        }

        .timeline-warm::before {
            background: var(--accent-orange);
            opacity: 0.75;
        }

        .timeline-timestamp {
            font-family: var(--font-display);
            font-weight: 500;
            font-size: 0.88rem;
            color: var(--text-tertiary);
            text-align: right;
            padding-top: 4px;
            user-select: none;
            transition: color var(--transition);
        }

        .timeline-item:hover .timeline-timestamp {
            color: var(--text-secondary);
            font-weight: 600;
        }

        .timeline-content {
            padding-left: 18px;
            border-left: 1px solid var(--border-color);
            transition: border-color 0.3s ease;
        }

        /* Variable border width by source count */
        .timeline-content.tl-border-2 {
            border-left-width: 2px;
            border-left-color: var(--accent);
        }

        .timeline-content.tl-border-3 {
            border-left-width: 3px;
            border-left-color: var(--accent);
        }

        .timeline-content.tl-border-4 {
            border-left-width: 4px;
            border-left-color: var(--accent);
        }

        .timeline-content.tl-border-5 {
            border-left-width: 5px;
            border-left-color: var(--accent);
        }

        .timeline-source {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.73rem;
            font-weight: 500;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 3px;
        }

        .timeline-item-title {
            display: block;
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1.05rem;
            line-height: 1.4;
            color: var(--text-primary);
            margin-bottom: 6px;
            transition: color var(--transition);
        }

        .timeline-item-title:hover {
            color: var(--accent);
        }

        .timeline-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 4px;
        }

        .timeline-chips {
            display: flex;
            align-items: center;
            gap: 5px;
            flex-wrap: wrap;
        }

        .timeline-count {
            font-family: var(--font-display);
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--text-tertiary);
        }

        /* ══════════════════════════════════════════════
           EMPTY STATES
           ══════════════════════════════════════════════ */
        .empty-state {
            text-align: center;
            padding: 50px 20px;
            color: var(--text-tertiary);
        }

        .empty-state-icon {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

        .empty-state-text {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 500;
        }

        .empty-state-sub {
            font-size: 0.85rem;
            margin-top: 4px;
        }

        /* ══════════════════════════════════════════════
           FOOTER
           ══════════════════════════════════════════════ */
        .footer {
            max-width: 1120px;
            margin: 0 auto;
            padding: 24px 20px 36px;
            text-align: center;
            font-size: 0.76rem;
            color: var(--text-tertiary);
            border-top: 1px solid var(--border-color);
        }

        .footer strong {
            font-weight: 600;
            color: var(--text-secondary);
        }

        /* ══════════════════════════════════════════════
           PREVIEW BADGE
           ══════════════════════════════════════════════ */
        .preview-badge {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--accent);
            color: #FFFFFF;
            font-family: var(--font-display);
            font-size: 0.78rem;
            font-weight: 700;
            padding: 8px 18px;
            border-radius: var(--radius-pill);
            box-shadow: var(--shadow-md);
            z-index: 200;
            animation: pulse 2.5s ease-in-out infinite;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        /* ══════════════════════════════════════════════
           RESPONSIVE — TABLET
           ══════════════════════════════════════════════ */
        @media (max-width: 900px) {
            .sidebar {
                position: static;
            }

            .hero-image {
                height: 220px;
            }
        }

        /* ══════════════════════════════════════════════
           RESPONSIVE — MOBILE
           ══════════════════════════════════════════════ */
        @media (max-width: 480px) {
            .header-inner {
                height: 50px;
            }

            .logo {
                font-size: 1.2rem;
            }

            .page-container {
                padding: 20px 14px 0;
            }

            .hero-image {
                height: 180px;
            }

            .hero-body {
                padding: 20px 16px 18px;
            }

            .hero-title {
                font-size: 1.45rem;
            }

            .hero-summary {
                font-size: 0.92rem;
            }

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

            .destaque-card-title {
                font-size: 0.98rem;
            }

            .timeline-section {
                padding: 28px 14px 36px;
            }

            .timeline-item {
                grid-template-columns: 1fr;
                gap: 4px;
                padding: 14px 0 14px 22px;
            }

            .timeline-feed::before {
                left: 7px;
            }

            .timeline-item::before {
                left: 3px;
                top: 20px;
            }

            .timeline-timestamp {
                text-align: left;
                font-size: 0.75rem;
                color: var(--text-tertiary);
            }

            .timeline-content {
                padding-left: 14px;
            }

            .timeline-item-title {
                font-size: 0.95rem;
            }
        }

        @media (min-width: 481px) and (max-width: 768px) {
            .hero-title {
                font-size: 1.6rem;
            }
        }