/* =====================================================
   HollandaNieuws - Professional News Portal
   Clean, Bold, Modern
   ===================================================== */

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

:root {
    --primary: #E53935;
    --primary-dark: #C62828;
    --primary-light: #FFEBEE;
    --black: #0A0A0A;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    --font-main: 'DM Sans', system-ui, -apple-system, sans-serif;
    
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
}

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

body {
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   Header
   ===================================================== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.header-top {
    background: var(--gray-900);
    padding: 10px 0;
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.header-date {
    color: var(--gray-400);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.header-date i {
    color: var(--primary);
}

/* Breaking News in Top Bar */
.topbar-breaking {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.breaking-badge {
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 3px;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.breaking-ticker-mini {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.breaking-ticker-mini a {
    display: inline;
    text-overflow: ellipsis;
}

.breaking-ticker-mini a {
    color: var(--gray-300);
    font-size: 12px;
    font-weight: 500;
    transition: color 0.2s;
}

.breaking-ticker-mini a:hover {
    color: var(--primary);
}

.header-social {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.header-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: all 0.2s;
}

.header-social a:hover { 
    color: var(--white);
    background: var(--primary);
}

.header-main {
    padding: 16px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.5px;
}

.logo-text span { color: var(--primary); }

.logo-image {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.header-search {
    flex: 1;
    max-width: 360px;
    display: flex;
    align-items: center;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 10px 16px;
    transition: all 0.2s;
}

.header-search:focus-within {
    border-color: var(--primary);
    background: var(--white);
}

.header-search input {
    flex: 1;
    background: none;
    border: none;
    font-size: 14px;
    color: var(--gray-800);
    outline: none;
}

.header-search input::placeholder { color: var(--gray-500); }

.header-search button {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
}

/* Navigation - Attractive Design */
.nav {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-list::-webkit-scrollbar { display: none; }

.nav-item a {
    display: block;
    padding: 14px 14px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    white-space: nowrap;
    position: relative;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--white);
    transition: width 0.3s;
}

.nav-item a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-item a:hover::after {
    width: 80%;
}

.nav-item.active a {
    color: var(--white);
    background: rgba(0,0,0,0.2);
}

.nav-item.active a::after {
    width: 80%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--black);
    font-size: 24px;
    cursor: pointer;
}

/* =====================================================
   Breaking News - RED
   ===================================================== */
.breaking-news {
    background: var(--primary);
    padding: 12px 0;
}

.breaking-news .container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.breaking-label {
    background: var(--white);
    color: var(--primary);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breaking-ticker {
    flex: 1;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: ticker 40s linear infinite;
}

.ticker-item {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    padding-right: 60px;
}

.ticker-item a { color: inherit; }
.ticker-item a:hover { opacity: 0.85; }

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =====================================================
   Hero Section - Slider Style
   ===================================================== */
.hero {
    padding: 24px 0;
    background: var(--gray-50);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
}

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

.hero-grid.no-sidebar .hero-slider {
    height: 600px;
}

.top-list-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    margin: 0;
}

/* Main Slider */
.hero-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--black);
    height: 520px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-slide .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.hero-slide .category-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.hero-slide h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 12px;
}

.hero-slide .excerpt {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Slider Nav Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.6);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(0,0,0,0.8);
}

.slider-nav.prev { left: 16px; }
.slider-nav.next { right: 16px; }

/* Top 10 List */
.top-list {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    height: 520px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.top-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    min-height: 0;
}

.top-list-item:last-child { border-bottom: none; }

.top-list-item:hover {
    background: var(--gray-50);
}

.top-list-item:hover .top-title {
    color: var(--primary);
}

.top-list-item.active {
    background: var(--white);
    border: 1px solid var(--primary);
    border-radius: 0;
}

.top-list-item.active .top-number {
    color: var(--primary);
}

.top-list-item.active .top-title {
    color: var(--gray-900);
}

.top-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    min-width: 28px;
    transition: color 0.3s ease;
}

.top-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
    max-height: 2.6em;
}

/* =====================================================
   Sections
   ===================================================== */
.section {
    padding: 48px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary);
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.content-area .articles-grid {
    margin-top: 24px;
}

/* Two Column Layout */
.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.column-section .section-header {
    margin-bottom: 0;
}

.column-articles {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.column-article {
    display: flex;
    gap: 16px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.column-article:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.column-article-image {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.column-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.column-article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.column-article-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 2.6em;
}

.column-article:hover h4 {
    color: var(--primary);
}

.column-article-content .meta {
    font-size: 12px;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.section-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.section-link:hover { opacity: 0.8; }

/* =====================================================
   Article Cards
   ===================================================== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}

.article-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.article-card .image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.article-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.article-card .image .category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.article-card .content {
    padding: 16px;
}

.article-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card:hover h3 { color: var(--primary); }

.article-card .excerpt {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray-500);
}

/* =====================================================
   Main Content + Sidebar
   ===================================================== */
.main-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    border: none;
}

.sidebar-widget .widget-title {
    padding: 0 0 12px 0;
    margin-bottom: 0;
}

.sidebar-widget .popular-list,
.sidebar-widget .category-list {
    margin-top: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 12px 14px;
}

/* Category List Styles */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.2s;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    color: var(--primary);
}

.category-item:hover .category-name {
    transform: translateX(4px);
}

.category-name {
    font-weight: 500;
    font-size: 0.9375rem;
    transition: transform 0.2s;
    position: relative;
    padding-left: 16px;
}

.category-name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--cat-color, var(--primary));
}

.category-count {
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    min-width: 32px;
    text-align: center;
}

.category-item.active {
    background: var(--gray-50);
    border-color: var(--primary);
}

.category-item.active .category-name {
    color: var(--primary);
    font-weight: 600;
}

.widget-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary);
}

/* Popular Articles */
.popular-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.popular-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.2s;
}

.popular-item:last-child { border-bottom: none; padding-bottom: 0; }

.popular-item:first-child { padding-top: 0; }

.popular-item:hover { background: var(--gray-50); margin: 0 -12px; padding-left: 12px; padding-right: 12px; border-radius: var(--radius); }

.popular-number {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.popular-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-item:hover h4 { color: var(--primary); }

.popular-content .meta {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Categories Widget */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.category-list li {
    list-style: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.2s;
}

.category-list li:last-child a { border-bottom: none; }

.category-list a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.category-list .count {
    background: var(--gray-100);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--gray-600);
}

/* =====================================================
   Category Page
   ===================================================== */
.category-header {
    padding: 40px 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.category-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.category-header p {
    color: var(--gray-600);
    font-size: 16px;
}

/* =====================================================
   Article Page
   ===================================================== */
.article-page {
    padding: 40px 0;
}

.article-header {
    margin-bottom: 32px;
}

.article-header .category-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.article-header h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 16px;
}

.article-header .excerpt {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.article-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.article-author-info .name {
    font-weight: 700;
    color: var(--gray-900);
}

.article-author-info .name a:hover { color: var(--primary); }

.article-author-info .date {
    font-size: 13px;
    color: var(--gray-500);
}

.article-share {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.2s;
}

/* Article Share Bottom Section */
.article-share-bottom {
    margin-top: 40px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.article-share-bottom .share-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-share-bottom .author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.article-share-bottom .author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.article-share-bottom .author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.article-share-bottom .author-name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.9375rem;
}

.article-share-bottom .author-name:hover {
    color: var(--primary);
}

.article-share-bottom .author-date {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.article-share-bottom .share-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.article-share-bottom .share-label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.article-share-bottom .share-buttons {
    display: flex;
    gap: 10px;
}

.article-share-bottom .share-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 1rem;
}

.article-share-bottom .share-btn.telegram {
    background: #0088cc;
}

@media (max-width: 768px) {
    .article-share-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .article-share-bottom .share-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

.share-btn:hover { transform: scale(1.1); }

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #000; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.linkedin { background: #0A66C2; }

.article-image {
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-image figcaption {
    padding: 12px 0;
    font-size: 13px;
    color: var(--gray-500);
}

.article-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-700);
}

.article-content p { margin-bottom: 24px; }

.article-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--black);
    margin: 40px 0 20px;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800);
    margin: 32px 0 16px;
}

.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    margin: 32px 0;
    background: var(--gray-50);
    font-size: 18px;
    color: var(--gray-700);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.article-content ul, .article-content ol {
    margin: 24px 0;
    padding-left: 24px;
}

.article-content li { margin-bottom: 12px; }

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); font-size: 24px; }

.footer-brand p {
    color: var(--gray-400);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

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

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: var(--gray-400);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary); }

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: var(--gray-500);
    font-size: 13px;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1200px) {
    .hero-grid { grid-template-columns: 1fr 320px; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .top-list { display: none; }
    .main-content { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-search { display: none; }
    .mobile-toggle { display: block; }
    .logo-text { font-size: 22px; }
    
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        z-index: 100;
    }
    
    .nav-list.active { display: flex; }
    
    .nav-item a {
        padding: 14px 20px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-item a::after { display: none; }
    
    .topbar-breaking { display: none; }
    
    .hero-slider { height: 360px; }
    .hero-slide h2 { font-size: 24px; }
    
    .articles-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .article-header h1 { font-size: 26px; }
}
