/* ============================================
   hilman.id - Stylesheet
   Professional Indonesian Trend Blog
   PageSpeed Optimized / Responsive / SEO
   ============================================ */

/* CSS Variables */
:root {
    --bg: #fafbfc;
    --bg-alt: #f1f5f9;
    --bg-card: #ffffff;
    --bg-header: rgba(255,255,255,0.92);
    --text: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --primary: #2563eb;
    --primary-light: #dbeafe;
    --primary-dark: #1d4ed8;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1200px;
    --header-h: 64px;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #0f172a;
        --bg-alt: #1e293b;
        --bg-card: #1e293b;
        --bg-header: rgba(15,23,42,0.95);
        --text: #f1f5f9;
        --text-secondary: #94a3b8;
        --text-muted: #64748b;
        --border: #334155;
        --primary-light: #1e3a5f;
        --shadow: 0 1px 3px rgba(0,0,0,0.2);
        --shadow-md: 0 4px 6px rgba(0,0,0,0.3);
        --shadow-lg: 0 10px 15px rgba(0,0,0,0.4);
    }
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, button, textarea { font-family: inherit; font-size: inherit; }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 800px; }

/* ============ HEADER ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
    transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--text);
    text-decoration: none;
    flex-shrink: 0;
}
.logo:hover { color: var(--text); }
.logo-icon { font-size: 1.5rem; }
.logo-dot { color: var(--primary); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.main-nav::-webkit-scrollbar { display: none; }
.nav-link {
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
}
.nav-link:hover { color: var(--text); background: var(--bg-alt); }
.nav-link.active { color: var(--primary); background: var(--primary-light); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

.search-toggle, .nav-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all 0.2s;
}
.search-toggle:hover, .nav-toggle:hover { background: var(--bg-alt); color: var(--text); }

.nav-toggle { display: none; flex-direction: column; gap: 4px; }
.nav-toggle span {
    width: 20px; height: 2px; background: currentColor;
    border-radius: 1px; transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.search-bar {
    display: none;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border);
}
.search-bar.active { display: block; }
.search-bar form {
    display: flex;
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
}
.search-bar input {
    flex: 1;
    padding: 0.6rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}
.search-bar input:focus { border-color: var(--primary); }
.search-bar button {
    padding: 0.6rem 1rem;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
}

/* ============ HERO ============ */
.hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 50%, #1a1a2e 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(37,99,235,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(139,92,246,0.1) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.highlight {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.hero-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 0.35rem;
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-search input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1.25rem;
    color: #fff;
    font-size: 1rem;
    outline: none;
}
.hero-search input::placeholder { color: #64748b; }
.hero-search button {
    padding: 0.75rem 1.75rem;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
}
.hero-search button:hover { background: var(--primary-dark); }

/* ============ SECTIONS ============ */
.section { padding: 3rem 0; }
.section-alt { background: var(--bg-alt); }
.section-header { margin-bottom: 2rem; }
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.section-desc { color: var(--text-secondary); margin-top: 0.25rem; font-size: 0.95rem; }

/* ============ GRID ============ */
.grid { display: grid; gap: 1.25rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ============ CARDS ============ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: transparent;
}
.card-featured { border-left: 4px solid var(--primary); }
.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    width: fit-content;
}
.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
.card-title a { color: var(--text); }
.card-title a:hover { color: var(--primary); }
.card-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    flex: 1;
}
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

/* ============ CATEGORY GRID ============ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.25s;
    text-align: center;
    border-top: 3px solid var(--cat-color, var(--primary));
}
.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    border-top-color: var(--cat-color, var(--primary));
}
.cat-icon { font-size: 1.75rem; }
.cat-name { font-weight: 600; color: var(--text); font-size: 0.9rem; }
.cat-count { font-size: 0.78rem; color: var(--text-muted); }

/* ============ YEAR GRID ============ */
.year-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.year-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1.25rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.25s;
}
.year-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.year-num { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.year-label { font-size: 0.8rem; color: var(--text-muted); }

/* ============ PAGE HEADER ============ */
.page-header {
    background: var(--bg-alt);
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid var(--border);
}
.page-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.page-title { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; }
.page-desc { color: var(--text-secondary); margin-top: 0.5rem; font-size: 1rem; }

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { color: var(--text-muted); font-size: 0.7rem; }
.breadcrumbs .current { color: var(--text); font-weight: 500; }

/* ============ POST SINGLE ============ */
.post-single { padding: 2rem 0 3rem; }
.post-header { margin-bottom: 2rem; }
.post-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}
.post-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.post-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.post-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text);
}
.post-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    letter-spacing: -0.01em;
}
.post-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}
.post-body p { margin-bottom: 1.25rem; }
.post-body ul, .post-body ol { margin: 1rem 0 1.25rem 1.5rem; }
.post-body li { margin-bottom: 0.5rem; }
.post-body a { color: var(--primary); text-decoration: underline; }
.post-body strong { font-weight: 600; }

/* Post Actions */
.post-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.like-btn, .share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: var(--bg-card);
}
.like-btn:hover { border-color: var(--danger); color: var(--danger); background: #fef2f2; }
.like-btn.liked { background: var(--danger); color: #fff; border-color: var(--danger); }
.like-btn.liked svg { fill: #fff; }
.share-btn:hover { border-color: var(--primary); color: var(--primary); }

.post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.tag {
    padding: 0.35rem 0.9rem;
    background: var(--bg-alt);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.tag:hover { background: var(--primary-light); color: var(--primary); }

/* ============ SEARCH ============ */
.search-form-inline {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin-top: 1.5rem;
}
.search-form-inline input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    color: var(--text);
    outline: none;
}
.search-form-inline input:focus { border-color: var(--primary); }
.search-form-inline button {
    padding: 0.7rem 1.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

/* ============ PAGINATION ============ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.page-btn, .page-num {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all 0.2s;
}
.page-btn:hover, .page-num:hover { border-color: var(--primary); color: var(--primary); }
.page-num.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.page-dots { padding: 0 0.5rem; color: var(--text-muted); }

/* ============ STATIC PAGES ============ */
.static-page { line-height: 1.8; }
.static-page h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.static-page h3 { font-size: 1.15rem; font-weight: 600; margin: 1.75rem 0 0.75rem; }
.static-page p { margin-bottom: 1rem; color: var(--text-secondary); }
.static-page a { color: var(--primary); }
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.contact-item {
    padding: 1.25rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.contact-item strong { display: block; margin-bottom: 0.25rem; color: var(--text); }
.contact-item p { margin-bottom: 0; color: var(--text-secondary); }

/* ============ FOOTER ============ */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #1e293b;
}
.footer-logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: #f1f5f9;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--primary); }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }
.footer-links h4 { color: #f1f5f9; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.75rem; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: #94a3b8; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: #e2e8f0; }
.footer-bottom { padding-top: 1.5rem; text-align: center; font-size: 0.82rem; }

/* ============ EMPTY STATE ============ */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--bg-header);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        flex-direction: column;
        gap: 0.25rem;
        box-shadow: var(--shadow-lg);
    }
    .main-nav.active { display: flex; }
    .nav-link { padding: 0.75rem 1rem; width: 100%; }

    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .hero { padding: 3rem 0; }
    .hero-title { font-size: 1.5rem; }
    .hero-search { flex-direction: column; border-radius: var(--radius); }
    .hero-search button { border-radius: var(--radius-sm); }

    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info { grid-template-columns: 1fr; }
    .post-info { flex-direction: column; gap: 0.5rem; }

    .section { padding: 2rem 0; }
}

@media (max-width: 480px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .category-card { padding: 1rem 0.75rem; }
    .cat-icon { font-size: 1.5rem; }
    .year-grid { gap: 0.75rem; }
    .year-card { padding: 1rem 1.5rem; }
}

/* ============ PRINT ============ */
@media print {
    .site-header, .site-footer, .post-actions, .search-bar, .nav-toggle,
    .search-toggle, .pagination, .related-section { display: none !important; }
    .post-body { font-size: 12pt; }
    body { background: #fff; color: #000; }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card { animation: fadeInUp 0.4s ease both; }
.card:nth-child(2) { animation-delay: 0.05s; }
.card:nth-child(3) { animation-delay: 0.1s; }
.card:nth-child(4) { animation-delay: 0.15s; }
.card:nth-child(5) { animation-delay: 0.2s; }
.card:nth-child(6) { animation-delay: 0.25s; }

/* Smooth Focus */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Selection */
::selection { background: var(--primary); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }

/* ============ CARD THUMBNAIL ============ */
.card-thumb {
    display: block;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    margin: -1.5rem -1.5rem 0 -1.5rem;
    margin-bottom: 1rem;
    background: var(--bg-alt);
}
.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.card:hover .card-thumb img {
    transform: scale(1.05);
}
.card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-content .card-meta {
    margin-top: auto;
}

/* ============ LOGO IMG ============ */
.logo-img { height: 36px; width: auto; }
.footer-logo-img { height: 24px; width: auto; }

/* ============ POST IMAGE ============ */
.post-image {
    margin: 0 0 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-alt);
}
.post-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* ============ SHARE PANEL ============ */
.share-panel {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.share-link {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    transition: opacity 0.2s;
}
.share-link:hover { opacity: 0.85; color: #fff; }
.share-wa { background: #25d366; }
.share-tw { background: #1da1f2; }
.share-fb { background: #1877f2; }

/* ============ CATEGORY PILLS ============ */
.cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.cat-pill:hover {
    border-color: var(--cat-color, var(--primary));
    color: var(--cat-color, var(--primary));
    background: var(--primary-light);
}
.cat-pill small {
    background: var(--bg-alt);
    padding: 0.1rem 0.4rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-left: 0.1rem;
}

/* ============ SECTION LINK ============ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.section-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}
.section-link:hover { text-decoration: underline; }

/* ============ RESPONSIVE THUMB FIX ============ */
@media (max-width: 768px) {
    .cat-pills { gap: 0.4rem; }
    .cat-pill { padding: 0.35rem 0.7rem; font-size: 0.78rem; }
}