@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Pure Modern Editorial Light Theme */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F4F4F5;
    --text-primary: #09090B;
    --text-secondary: #52525B;
    --text-muted: #71717A;

    --accent-primary: #E11D48;
    /* Editorial Red */
    --accent-hover: #BE123C;
    --accent-light: #FFE4E6;

    --border-color: #E4E4E7;
    --border-heavy: #18181B;

    --card-shadow: none;
    --card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    --top-bar-bg: #09090B;
    --top-text: #FAFAFA;

    --breaking-bg: #E11D48;
    --breaking-border: #BE123C;
    --breaking-text: #FFFFFF;

    --modal-overlay: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] {
    /* High-contrast Digital Magazine Dark Theme */
    --bg-primary: #09090B;
    --bg-secondary: #18181B;
    --text-primary: #FAFAFA;
    --text-secondary: #A1A1AA;
    --text-muted: #71717A;

    --accent-primary: #FB7185;
    /* Vibrant Rose */
    --accent-hover: #E11D48;
    --accent-light: rgba(225, 29, 72, 0.15);

    --border-color: #27272A;
    --border-heavy: #FAFAFA;

    --card-shadow: none;
    --card-shadow-hover: 0 10px 25px -5px rgba(0, 0, 0, 0.5);

    --top-bar-bg: #000000;
    --top-text: #A1A1AA;

    --breaking-bg: rgba(225, 29, 72, 0.1);
    --breaking-border: rgba(225, 29, 72, 0.3);
    --breaking-text: #FB7185;

    --modal-overlay: rgba(9, 9, 11, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6,
.outfit {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Top Bar */
.top-bar {
    background-color: var(--top-bar-bg);
    color: var(--top-text);
    padding: 10px 0;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.region-selector {
    display: flex;
    gap: 15px;
    align-items: center;
}

.region-selector a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.region-selector a:hover,
.region-selector a.active {
    color: var(--top-text);
}

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--top-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    /* Sharp corners */
    transition: all 0.2s;
}

.theme-toggle:hover {
    background-color: var(--accent-primary);
    color: white;
}

.theme-toggle svg {
    width: 20px;
    /* Increased size */
    height: 20px;
}

.sun-icon,
.moon-icon {
    color: var(--text-primary);
    /* Stronger color */
    stroke-width: 2.5px;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="dark"] .moon-icon {
    display: block !important;
}

/* Modern Header */
.main-header {
    background-color: var(--bg-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-heavy);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

[data-theme="dark"] .main-header {
    background-color: rgba(9, 9, 11, 0.8);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    /* Reduced from 8px */
    flex-wrap: nowrap;
    gap: 20px;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    /* Reduced from 28px */
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -1px;
}

.header-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-btn {
    background-color: var(--accent-primary);
    color: #fff;
    padding: 10px 22px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.header-btn:hover {
    background-color: var(--accent-hover);
}

[data-theme="dark"] .header-btn {
    color: #FAFAFA;
}

/* Nav */
.main-nav {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    flex-wrap: nowrap;
    /* Keep on one line */
    gap: 0;
    padding: 0;
    margin: 0;
}

.nav-item {
    white-space: nowrap;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 12px;
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

/* Dropdown Styles */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 180px;
    padding: 10px 0;
    list-style: none;
    display: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--accent-primary);
}

.dropdown-item.active {
    color: var(--accent-primary);
    font-weight: 700;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.active {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
}

/* Slim Breaking News Ticker */
.breaking-news {
    background-color: var(--breaking-bg);
    color: var(--breaking-text);
    padding: 8px 0;
    /* Reduced from 12px */
    border-bottom: 1px solid var(--breaking-border);
    overflow: hidden;
    font-size: 14px;
    /* Slightly smaller font */
}

.breaking-content {
    display: flex;
    align-items: center;
}

.breaking-label {
    color: var(--breaking-text);
    padding-right: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 11px;
    /* Smaller label */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    flex-shrink: 0;
    border-right: 1px solid var(--breaking-border);
    margin-right: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breaking-label::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--breaking-text);
    border-radius: 50%;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.breaking-text-wrapper {
    overflow: hidden;
    flex: 1;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.breaking-text {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 60s linear infinite;
    /* Slower for readability */
    padding-left: 100%;
    /* Start from off-screen */
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
}

/* Pause on hover */
.breaking-news:hover .breaking-text {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Bento Dashboard Layout (Home Only) */
.main-content {
    display: block;
    /* No sidebar */
    margin-top: 40px;
}

/* Article Page Layout (With Sidebar) */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    margin-top: 40px;
    margin-bottom: 80px;
}

/* Ensure article content doesn't get too wide for readability */
.article-main-content {
    max-width: 850px;
    width: 100%;
}

/* Standard Article Grid (3 Columns) */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.article-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--accent-primary);
}

.article-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: var(--bg-secondary);
}

.article-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.bento-wrapper {
    margin-bottom: 60px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 240px;
    gap: 24px;
    margin-bottom: 50px;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    text-decoration: none;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    z-index: 2;
    color: white;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    right: 50px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--accent-primary);
    transform: scale(1.3);
    border-color: white;
}

.bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--border-color);
    box-shadow: var(--card-shadow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--border-color);
    text-decoration: none;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--card-shadow-hover);
    z-index: 10;
    border-color: var(--accent-light);
}

/* Gradient overlay for text readability */
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.4s;
}

.bento-card:hover::before {
    opacity: 0.8;
}

.bento-content {
    position: relative;
    padding: 30px;
    z-index: 2;
    color: #FAFAFA;
    /* Always white on dark gradient */
}

/* Base Spans */
.bento-span-12 {
    grid-column: span 12;
    grid-row: span 2;
}

/* Featured - 480px tall */
.bento-span-8 {
    grid-column: span 8;
    grid-row: span 2;
}

/* Large rectangle - 480px tall */
.bento-span-6 {
    grid-column: span 6;
    grid-row: span 2;
}

/* Square/Wide - 480px tall */
.bento-span-4 {
    grid-column: span 4;
    grid-row: span 1;
    padding: 0;
}

/* Small block - 240px tall */

/* Small block overrides */
.bento-span-4 .bento-content {
    padding: 20px;
}

.bento-span-4 .bento-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.bento-span-4 .bento-category {
    padding: 4px 10px;
    font-size: 10px;
    margin-bottom: 10px;
}

/* Content inside Bento */
.bento-category {
    display: inline-block;
    color: #FAFAFA;
    background: var(--accent-primary);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.bento-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
}

.bento-title a {
    color: #FAFAFA;
    text-decoration: none;
    transition: color 0.2s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bento-card:hover .bento-title a {
    color: var(--accent-light);
}

.bento-title-large {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.bento-title-large a {
    color: #FAFAFA;
    text-decoration: none;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.bento-title-large a:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.bento-summary {
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-weight: 400;
}

.bento-summary-small {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
}

.bento-meta {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 5px;
}

/* Category Section Blocks */
.bento-section {
    margin-bottom: 70px;
}

/* Sidebar (For Article Page) */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background: var(--bg-primary);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-primary);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sidebar-section a {
    transition: color 0.2s;
}

.sidebar-section a:hover {
    color: var(--accent-primary);
}

/* Sidebar Related News Styling */
.sidebar-related-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-related-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    align-items: flex-start;
    transition: all 0.2s ease;
    padding: 5px 0;
}

.sidebar-related-thumb {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-secondary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar-related-info {
    flex: 1;
}

.sidebar-related-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.sidebar-related-item:hover .sidebar-related-title {
    color: var(--accent-primary);
}

.sidebar-related-item:hover .sidebar-related-thumb {
    transform: scale(1.05);
}

.bento-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-heavy);
}

.category-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
}

.bento-view-all {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bento-view-all:hover {
    color: var(--accent-hover);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Additional elements to replace the remainder of old CSS block */
.important-topic {
    background-color: var(--accent-light);
    border-left: 4px solid var(--accent-primary);
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.important-topic ul {
    padding-left: 20px;
}

.important-topic li {
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
}

/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-toggle {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.chatbot-toggle:hover {
    transform: scale(1.05);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 550px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: var(--bg-secondary);
    font-size: 14px;
}

.message {
    margin-bottom: 15px;
    padding: 12px 16px;
    max-width: 85%;
    line-height: 1.5;
    border-radius: 6px;
}

.message.user {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    margin-left: auto;
}

.message.bot {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.chatbot-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.chatbot-input input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--text-primary);
}

.chatbot-input button {
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.chatbot-input button:hover {
    background: var(--accent-hover);
}

/* Full Article Page Overlay REFINED */
.article-container {
    background: var(--bg-primary);
    margin: 0;
    /* Remove auto centering which breaks grid */
    padding: 0;
    width: 100%;
    border: none;
}

.article-main-image {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
}

.article-header {
    margin-bottom: 40px;
}

.article-category-tag {
    display: inline-block;
    color: var(--accent-primary);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.article-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.article-body-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: left;
}

.article-body-text p {
    margin-bottom: 30px;
}

.article-content-full p {
    margin-bottom: 25px;
}

.article-content-full a {
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sidebar {
        order: 2;
        /* Move sidebar below content */
    }
}

@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .logo {
        text-align: center;
    }

    .header-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        border-top: none;
    }

    .featured-title {
        font-size: 40px;
    }

    .featured-image-wrapper {
        height: 280px;
    }

    .article-container {
        padding: 0;
        margin: 0;
    }

    .article-main-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .article-body-text {
        font-size: 18px;
    }

    .hero-slider {
        height: 350px;
    }

    .slide-content {
        padding: 25px;
    }

    .bento-title-large {
        font-size: 28px;
    }

    .chatbot-window {
        width: calc(100vw - 40px);
        bottom: 100px;
        right: 20px;
    }
}

/* Modern Footer Design */
.main-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    margin-top: 80px;
    color: var(--text-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 25px;
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-social-links {
    display: flex;
    gap: 20px;
}

.footer-social-links a {
    color: var(--text-secondary);
    font-size: 18px;
    transition: color 0.2s;
}

.footer-social-links a:hover {
    color: var(--accent-primary);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .main-footer {
        padding: 60px 0 30px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}