/* ===========================
   GLOBAL STYLES & RESET
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-1: #12344d;
    --brand-2: #0b7a75;
    --brand-3: #f4b942;
    --text-primary: #202833;
    --text-muted: #52606d;
    --surface: #ffffff;
    --surface-soft: #f4f7fb;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 10px rgba(17, 24, 39, 0.09);
    --shadow-md: 0 10px 30px rgba(18, 52, 77, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--surface-soft);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(14px, 3vw, 26px);
}

/* ===========================
   NAVBAR
   =========================== */

.navbar {
    background: linear-gradient(125deg, var(--brand-1) 0%, var(--brand-2) 58%, #0d9c8a 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand .logo-text {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    font-weight: bold;
    color: white;
    transition: transform 0.3s;
}

.logo-mark {
    width: auto;
    height: auto;
    max-height: 40px;
    border-radius: 0;
    object-fit: contain;
    box-shadow: none;
    flex-shrink: 0;
}

.navbar-brand .logo-text:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    color: #333;
    min-width: 250px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: #f0f0f0;
    padding-left: 2rem;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    border: 0;
    background: transparent;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    background:
        radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.15) 0, rgba(255, 255, 255, 0) 36%),
        linear-gradient(125deg, var(--brand-1) 0%, var(--brand-2) 60%, #0d9c8a 100%);
    color: white;
    padding: clamp(2.4rem, 8vw, 4.2rem) 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: clamp(1.25rem, 4vw, 2.5rem);
    align-items: center;
}

.hero-copy {
    display: grid;
    gap: 1rem;
}

.hero-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(2rem, 4.8vw, 3.8rem);
    margin-bottom: 0;
    font-weight: 800;
    line-height: 1.05;
    max-width: 12ch;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.18rem);
    margin-bottom: 0;
    opacity: 0.95;
    max-width: 60ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.hero-link {
    color: #f5f8fb;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: minmax(0, 320px);
    gap: 0.75rem;
}

.hero-stat {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem 1.1rem;
    backdrop-filter: blur(10px);
}

.hero-stat strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.1;
}

.hero-stat span {
    display: block;
    margin-top: 0.25rem;
    color: rgba(245, 248, 251, 0.88);
    font-size: 0.92rem;
}

.hero-panel {
    display: grid;
    gap: 1rem;
}

.hero-panel-card {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: calc(var(--radius-lg) + 2px);
    padding: 1.2rem;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.panel-label {
    margin-bottom: 0.9rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 248, 251, 0.8);
}

.hero-notes ul {
    display: grid;
    gap: 0.7rem;
}

.hero-notes li {
    position: relative;
    padding-left: 1.15rem;
    color: rgba(245, 248, 251, 0.95);
}

.hero-notes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    background: var(--brand-3);
}

.search-box {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 0.85rem 1rem;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    min-height: 46px;
}

.search-box button {
    padding: 0.8rem 1.5rem;
    min-height: 46px;
    border: none;
    background: linear-gradient(125deg, var(--brand-1) 0%, var(--brand-2) 70%);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s;
}

.search-box button:hover {
    transform: scale(1.05);
}

.action-strip {
    padding: 0 0 1rem;
    margin-top: -1.1rem;
}

.action-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.action-card {
    display: grid;
    gap: 0.45rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(18, 52, 77, 0.08);
}

.action-card strong {
    font-size: 1.05rem;
    color: var(--text-primary);
}

.action-card p {
    color: var(--text-muted);
    font-size: 0.96rem;
}

.action-card-tag {
    width: fit-content;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #eef6f6;
    color: var(--brand-2);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ===========================
   POPULAR SECTION & CAROUSEL
   =========================== */

.popular-section {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.popular-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.4rem, 2.7vw, 2rem);
    color: var(--text-primary);
}

.carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
    height: 8px;
}

.carousel::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.carousel::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.carousel-item {
    min-width: 160px;
    flex-shrink: 0;
}

.carousel-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    gap: 0.6rem;
    color: var(--text-primary);
}

.carousel-item img {
    display: block;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    padding: 14px;
    background: #fff;
    border-radius: 16px;
    object-fit: contain;
    object-position: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.carousel-name {
    display: block;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
}

.carousel-item:hover img {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===========================
   NEWSPAPERS SECTION
   =========================== */

.newspapers-section {
    padding: 3.5rem 0;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 700px;
}

.newspapers-section h2 {
    margin-bottom: 2rem;
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    color: var(--text-primary);
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--brand-2);
}

.newspapers-section h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.newspapers-section > .container > p {
    color: var(--text-muted);
    max-width: 70ch;
}

.newspapers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 150px), 1fr));
    gap: clamp(0.85rem, 2vw, 1.5rem);
}

.newspaper-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 0;
    padding: 0.85rem;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid rgba(18, 52, 77, 0.08);
    box-shadow: var(--shadow-sm);
}

.newspaper-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.newspaper-logo {
    width: 100%;
    height: clamp(100px, 17vw, 150px);
    background: #f5f5f5;
    border-radius: calc(var(--radius-lg) - 2px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    transition: box-shadow 0.3s;
}

.newspaper-initials {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    z-index: 1;
}

.newspaper-favicon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    image-rendering: auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: clamp(8px, 1.2vw, 12px);
    box-shadow: 0 6px 16px rgba(17, 24, 39, 0.16);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.newspaper-logo.logo-loaded .newspaper-favicon {
    opacity: 1;
}

.newspaper-logo.logo-loaded .newspaper-initials {
    opacity: 0;
}

.newspaper-item:hover .newspaper-logo {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.newspaper-name {
    font-size: clamp(0.8rem, 1.5vw, 0.96rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0.5rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.newspaper-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    background: linear-gradient(125deg, var(--brand-1) 0%, var(--brand-2) 70%);
    color: white;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    transition: transform 0.3s;
    min-height: 38px;
    box-shadow: 0 10px 18px rgba(18, 52, 77, 0.12);
}

.search-clear-button {
    padding: 0.55rem 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(125deg, var(--brand-1) 0%, var(--brand-2) 70%);
}

.newspaper-link:hover {
    transform: scale(1.05);
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about-section {
    background: linear-gradient(125deg, var(--brand-1) 0%, var(--brand-2) 70%);
    color: white;
    padding: clamp(2rem, 6vw, 3rem) 0;
    text-align: center;
    content-visibility: auto;
    contain-intrinsic-size: 1px 420px;
}

.about-section h2 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    margin-bottom: 1.5rem;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    line-height: 1.8;
}

/* ===========================
   SITE PAGES
   =========================== */

.site-pages-section {
    padding-top: 0;
}

.site-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.site-page-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(18, 52, 77, 0.08);
}

.site-page-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.page-hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(244, 185, 66, 0.22) 0, rgba(244, 185, 66, 0) 30%),
        linear-gradient(135deg, #ffffff 0%, #f6fafc 100%);
    border-bottom: 1px solid #e3eaf1;
}

.page-hero .container {
    display: grid;
    gap: 1rem;
}

.page-hero-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: clamp(1.25rem, 4vw, 2rem);
    border: 1px solid rgba(18, 52, 77, 0.08);
}

.page-hero-card p {
    color: var(--text-muted);
    max-width: 70ch;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.page-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #eef6f6;
    color: var(--brand-2);
    font-size: 0.85rem;
    font-weight: 700;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: #162330;
    color: #ecf0f1;
    padding: 3rem 0 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 320px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.1rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--brand-2);
    border-radius: 4px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #0f9684;
}

.no-js-notice {
    position: sticky;
    bottom: 0;
    z-index: 1001;
    background: #fff4d5;
    border-top: 1px solid #ffe2a0;
    color: #5e4300;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.94rem;
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
}

.cookie-banner-content {
    margin: 0 auto;
    max-width: 920px;
    background: #112331;
    color: #f5f8fb;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1rem 1.1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner-content p {
    margin: 0;
    color: #d9e3ea;
}

.cookie-banner-content a {
    color: #8dd6ff;
}

.cookie-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

/* Shared page style for 404/offline pages */
.status-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 20% 18%, rgba(244, 185, 66, 0.28) 0, rgba(244, 185, 66, 0) 36%),
        radial-gradient(circle at 78% 12%, rgba(11, 122, 117, 0.25) 0, rgba(11, 122, 117, 0) 35%),
        linear-gradient(160deg, #eff8ff 0%, #f9fbff 52%, #eef9f8 100%);
    padding: 1.5rem;
}

.status-card {
    width: min(680px, 100%);
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: clamp(1.4rem, 4vw, 2.2rem);
    text-align: center;
}

.status-code {
    font-size: clamp(2.1rem, 9vw, 4.8rem);
    line-height: 1;
    font-weight: 800;
    color: var(--brand-1);
    margin-bottom: 0.7rem;
}

.status-title {
    font-size: clamp(1.2rem, 4vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 0.7rem;
}

.status-desc {
    color: var(--text-muted);
    margin: 0 auto 1.3rem;
    max-width: 56ch;
}

.status-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.site-form {
    max-width: 760px;
    margin-top: 1.2rem;
    display: grid;
    gap: 0.9rem;
}

.site-form label {
    display: grid;
    gap: 0.45rem;
    font-weight: 600;
    color: var(--text-primary);
}

.site-form input,
.site-form textarea,
.site-form select {
    width: 100%;
    border: 1px solid #d3dde8;
    border-radius: 10px;
    padding: 0.78rem 0.85rem;
    font: inherit;
    color: var(--text-primary);
    background: #fff;
}

.site-form textarea {
    min-height: 140px;
    resize: vertical;
}

.form-feedback {
    display: none;
    border-radius: 10px;
    padding: 0.72rem 0.8rem;
    font-weight: 600;
}

.form-feedback.success {
    display: block;
    background: #e8fff2;
    color: #0a7a4a;
    border: 1px solid #b9efcf;
}

.form-feedback.error {
    display: block;
    background: #fff1f1;
    color: #b42318;
    border: 1px solid #ffd0cf;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1.05rem;
    border-radius: 999px;
    font-weight: 600;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(125deg, var(--brand-1), var(--brand-2));
}

.btn-secondary {
    color: var(--brand-1);
    border: 1px solid #d0dae2;
    background: #fff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--brand-3);
    outline-offset: 2px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #95a5a6;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .hero-grid,
    .action-strip-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        max-width: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--brand-1);
        padding: 1rem;
        gap: 0;
        max-height: calc(100vh - 68px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        margin-top: 0;
        border-radius: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .search-box {
        flex-direction: column;
        border-radius: 16px;
    }

    .search-box input,
    .search-box button {
        width: 100%;
        border-radius: 12px;
    }

    .newspapers-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
    }

    .newspaper-logo {
        height: 120px;
    }

    .carousel {
        gap: 1rem;
    }

    .carousel-item {
        min-width: 120px;
    }

    .carousel-item img {
        height: 120px;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .newspapers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.72rem;
    }

    .newspaper-logo {
        height: 100px;
    }

    .newspaper-name {
        font-size: 0.85rem;
    }

    .footer-content {
        gap: 1rem;
        margin-bottom: 1rem;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* ===========================
   UTILITY CLASSES
   =========================== */

.hidden {
    display: none !important;
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

/* Smooth transitions for all interactive elements */
button, a, .newspaper-item {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
