/* =====================================================
   Edge Reviewers — News Portal
   Professional Front-End Design System
   ===================================================== */

:root {
    /* ---- Tokens ---- */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Poppins', 'Inter', var(--font-sans);

    --brand: #1d4ed8;
    --brand-dark: #1e3a8a;
    --brand-soft: #eef2ff;
    --accent: #e11d48;
    --accent-soft: #ffe4e6;
    --gold: #f59e0b;

    --ink: #0f172a;
    --ink-2: #334155;
    --muted: #64748b;
    --line: #e2e8f0;
    --bg: #f4f6fb;
    --surface: #ffffff;

    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, .06);
    --shadow: 0 8px 24px rgba(15, 23, 42, .08);
    --shadow-lg: 0 20px 48px rgba(15, 23, 42, .14);

    --transition: .25s cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a { color: var(--brand); transition: color var(--transition); }
a:hover { color: var(--brand-dark); }
img { max-width: 100%; }

h1, h2, h3, h4, h5, h6, .navbar-brand, .display-font { font-family: var(--font-display); }

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
    background: #0b1220;
    color: #cbd5e1;
    font-size: .8rem;
    padding: .45rem 0;
    letter-spacing: .02em;
}
.top-bar a { color: #e2e8f0; text-decoration: none; transition: color var(--transition); }
.top-bar a:hover { color: #fff; }
.top-bar .social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(255, 255, 255, .08); margin-left: 6px;
}
.top-bar .social-link:hover { background: var(--brand); color: #fff; }
.top-bar .live-dot {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%;
    background: #22c55e; margin-right: 6px; animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .55); }
    70% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* =====================================================
   BRAND BAR
   ===================================================== */
.brand-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 1.1rem 0;
}
.brand-bar .brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em;
    color: var(--ink); text-decoration: none; line-height: 1;
}
.brand-bar .brand-name span { color: var(--brand); }
.brand-bar .brand-tagline {
    color: var(--muted); font-size: .78rem; letter-spacing: .04em;
    text-transform: uppercase; font-weight: 600; margin-top: 4px;
}
.brand-bar .search-pill {
    border-radius: 999px; border: 1px solid var(--line);
    background: var(--bg); padding: .3rem .5rem .3rem 1rem;
    display: flex; align-items: center; gap: .35rem; width: 100%; max-width: 300px;
}
.brand-bar .search-pill input {
    border: 0; background: transparent; outline: none; flex: 1;
    font-size: .9rem; color: var(--ink); min-width: 0;
}
.brand-bar .search-pill input::placeholder { color: #94a3b8; }
.brand-bar .search-pill button {
    border: 0; background: var(--brand); color: #fff;
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.brand-bar .search-pill button:hover { background: var(--brand-dark); }
.brand-bar .today-chip {
    font-size: .78rem; color: var(--muted); text-align: right; line-height: 1.4;
}
.brand-bar .today-chip strong { color: var(--ink); display: block; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar { background: var(--surface); padding: 0; }
.navbar-main { border-bottom: 2px solid var(--brand); }
.navbar-main.navbar-scrolled { box-shadow: var(--shadow); }
.navbar .navbar-nav { gap: 2px; }
.navbar .nav-link {
    padding: .85rem 1rem !important;
    font-weight: 600; font-size: .92rem; color: var(--ink-2);
    display: flex; align-items: center; gap: 6px; position: relative;
}
.navbar .nav-link::after {
    content: ''; position: absolute; left: 1rem; right: 1rem; bottom: 0;
    height: 2px; background: var(--brand); border-radius: 2px;
    transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--brand); }

.dropdown-menu {
    border: 1px solid var(--line); border-radius: var(--radius-sm);
    box-shadow: var(--shadow); padding: .4rem; margin-top: .2rem;
}
.dropdown-item {
    border-radius: 8px; font-size: .9rem; font-weight: 500;
    padding: .55rem .8rem; color: var(--ink-2);
}
.dropdown-item:hover { background: var(--brand-soft); color: var(--brand); }

@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu { display: block; }
    .navbar .dropdown:hover > .nav-link::after { transform: scaleX(1); }
}

/* Trending ticker */
.breaking-bar {
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff; font-size: .84rem; overflow: hidden; white-space: nowrap;
}
.breaking-bar .breaking-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; padding: .5rem 1rem; flex: none; font-size: .78rem;
}
.breaking-bar .breaking-label i { animation: pulseDot 1.6s infinite; }
.breaking-track { display: inline-block; padding: .5rem 0; animation: marquee 38s linear infinite; }
.breaking-bar:hover .breaking-track { animation-play-state: paused; }
.breaking-track a {
    color: #fff; text-decoration: none; margin-right: 2.6rem; font-weight: 500;
}
.breaking-track a:hover { color: #fde68a; }
.breaking-track .sep { opacity: .4; margin-right: 2.6rem; }
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =====================================================
   GENERAL LAYOUT
   ===================================================== */
.main-wrap { padding-top: 1.75rem; }

/* Section headings */
.section-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; margin-bottom: 1.25rem;
}
.section-head .title {
    font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
    color: var(--ink); display: flex; align-items: center; gap: .6rem; margin: 0;
}
.section-head .title::before {
    content: ''; width: 5px; height: 1.3rem; border-radius: 4px;
    background: linear-gradient(var(--accent), var(--brand)); flex: none;
}
.section-head .eyebrow {
    display: block; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--brand);
}
.section-head .link-more {
    font-size: .85rem; font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
}
.section-head .link-more:hover { gap: 10px; }

/* =====================================================
   CARDS / NEWS GRID
   ===================================================== */
.news-card {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    height: 100%; display: flex; flex-direction: column;
}
.news-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow);
    border-color: #c7d2fe;
}
.news-card .img-wrap {
    position: relative; overflow: hidden; aspect-ratio: 16/9; background: var(--brand-soft);
}
.news-card .img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.news-card:hover .img-wrap img { transform: scale(1.06); }
.news-card .img-wrap::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(transparent 55%, rgba(15, 23, 42, .55));
    opacity: 0; transition: opacity var(--transition);
}
.news-card:hover .img-wrap::after { opacity: 1; }
.news-card .cat-chip {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    background: var(--surface); color: var(--brand); font-weight: 700;
    font-size: .72rem; letter-spacing: .05em; text-transform: uppercase;
    padding: .3rem .7rem; border-radius: 999px; text-decoration: none;
    box-shadow: var(--shadow-sm);
}
.news-card .cat-chip:hover { background: var(--brand); color: #fff; }
.news-card .card-body { padding: 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.news-card .card-title a {
    color: var(--ink); text-decoration: none; font-weight: 700;
    font-size: 1.02rem; line-height: 1.4; font-family: var(--font-display);
    transition: color var(--transition);
}
.news-card .card-title a:hover { color: var(--brand); }
.news-card .card-text { color: var(--muted); font-size: .88rem; line-height: 1.6; }
.news-card .meta-line {
    display: flex; flex-wrap: wrap; gap: .9rem; align-items: center;
    color: var(--muted); font-size: .78rem; margin-top: auto; padding-top: .8rem;
    border-top: 1px dashed var(--line);
}
.news-card .meta-line i { color: var(--brand); }

/* Horizontal (list) card used on category/search */
.news-card-h .img-wrap { aspect-ratio: auto; height: 100%; min-height: 170px; }
.news-card-h .card-title a { font-size: 1.12rem; }

/* =====================================================
   HERO
   ===================================================== */
.hero-slider {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); position: relative;
}
.hero-slider .carousel-item { position: relative; }
.hero-slider .carousel-item img { width: 100%; height: 480px; object-fit: cover; }
.hero-slider .carousel-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0) 25%, rgba(15,23,42,.78) 100%);
}
.hero-slider .carousel-caption {
    left: 0; right: 0; bottom: 0; text-align: left; padding: 2rem 2.5rem;
    z-index: 2;
}
.hero-slider .hero-meta { color: #cbd5e1; font-size: .82rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-slider .hero-title {
    font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.25;
    margin: .5rem 0 .75rem; color: #fff;
}
.hero-slider .hero-title a { color: #fff; text-decoration: none; }
.hero-slider .hero-title a:hover { color: #bfdbfe; }
.hero-slider .hero-excerpt { color: #e2e8f0; max-width: 620px; font-size: .95rem; }
.hero-slider .carousel-indicators { bottom: 1.25rem; }
.hero-slider .carousel-indicators [data-bs-target] {
    width: 34px; height: 4px; border-radius: 4px; border: 0; background: rgba(255,255,255,.45);
}
.hero-slider .carousel-indicators .active { background: var(--accent); }
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next { width: 8%; opacity: 0; transition: opacity var(--transition); }
.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next { opacity: 1; }
.hero-badge {
    display: inline-block; background: var(--accent); color: #fff;
    font-weight: 700; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
    padding: .32rem .8rem; border-radius: 999px; margin-bottom: .6rem;
}

/* =====================================================
   POST DETAIL
   ===================================================== */
.post-article .post-content {
    font-size: 1.06rem; line-height: 1.85; color: #1e293b;
}
.post-article .post-content h1, .post-article .post-content h2,
.post-article .post-content h3, .post-article .post-content h4 { color: var(--ink); margin-top: 1.6rem; }
.post-article .post-content img { border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.post-article .post-content blockquote {
    border-left: 4px solid var(--brand); background: var(--brand-soft);
    padding: 1rem 1.25rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic; color: var(--ink-2);
}
.post-article .post-content a { text-decoration: underline; text-underline-offset: 3px; }
.post-article .post-content pre { background: #0f172a; color: #e2e8f0; padding: 1.1rem; border-radius: var(--radius-sm); }

.article-hero {
    border-radius: var(--radius-lg); overflow: hidden; position: relative;
    box-shadow: var(--shadow);
}
.article-hero img { width: 100%; max-height: 480px; object-fit: cover; }

.post-meta-line {
    display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
    color: var(--muted); font-size: .84rem;
}
.post-meta-line .avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: #fff; display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .85rem;
}

/* Share */
.share-bar a {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; border-radius: 999px; padding: .45rem 1.1rem;
    color: #fff; text-decoration: none; font-size: .86rem; font-weight: 600;
    transition: transform var(--transition), opacity var(--transition);
}
.share-bar a:hover { transform: translateY(-2px); color: #fff; opacity: .92; }
.share-fb { background: #1877f2; }
.share-tw { background: #1d9bf0; }
.share-wa { background: #25d366; }
.share-li { background: #0a66c2; }

/* Comments */
.comment-item {
    background: var(--surface); border: 1px solid var(--line);
    border-left: 4px solid var(--brand); border-radius: var(--radius-sm);
    padding: 1.1rem 1.25rem; margin-bottom: 1rem;
}
.comment-item .comment-avatar {
    width: 42px; height: 42px; border-radius: 50%; flex: none;
    background: var(--brand-soft); color: var(--brand);
    display: flex; align-items: center; justify-content: center; font-weight: 800;
}

/* =====================================================
   SIDEBAR WIDGETS
   ===================================================== */
.sidebar-sticky { position: sticky; top: 90px; }
.sidebar-widget {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 1.4rem; margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.sidebar-widget h5 {
    font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
    color: var(--ink); display: flex; align-items: center; gap: .6rem;
    margin-bottom: 1.1rem; padding-bottom: .8rem;
    border-bottom: 2px solid var(--line); position: relative;
}
.sidebar-widget h5::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 42px; height: 2px; background: var(--brand);
}
.sidebar-widget h5 i { color: var(--brand); }

.pop-item { display: flex; gap: .85rem; padding: .6rem 0; border-bottom: 1px dashed var(--line); }
.pop-item:last-child { border-bottom: 0; }
.pop-rank {
    flex: none; width: 30px; height: 30px; border-radius: 8px; display: grid;
    place-items: center; font-weight: 800; font-size: .9rem; color: var(--brand);
    background: var(--brand-soft);
}
.pop-item:nth-child(2) .pop-rank { color: var(--gold); background: #fef3c7; }
.pop-item:nth-child(3) .pop-rank { color: var(--accent); background: var(--accent-soft); }
.pop-item .pop-title {
    color: var(--ink); text-decoration: none; font-weight: 600; font-size: .88rem; line-height: 1.45;
}
.pop-item .pop-title:hover { color: var(--brand); }

.mini-thumb { width: 74px; height: 74px; border-radius: var(--radius-sm); object-fit: cover; flex: none; }

.cat-widget-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: .55rem .7rem; border-radius: var(--radius-sm); margin-bottom: .28rem;
    text-decoration: none; color: var(--ink-2); font-weight: 600; font-size: .9rem;
    transition: background var(--transition), color var(--transition);
}
.cat-widget-item:hover { background: var(--brand-soft); color: var(--brand); }
.cat-widget-item .count {
    background: var(--bg); color: var(--muted); font-size: .74rem; font-weight: 700;
    border-radius: 999px; padding: .15rem .6rem;
}
.cat-widget-item:hover .count { background: var(--brand); color: #fff; }

.tag-chip {
    display: inline-block; background: var(--bg); color: var(--ink-2);
    border: 1px solid var(--line); border-radius: 999px;
    padding: .32rem .8rem; font-size: .78rem; font-weight: 600; text-decoration: none;
    margin: 0 .3rem .3rem 0; transition: all var(--transition);
}
.tag-chip:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

/* =====================================================
   PAGE HERO / BREADCRUMB
   ===================================================== */
.page-hero {
    background:
        radial-gradient(1200px 400px at 90% -10%, rgba(59,130,246,.25), transparent 60%),
        radial-gradient(900px 380px at 0% 110%, rgba(225,29,72,.16), transparent 55%),
        linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #fff; padding: 2.6rem 0; margin-bottom: 1.75rem; border-radius: var(--radius-lg);
}
.page-hero h1 { font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.page-hero p { color: #cbd5e1; max-width: 640px; margin-bottom: 0; }
.page-hero .breadcrumb { margin-bottom: 0; }
.page-hero .breadcrumb-item a { color: #93c5fd; text-decoration: none; }
.page-hero .breadcrumb-item.active { color: #e2e8f0; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: #64748b; }

.breadcrumb { background: transparent; padding: 0; }

.page-content {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 2rem; font-size: 1.02rem; line-height: 1.85; color: #1e293b;
    box-shadow: var(--shadow-sm);
}
.page-content h1, .page-content h2, .page-content h3 { margin-top: 1.4rem; color: var(--ink); }
.page-content img { border-radius: var(--radius); }

/* =====================================================
   PAGINATION
   ===================================================== */
.pagination .page-link {
    border: 1px solid var(--line); border-radius: var(--radius-sm) !important;
    margin: 0 3px; color: var(--ink-2); font-weight: 600; min-width: 40px;
    text-align: center; background: var(--surface);
}
.pagination .page-link:hover { background: var(--brand-soft); color: var(--brand); border-color: #c7d2fe; }
.pagination .page-item.active .page-link { background: var(--brand); border-color: var(--brand); color: #fff; }
.pagination .page-item.disabled .page-link { color: #cbd5e1; background: var(--surface); }

/* =====================================================
   BUTTONS / FORMS (front-end)
   ===================================================== */
.btn { border-radius: var(--radius-sm); font-weight: 600; }
.btn-primary { background: var(--brand); border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-outline-primary { color: var(--brand); border-color: #c7d2fe; }
.btn-outline-primary:hover { background: var(--brand); border-color: var(--brand); }
.form-control, .form-select { border-radius: var(--radius-sm); border-color: var(--line); }
.form-control:focus, .form-select:focus {
    border-color: #93c5fd; box-shadow: 0 0 0 3px rgba(29, 78, 216, .12);
}

/* Alerts */
.alert { border-radius: var(--radius-sm); border: 0; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: #0b1220;
    background-image:
        radial-gradient(800px 300px at 100% 0%, rgba(29,78,216,.18), transparent 60%);
    color: #94a3b8; margin-top: 3rem;
}
.site-footer h5 {
    font-family: var(--font-display); color: #fff; font-weight: 700;
    font-size: 1.05rem; margin-bottom: 1.2rem; display: flex; align-items: center; gap: .6rem;
}
.site-footer h5 i { color: var(--brand); }
.site-footer a.footer-link { color: #94a3b8; text-decoration: none; display: block; padding: .28rem 0; font-size: .9rem; }
.site-footer a.footer-link:hover { color: #fff; padding-left: 4px; }
.site-footer .footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%; color: #cbd5e1;
    background: rgba(255,255,255,.06); margin-right: 8px;
    transition: all var(--transition); text-decoration: none;
}
.site-footer .footer-social a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
.site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08); padding: 1.1rem 0;
    font-size: .85rem;
}
.site-footer .newsletter .form-control {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
    color: #fff; border-radius: 999px 0 0 999px; padding-left: 1rem;
}
.site-footer .newsletter .form-control::placeholder { color: #64748b; }
.site-footer .newsletter .form-control:focus { background: rgba(255,255,255,.1); }
.site-footer .newsletter .btn { border-radius: 0 999px 999px 0; }

/* =====================================================
   MISC
   ===================================================== */
.flash-stack {
    position: fixed; top: 20px; right: 20px; z-index: 9999; max-width: 380px;
}
.flash-stack .alert {
    border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
    animation: flashIn .35s ease-out;
}
@keyframes flashIn {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

#backToTop {
    position: fixed; bottom: 22px; right: 22px; z-index: 1005;
    width: 48px; height: 48px; border-radius: 50%; border: 0;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg); cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: all var(--transition); text-decoration: none;
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { transform: translateY(-3px); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Search suggestions */
.search-suggest {
    position: relative;
}
.search-suggest-box {
    position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 1050;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
    box-shadow: var(--shadow); overflow: hidden; min-width: 240px;
}
.search-suggest-item {
    display: flex; justify-content: space-between; align-items: center; gap: .5rem;
    padding: .55rem .85rem; color: var(--ink); text-decoration: none;
    border-bottom: 1px solid #f1f5f9; cursor: pointer; font-size: .9rem;
}
.search-suggest-item:last-child { border-bottom: 0; }
.search-suggest-item:hover, .search-suggest-item.active { background: var(--brand-soft); }
.search-suggest-title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-suggest-cat {
    flex: none; color: var(--muted); font-size: .72rem; background: var(--bg);
    border-radius: 999px; padding: .12rem .55rem;
}
.search-suggest-empty { color: var(--muted); cursor: default; padding: .6rem .85rem; font-size: .87rem; }
.search-suggest-empty:hover { background: #fff; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991.98px) {
    .navbar .navbar-nav { padding: .8rem 0; }
    .navbar .nav-link { padding: .65rem .5rem !important; }
    .hero-slider .carousel-item img { height: 340px; }
    .sidebar-sticky { position: static; }
    .brand-bar .today-chip { display: none; }
    .navbar .nav-link::after { display: none; }
}
@media (max-width: 767.98px) {
    .hero-slider .carousel-item img { height: 260px; }
    .hero-slider .carousel-caption { padding: 1.2rem; }
    .hero-slider .hero-excerpt { display: none; }
    .hero-slider .hero-title { font-size: 1.15rem; }
    .brand-bar .brand-name { font-size: 1.15rem; }
    .page-content { padding: 1.25rem; }
    .top-bar .contact-email { display: none; }
}