/* ===================================
   YOUNGED MEDIA - DESIGN SYSTEM
   Matching portal.youngedafrica.org
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors */
    --brand-blue: #0D7BB6;
    --brand-blue-light: #4d9dc9;
    --brand-blue-dark: #0a6292;
    --brand-green: #4EA72E;
    --brand-green-light: #6eb850;
    --brand-green-dark: #3e8625;

    /* Slate Palette */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* Background & Surface */
    --bg-primary: var(--slate-50);
    --bg-white: #ffffff;

    /* Semantic Colors */
    --success: var(--brand-green);
    --warning: #f59e0b;
    --error: #ef4444;
    --info: var(--brand-blue);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-blue: 0 10px 40px -10px rgba(13, 123, 182, 0.3);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Zalando Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate-900);
    background: white;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Zalando Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--slate-800);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--slate-200);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--slate-800);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo-img {
    height: 2rem;
    width: auto;
}

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

.nav a {
    padding: 0.625rem 1rem;
    font-weight: 500;
    color: var(--slate-500);
    border-radius: var(--radius-xl);
    transition: all var(--transition-fast);
}

.nav a:hover {
    background: var(--slate-50);
    color: var(--slate-700);
}

.nav a.active {
    background: rgba(13, 123, 182, 0.1);
    color: var(--brand-blue);
    font-weight: 600;
}

.nav-subscribe {
    background: var(--brand-blue) !important;
    color: white !important;
    box-shadow: var(--shadow-sm), var(--shadow-blue);
}

.nav-subscribe:hover {
    background: var(--brand-blue-dark) !important;
    transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero {
    background: white;
    padding: 2rem 0 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-blue);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* ===== CAROUSEL ===== */
.carousel-section {
    padding: 3rem 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--slate-100);
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    height: 450px;
}

/* Ensure all text in carousel is white */
.carousel h1,
.carousel h2,
.carousel h3,
.carousel p,
.carousel span {
    color: white !important;
}

.carousel-slide-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white !important;
}

.carousel-slide-placeholder h2 {
    font-size: 2rem;
    color: white !important;
    margin-bottom: 0.5rem;
}

.carousel-slide-placeholder p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
}

.carousel-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--brand-blue);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.carousel-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.carousel-meta {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-nav {
    position: absolute;
    bottom: 1.25rem;
    right: 1.5rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-dot {
    width: 0.625rem;
    height: 0.625rem;
    background: rgba(255,255,255,0.4);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: white;
    width: 1.75rem;
}

.carousel-arrows {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 0;
}

.carousel-arrow {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    background: var(--bg-white);
    border: 1px solid var(--slate-200);
    color: var(--slate-600);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.carousel-arrow:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: white;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    padding: 3.5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    right: -3rem;
    top: -3rem;
    width: 12rem;
    height: 12rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    filter: blur(48px);
}

.page-header h1,
.page-header h2,
.page-header h3,
.page-header p {
    color: white;
}

.page-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white !important;
    margin-bottom: 0.5rem;
}

.page-header-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.125rem;
}

/* ===== SECTIONS ===== */
.section {
    padding: 4rem 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-800);
}

.section-link {
    color: var(--brand-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: color var(--transition-fast);
}

.section-link:hover {
    color: var(--brand-blue-dark);
}

/* ===== STORY CARDS ===== */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.story-card {
    background: var(--bg-white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.story-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.story-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.story-card:hover .story-card-image img {
    transform: scale(1.05);
}

.story-card-content {
    padding: 1.25rem;
}

.story-card-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.story-card-category {
    padding: 0.25rem 0.625rem;
    background: rgba(13, 123, 182, 0.1);
    color: var(--brand-blue);
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.story-card-country {
    padding: 0.25rem 0.625rem;
    background: var(--slate-100);
    color: var(--slate-600);
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.story-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-card-title a:hover {
    color: var(--brand-blue);
}

.story-card-summary {
    color: var(--slate-500);
    font-size: 0.875rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.story-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--slate-400);
    font-weight: 500;
    padding-top: 0.75rem;
    border-top: 1px solid var(--slate-100);
}

/* ===== CATEGORY CARDS ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.category-card {
    background: var(--bg-white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-md), 0 0 0 2px rgba(13, 123, 182, 0.1);
    transform: translateY(-2px);
}

.category-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(13, 123, 182, 0.1);
    color: var(--brand-blue);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.category-icon .iconify {
    color: var(--brand-blue);
}

.category-name {
    font-weight: 600;
    color: var(--slate-700);
    font-size: 0.875rem;
}

.category-count {
    font-size: 0.75rem;
    color: var(--slate-400);
    margin-top: 0.25rem;
}

/* ===== COUNTRY CARDS ===== */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.country-tag {
    background: var(--bg-white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: all var(--transition-fast);
}

.country-tag:hover {
    border-color: var(--brand-blue);
    background: rgba(13, 123, 182, 0.02);
}

.country-flag {
    font-size: 1.25rem;
}

.country-name {
    font-weight: 500;
    color: var(--slate-700);
    font-size: 0.875rem;
}

.country-count {
    margin-left: auto;
    background: var(--slate-100);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--slate-500);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: var(--brand-blue);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    right: -3rem;
    top: -3rem;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    filter: blur(48px);
}

.newsletter-section::after {
    content: '';
    position: absolute;
    left: -3rem;
    bottom: -3rem;
    width: 12rem;
    height: 12rem;
    background: var(--brand-green);
    opacity: 0.2;
    border-radius: var(--radius-full);
    filter: blur(32px);
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-section h1,
.newsletter-section h2,
.newsletter-section h3,
.newsletter-section p {
    color: white;
}

.newsletter-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white !important;
    margin-bottom: 0.75rem;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: var(--radius-xl);
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 0.875rem 1.5rem;
    background: var(--brand-green);
    color: white;
    border: none;
    border-radius: var(--radius-xl);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--brand-green-dark);
    transform: translateY(-2px);
}

/* ===== STORY PAGE ===== */
.story-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.story-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    margin-bottom: 2rem;
}

.story-header {
    margin-bottom: 2rem;
}

.story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.story-category-badge {
    padding: 0.375rem 0.875rem;
    background: rgba(13, 123, 182, 0.1);
    color: var(--brand-blue);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.story-country-badge {
    padding: 0.375rem 0.875rem;
    background: var(--slate-100);
    color: var(--slate-600);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.story-date {
    color: var(--slate-400);
    font-size: 0.875rem;
}

.story-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.story-source {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.story-source a {
    color: var(--brand-blue);
    font-weight: 600;
}

.story-source a:hover {
    text-decoration: underline;
}

.story-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--slate-700);
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-content h2, .story-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.story-content a {
    color: var(--brand-blue);
}

.story-content a:hover {
    text-decoration: underline;
}

.story-content blockquote {
    border-left: 4px solid var(--brand-blue);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--slate-600);
}

.story-content ul, .story-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.story-content li {
    margin-bottom: 0.5rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-200);
}

.share-button {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-fast);
}

.share-button:hover {
    transform: translateY(-2px);
}

.share-twitter { background: #1DA1F2; }
.share-twitter:hover { background: #0d8ed9; }
.share-linkedin { background: #0A66C2; }
.share-linkedin:hover { background: #084d94; }
.share-facebook { background: #1877F2; }
.share-facebook:hover { background: #0d65d9; }
.share-whatsapp { background: #25D366; }
.share-whatsapp:hover { background: #1da851; }

/* ===== RELATED STORIES ===== */
.related-stories {
    padding: 3rem 0;
}

.related-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 1.5rem;
}

/* ===== FILTERS ===== */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-2xl);
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--slate-300);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(13, 123, 182, 0.1);
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--slate-300);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-select:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(13, 123, 182, 0.1);
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination button {
    padding: 0.625rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pagination button:hover:not(:disabled) {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.pagination button.active {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: white;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--slate-900);
    color: var(--slate-300);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 1.75rem;
    width: auto;
}

.footer-description {
    color: var(--slate-400);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--slate-800);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--brand-blue);
    color: white;
}

.footer-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--slate-300);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--slate-800);
    text-align: center;
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* ===== LOADING ===== */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
}

.spinner {
    width: 2.5rem;
    height: 2.5rem;
    border: 3px solid var(--slate-200);
    border-top-color: var(--brand-blue);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--brand-blue);
    color: white;
    box-shadow: var(--shadow-md), var(--shadow-blue);
}

.btn-primary:hover {
    background: var(--brand-blue-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--slate-700);
    border: 1px solid var(--slate-200);
}

.btn-secondary:hover {
    background: var(--slate-50);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    color: var(--slate-700);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-menu-btn:hover {
    background: var(--slate-100);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 300;
    transition: right var(--transition-base);
    box-shadow: var(--shadow-xl);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--slate-200);
}

.mobile-nav-close {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    color: var(--slate-700);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
    background: var(--slate-100);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.mobile-nav-links a {
    padding: 1rem 1.5rem;
    font-weight: 500;
    color: var(--slate-700);
    border-bottom: 1px solid var(--slate-100);
    transition: all var(--transition-fast);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: var(--slate-50);
    color: var(--brand-blue);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-page-title {
        font-size: 1.75rem;
    }

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

    .carousel {
        height: 300px;
    }

    .carousel-title {
        font-size: 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .story-title {
        font-size: 1.75rem;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}
