/* ========================================
   Vie50+ — Modern Redesign
   Warm, editorial, senior-friendly
   ======================================== */

:root {
    /* Warm modern palette */
    --primary: #2d5f8a;
    --primary-dark: #1e3a5f;
    --primary-light: #edf4fa;
    --accent: #e85d4a;
    --accent-hover: #d14a38;
    --accent-soft: #fef0ee;
    --gold: #d4a853;
    --gold-light: #fdf6e8;
    --bg: #f8f6f3;
    --white: #ffffff;
    --text: #1a1a2e;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --success: #16a34a;
    --footer-bg: #1a1a2e;

    /* Typography */
    --font-heading: 'Source Serif 4', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Layout */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-pill: 100px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 18px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--primary-dark); }

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

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    line-height: 1.4;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(232,93,74,0.3);
}
.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(232,93,74,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
    width: 100%;
}

/* Header buttons */
.btn-subscribe-header {
    background: var(--accent);
    color: var(--white);
    padding: 10px 24px;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(232,93,74,0.25);
}
.btn-subscribe-header:hover {
    background: var(--accent-hover);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(232,93,74,0.3);
}

.btn-login-header {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--border);
    padding: 9px 22px;
    font-size: 0.9rem;
}
.btn-login-header:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.btn-subscribe-footer {
    background: var(--accent);
    color: var(--white);
    padding: 10px 28px;
    font-size: 0.9rem;
}
.btn-subscribe-footer:hover {
    background: var(--accent-hover);
    color: var(--white);
}

/* ========================================
   Header
   ======================================== */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 var(--border);
}

.header-top {
    border-bottom: 1px solid var(--border-light);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo:hover { text-decoration: none; color: var(--primary); }
.logo-accent { color: var(--accent); }

.slogan {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 320px;
    line-height: 1.35;
}

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

/* Navigation */
.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 12px 18px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    position: relative;
    white-space: nowrap;
}
.nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
    text-decoration: none;
}
.nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    width: 100%;
    padding: 16px;
    background: var(--white);
    color: var(--primary-dark);
    border: none;
    border-top: 1px solid var(--border);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hamburger {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--primary-dark);
    position: relative;
    vertical-align: middle;
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--primary-dark);
    left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 8px;
}
.mobile-nav a {
    display: block;
    padding: 14px 20px;
    color: var(--text);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    transition: background var(--transition);
}
.mobile-nav a:hover {
    background: var(--primary-light);
    text-decoration: none;
}
.mobile-nav.open { display: block; }

/* ========================================
   Page Layout
   ======================================== */
.page-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 28px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 44px;
    min-height: 60vh;
}
.main-content { min-width: 0; }
.page-wrapper.full-width { grid-template-columns: 1fr; }

/* Page fade-in animation */
.main-content { animation: fadeIn 0.3s ease; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Sidebar
   ======================================== */
.sidebar-sticky { position: sticky; top: 120px; }

.subscription-box {
    background: linear-gradient(165deg, var(--primary-light) 0%, var(--white) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow);
}

.subscription-box h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 18px;
    line-height: 1.35;
}

.sub-features {
    list-style: none;
    margin: 18px 0;
    text-align: left;
}
.sub-features li {
    padding: 8px 0 8px 32px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.45;
}
.sub-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    background: var(--success);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.subscription-box .btn-primary { width: 100%; margin: 18px 0 14px; }

.subscription-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin: 6px 0;
}
.subscription-trial {
    background: var(--gold-light);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    color: #92711a;
    font-weight: 600;
    display: inline-block;
    margin: 8px 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    background: var(--white);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}
.trust-badge svg { flex-shrink: 0; }

/* ========================================
   Featured Section (Hero)
   ======================================== */
.featured-section { margin-bottom: 44px; }

.featured-section .section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 22px;
    font-weight: 700;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.featured-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}
.featured-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.featured-card:first-child {
    grid-column: 1 / -1;
}

.featured-card .card-image-wrap {
    position: relative;
    overflow: hidden;
}
.featured-card:first-child .card-image-wrap { height: 300px; }
.featured-card:not(:first-child) .card-image-wrap { height: 220px; }

.featured-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.featured-card:hover .card-image { transform: scale(1.03); }

.featured-card .card-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 24px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
}
.featured-card:first-child .card-image-overlay { padding: 80px 32px 28px; }

.featured-card .card-category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    color: var(--white);
    margin-bottom: 8px;
}

.featured-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--white);
}
.featured-card .card-title a { color: var(--white); }
.featured-card .card-title a:hover { text-decoration: none; }
.featured-card:first-child .card-title { font-size: 1.45rem; }

/* ========================================
   Category Section (Home)
   ======================================== */
.category-section { margin-bottom: 44px; }

.category-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-left: 4px solid var(--primary);
    padding-left: 16px;
}
.category-section-header h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text);
    font-weight: 700;
}
.category-section-header .see-all {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    padding: 6px 16px;
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    white-space: nowrap;
}
.category-section-header .see-all:hover {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
}

/* ========================================
   Article Cards
   ======================================== */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 240px 1fr;
    transition: all var(--transition);
    border: 1px solid var(--border-light);
}
.article-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--border);
}

.article-card .card-image {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    background: var(--border-light);
    transition: transform 0.5s ease;
}
.article-card:hover .card-image { transform: scale(1.03); }

.article-card .card-image-wrap {
    overflow: hidden;
    border-radius: var(--radius) 0 0 var(--radius);
}

.article-card .card-body { padding: 22px 26px; }

.article-card .card-category-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary-light);
    color: var(--primary);
    margin-bottom: 8px;
}

.article-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 700;
}

.article-card .card-excerpt {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    max-height: 10em;
}
.article-card .card-excerpt::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5em;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 60%, rgba(255,255,255,1) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    pointer-events: none;
}
.article-card .card-excerpt p { margin-bottom: 6px; }

.article-card .btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1.5px solid var(--primary);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
}
.article-card .btn-read-more:hover {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
}

.card-lock-hint {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* ========================================
   Article Page
   ======================================== */
.article-page {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 44px;
    box-shadow: var(--shadow);
}

.article-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.article-breadcrumb a { color: var(--primary); font-weight: 500; }
.article-breadcrumb span { margin: 0 6px; color: var(--text-light); }

.article-page h1 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 12px;
    font-weight: 700;
}

.article-page .article-date {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.article-page .article-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 28px;
    background: var(--border-light);
}

.article-page .article-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text);
    position: relative;
}
.article-page .article-content p { margin-bottom: 18px; }
.article-page .article-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -44px;
    right: -44px;
    height: 8em;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 30%, rgba(255,255,255,0.95) 70%, rgba(255,255,255,1) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    pointer-events: none;
}

/* Paywall */
.paywall-block {
    padding: 20px 0 0;
    margin-top: -20px;
    position: relative;
}

.paywall-inner {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    box-shadow: var(--shadow);
}
.paywall-inner h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}
.paywall-inner p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.paywall-inner .btn { margin: 5px; }
.paywall-login-link {
    display: block;
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

/* ========================================
   Category Page
   ======================================== */
.category-page-header {
    margin-bottom: 28px;
    padding-left: 18px;
    border-left: 5px solid var(--primary);
}
.category-page-header h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text);
    font-weight: 700;
}
.category-page-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ========================================
   Static Pages
   ======================================== */
.static-page {
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px 48px;
    box-shadow: var(--shadow);
    max-width: 780px;
    margin: 0 auto;
}
.static-page h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 700;
}
.static-page h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin: 28px 0 12px;
    font-weight: 700;
}
.static-page p, .static-page li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 10px;
}
.static-page ul { margin-left: 24px; margin-bottom: 16px; }

/* ========================================
   Subscription Page
   ======================================== */
.subscription-page {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 52px 44px;
    box-shadow: var(--shadow-md);
    max-width: 560px;
    margin: 20px auto;
    text-align: center;
}
.subscription-page h1 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 12px;
    font-weight: 700;
}
.subscription-page .sub-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}
.subscription-page form { text-align: left; margin-bottom: 16px; }
.subscription-page label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text);
}

.input-email {
    width: 100%;
    padding: 14px 18px;
    font-size: 1.05rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    margin-bottom: 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}
.input-email:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,95,138,0.12);
}

.fine-print {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 12px;
}

/* Confirmation */
.confirmation-box { text-align: center; }
.confirmation-box h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 14px;
    font-weight: 700;
}
.confirmation-box p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.confirmation-box .btn { margin: 8px; }

/* ========================================
   Login Page
   ======================================== */
.login-page {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 52px 44px;
    box-shadow: var(--shadow-md);
    max-width: 480px;
    margin: 20px auto;
    text-align: center;
}
.login-page h1 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 700;
}
.login-page > p { color: var(--text-secondary); margin-bottom: 4px; }
.login-page form { text-align: left; margin: 24px 0 12px; }
.login-page label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.login-link {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ========================================
   Success Icon (used on subscription confirmation)
   ======================================== */
.modal-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--success);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 18px;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--footer-bg);
    color: #d1d5db;
    margin-top: 48px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 28px 36px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 36px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #f9fafb;
    text-decoration: none;
}
.footer-logo .logo-accent { color: var(--accent); }

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-top: 10px;
    color: #9ca3af;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: #f9fafb;
}
.footer-col a {
    display: block;
    padding: 5px 0;
    color: #9ca3af;
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer-col a:hover { color: #f9fafb; text-decoration: none; }

.footer-cta p {
    font-size: 0.88rem;
    color: #9ca3af;
    line-height: 1.55;
    margin-bottom: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 18px 28px;
    font-size: 0.82rem;
    color: #6b7280;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .page-wrapper { grid-template-columns: 1fr; }
    .sidebar { order: -1; }
    .sidebar-sticky { position: static; }
    .featured-grid { grid-template-columns: 1fr 1fr; }
    .featured-card:first-child { grid-column: 1 / -1; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    html { font-size: 17px; }
    .header-inner { flex-direction: column; text-align: center; gap: 14px; }
    .header-left { flex-direction: column; gap: 6px; }
    .slogan { max-width: 100%; text-align: center; }
    .header-right { width: 100%; justify-content: center; }
    .main-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .featured-grid { grid-template-columns: 1fr; }
    .featured-card:first-child { grid-column: auto; }
    .featured-card:first-child .card-image-wrap { height: 220px; }
    .article-card { grid-template-columns: 1fr; }
    .article-card .card-image { height: 200px; min-height: auto; }
    .article-card .card-image-wrap { border-radius: var(--radius) var(--radius) 0 0; }
    .article-page { padding: 28px 22px; }
    .article-page h1 { font-size: 1.5rem; }
    .article-page .article-image { height: 260px; }
    .static-page, .subscription-page, .login-page { padding: 28px 22px; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .category-section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 480px) {
    html { font-size: 16px; }
    .logo { font-size: 1.8rem; }
    .page-wrapper { padding: 22px 16px; }
    .header-right { flex-direction: column; }
    .header-right .btn { width: 100%; }
    .article-card .card-body { padding: 18px 20px; }
    .trust-badges { flex-direction: column; align-items: center; }
}
