:root {
    --primary-color: #0A2540; /* Deep Navy */
    --accent-color: #FF5A00; /* Vibrant Orange */
    --accent-hover: #E04D00;
    --text-color: #2C3E50;
    --text-light: #7F8C8D;
    --bg-color: #F4F7F6;
    --white: #ffffff;
    --border-color: #E2E8F0;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-sans); background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

.container-fluid { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.page-wrapper { margin-top: 30px; margin-bottom: 50px; }

/* Header Visibility Controls */
.desktop-header { display: block; }
.mobile-header { display: none; background: white; }

/* --- UNIQUE VAIGAI MALAR HEADER --- */
.vm-header { width: 100%; position: sticky; top: 0; z-index: 1000; }
.vm-topbar { background-color: var(--primary-color); color: var(--white); font-size: 0.8rem; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.trending-ticker { display: flex; align-items: center; gap: 15px; flex: 1; min-width: 0; overflow: hidden; }
.ticker-badge { background: var(--accent-color); color: white; padding: 4px 10px; border-radius: 4px; font-weight: 700; letter-spacing: 0.5px; flex-shrink: 0; white-space: nowrap; }
.ticker-badge i { margin-right: 5px; }
.ticker-links { display: flex; align-items: center; gap: 10px; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
.ticker-links::-webkit-scrollbar { display: none; }
.ticker-links a { color: #CBD5E1; }
.ticker-links a:hover { color: var(--white); }
.divider { color: #475569; }
.topbar-actions { flex-shrink: 0; white-space: nowrap; margin-left: 15px; }
.date-display { color: #94A3B8; font-weight: 500; white-space: nowrap; }
.vm-navbar { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.vm-logo-text { font-family: var(--font-serif); font-size: 2rem; font-weight: 900; color: var(--primary-color); letter-spacing: -0.5px; }
.vm-nav-links { display: flex; gap: 15px; height: 100%; }
.vm-nav-links a { display: flex; align-items: center; font-weight: 600; font-size: 0.95rem; color: var(--primary-color); position: relative; height: 100%; white-space: nowrap; }
.vm-nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 3px; background-color: var(--accent-color); transition: width 0.3s ease; }
.vm-nav-links a:hover::after { width: 100%; }
.vm-nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.icon-btn { font-size: 1.1rem; color: var(--primary-color); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #F1F5F9; transition: background 0.3s; flex-shrink: 0; }
.icon-btn:hover { background: #E2E8F0; }
.btn-subscribe { background: var(--accent-color); color: white; font-weight: 700; padding: 8px 16px; border-radius: 4px; font-size: 0.85rem; letter-spacing: 0.5px; white-space: nowrap; flex-shrink: 0; }
.btn-subscribe:hover { background: var(--accent-hover); color: white; }
.btn-login { border: 2px solid var(--primary-color); color: var(--primary-color); font-weight: 600; padding: 6px 14px; border-radius: 4px; font-size: 0.85rem; white-space: nowrap; flex-shrink: 0; }
.btn-login:hover { background: var(--primary-color); color: white; }
.btn-admin { background: #334155; color: white; font-weight: 600; padding: 8px 14px; border-radius: 4px; font-size: 0.85rem; white-space: nowrap; flex-shrink: 0; }

/* --- GLOBAL SECTION STYLES --- */
.content-box { background: var(--white); border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); border: 1px solid var(--border-color); padding: 25px; margin-bottom: 30px; }
.section-title { font-family: var(--font-serif); font-size: 1.4rem; color: var(--text-color); margin-bottom: 25px; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; position: relative; }
.section-title span { position: relative; display: inline-block; }
.section-title span::after { content: ''; position: absolute; bottom: -11px; left: 0; width: 100%; height: 3px; background-color: var(--accent-color); }

/* --- HOMEPAGE NEW LAYOUTS --- */
.home-layout-2col { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; align-items: start; }
/* Moved tablet breakpoint to media queries block at bottom */

/* MAIN COLUMN (Featured & 2x2 Grid) */
.featured-news-block { display: flex; gap: 20px; margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid var(--border-color); }
.featured-img-wrap { flex: 1; }
.featured-img-wrap img { width: 100%; height: 280px; object-fit: cover; border-radius: 8px; }
.featured-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.featured-title { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 900; line-height: 1.3; margin-bottom: 15px; }
.featured-title a:hover { color: var(--accent-color); }
.featured-excerpt { font-size: 1.1rem; color: #475569; }

.secondary-news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.secondary-news-item { display: flex; gap: 15px; padding-bottom: 15px; border-bottom: 1px dashed var(--border-color); }
.sec-img-wrap { width: 120px; flex-shrink: 0; }
.sec-img-wrap img { width: 100%; height: 80px; object-fit: cover; border-radius: 6px; }
.sec-content h3 { font-size: 1rem; font-weight: 700; line-height: 1.4; }
.sec-content h3 a:hover { color: var(--accent-color); }

/* SIDEBAR COLUMN (Ads & Trending) */
.ad-placeholder { background: #f1f5f9; padding: 60px 20px; text-align: center; color: #64748b; font-size: 0.9rem; margin-bottom: 30px; border-radius: 8px; }
.ad-placeholder a { color: var(--accent-color); font-weight: 700; }
.trending-list-widget { display: flex; flex-direction: column; gap: 15px; }
.trending-list-widget li { display: flex; gap: 15px; align-items: center; padding-bottom: 15px; border-bottom: 1px solid #f1f5f9; }
.trending-list-widget li:last-child { border-bottom: none; padding-bottom: 0; }
.trending-number { width: 32px; height: 32px; flex-shrink: 0; background: #334155; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; }
.trending-title { font-weight: 700; font-size: 1rem; line-height: 1.4; }
.trending-title a:hover { color: var(--accent-color); }

/* ANALYSIS FULL WIDTH SECTION */
.analysis-header { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid var(--border-color); margin-bottom: 25px; padding-bottom: 10px; }
.analysis-header .section-title { border-bottom: none; padding-bottom: 0; margin-bottom: 0; line-height: 1.4; }
.category-tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.tab-btn { padding: 6px 16px; border: none; background: #94A3B8; color: white; font-weight: 600; border-radius: 4px; cursor: pointer; transition: 0.2s; font-family: var(--font-sans); }
.tab-btn:hover { background: #64748b; }
.tab-btn.active { background: #e11d48; }

.analysis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.analysis-card { display: flex; flex-direction: column; gap: 15px; }
.analysis-img-wrap { position: relative; display: block; }
.analysis-img-wrap img { width: 100%; height: 220px; object-fit: cover; border-radius: 8px; }
.badge-icon { position: absolute; bottom: 10px; right: 10px; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.8rem; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.green-badge { background-color: #10b981; }
.analysis-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 800; line-height: 1.4; }
.analysis-title a:hover { color: var(--accent-color); }

/* --- SINGLE ARTICLE --- */
.article-content-box { padding: 40px; }
.breadcrumbs { font-size: 0.85rem; color: #64748b; margin-bottom: 20px; font-weight: 500; }
.breadcrumbs a { color: var(--accent-color); }
.breadcrumbs a:hover { text-decoration: underline; }

.article-title { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 900; line-height: 1.3; margin-bottom: 15px; color: var(--primary-color); }

.article-meta-top { display: flex; justify-content: space-between; align-items: center; color: #64748b; font-size: 0.9rem; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid var(--border-color); }
.author-name { font-weight: 600; color: var(--primary-color); }

.article-summary-box { background: #F8FAFC; padding: 20px; border-radius: 8px; display: flex; gap: 15px; margin-bottom: 25px; border: 1px solid #E2E8F0; }
.summary-bullet { width: 12px; height: 12px; background-color: var(--accent-color); flex-shrink: 0; margin-top: 5px; }
.article-summary-box p { font-size: 1.1rem; color: #334155; line-height: 1.6; font-weight: 500; margin-bottom: 0; }

.article-dates { display: flex; justify-content: space-between; font-size: 0.8rem; color: #94A3B8; margin-bottom: 20px; }

.article-main-img-wrap { margin-bottom: 25px; text-align: center; }
.article-main-image { width: 100%; max-height: 500px; object-fit: cover; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.image-caption { font-size: 0.85rem; color: #64748b; margin-top: 8px; font-style: italic; }

.article-actions-bar { display: flex; gap: 15px; margin-bottom: 30px; justify-content: center; }
.action-btn { background: var(--white); border: 1px solid #CBD5E1; padding: 8px 20px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; color: #475569; display: flex; align-items: center; gap: 8px; cursor: pointer; transition: all 0.2s; }
.action-btn:hover { background: #F1F5F9; border-color: #94A3B8; }

.article-body-content { font-size: 1.15rem; line-height: 1.8; color: #334155; font-family: var(--font-serif); }
.article-body-content p { margin-bottom: 20px; }

/* Sidebar Latest News Widget */
.sidebar-widget-title { font-size: 1.2rem; color: #2563eb; border-bottom: 2px solid #2563eb; padding-bottom: 10px; margin-bottom: 20px; font-weight: 700; }
.latest-news-widget { display: flex; flex-direction: column; gap: 20px; }
.latest-news-item { display: flex; gap: 15px; align-items: flex-start; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; }
.latest-news-item:last-child { border-bottom: none; padding-bottom: 0; }
.latest-number { font-size: 3rem; font-weight: 900; color: #E2E8F0; line-height: 0.8; }
.latest-content { flex: 1; }
.latest-content h4 { font-size: 0.95rem; line-height: 1.4; font-weight: 700; color: var(--primary-color); }
.latest-content h4 a:hover { color: var(--accent-color); }
.latest-thumbnail { width: 80px; height: 60px; flex-shrink: 0; }
.latest-thumbnail img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }


/* Auth / Admin forms */
.auth-container { max-width: 450px; margin: 80px auto; background: var(--white); padding: 50px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.auth-container h2 { font-family: var(--font-serif); margin-bottom: 30px; text-align: center; color: var(--primary-color); font-size: 2rem; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; font-weight: 600; color: var(--primary-color); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px; border: 1px solid #CBD5E1; border-radius: 6px; font-size: 1rem; font-family: var(--font-sans); }
.btn-block { width: 100%; padding: 14px; font-size: 1.1rem; border-radius: 6px; }
.btn-primary { background-color: var(--accent-color); color: var(--white); border: none; cursor: pointer; font-weight: 600; }

/* Admin */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 260px; background-color: var(--primary-color); color: var(--white); padding: 30px 0; }
.admin-sidebar h3 { text-align: center; padding: 0 20px 30px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; font-family: var(--font-serif); }
.admin-nav li a { display: block; padding: 16px 25px; color: #94A3B8; font-weight: 500; border-left: 4px solid transparent; }
.admin-nav li a.active, .admin-nav li a:hover { background-color: rgba(255,255,255,0.05); color: white; border-left-color: var(--accent-color); }
.admin-content { flex: 1; padding: 50px; background-color: var(--bg-color); }
table { width: 100%; border-collapse: collapse; background: white; border-radius: 8px; overflow: hidden; }
th, td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--border-color); }
th { background-color: #F8FAFC; color: var(--primary-color); }
.action-link { color: var(--accent-color); margin-right: 15px; font-weight: 600; }

footer { background-color: var(--primary-color); color: #94A3B8; text-align: center; padding: 30px 0; margin-top: 80px; }

/* Reaction Widget */
.reaction-widget-container { background: #f8fafc; border-radius: 8px; padding: 25px; margin-top: 40px; margin-bottom: 40px; }
.reaction-header { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.reaction-title { font-weight: 800; font-size: 1.2rem; color: var(--primary-color); }
.reaction-badge { background: #3730a3; color: white; padding: 4px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.reaction-emojis { display: flex; justify-content: space-between; text-align: center; }
.reaction-item { flex: 1; display: flex; flex-direction: column; align-items: center; cursor: pointer; transition: transform 0.2s; }
.reaction-item:hover { transform: translateY(-5px); }
.emoji-circle { font-size: 3rem; line-height: 1; margin-bottom: 10px; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1)); }
.reaction-label { font-size: 0.9rem; color: #475569; font-weight: 500; margin-bottom: 5px; }
.reaction-pct { background: #e2e8f0; color: #334155; font-size: 0.75rem; padding: 3px 12px; border-radius: 12px; font-weight: 700; }
.pct-active { background: #e0e7ff; color: #3730a3; }

/* Quizly Box */
.quizly-box { border: 1px solid #3730a3; border-radius: 6px; margin-top: 40px; margin-bottom: 40px; overflow: hidden; background: white; font-family: var(--font-sans); }
.quizly-question { font-weight: 800; font-size: 1.15rem; color: #1e293b; padding: 25px 25px 15px; line-height: 1.4; letter-spacing: 0.2px; }
.quizly-options { padding: 0 25px 10px; display: flex; flex-direction: column; gap: 10px; }
.quizly-option { background: white; border: 1px solid #3730a3; color: #1e293b; border-radius: 20px; padding: 12px 15px; text-align: center; font-size: 1rem; cursor: pointer; transition: background 0.2s; font-weight: 500; letter-spacing: 0.3px; }
.quizly-option:hover { background: #f1f5f9; }
.quizly-footer-login { padding: 5px 25px 15px; text-align: right; font-size: 0.85rem; font-weight: 700; }
.quizly-footer-login a { color: #1e293b; text-decoration: underline; display: inline-flex; align-items: center; gap: 5px; }
.quizly-brand-footer { background: #3730a3; padding: 12px 25px; display: flex; justify-content: space-between; align-items: center; }
.quizly-brand { color: white; font-weight: 600; font-size: 1.2rem; display: flex; align-items: center; gap: 5px; letter-spacing: 0.5px; }
.quizly-brand i { font-size: 0.8rem; opacity: 0.8; margin-top: -5px; }
.quizly-next-btn { background: #fbbf24; color: #3730a3; width: 34px; height: 34px; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; }
/* Comment Section */
.comment-section-container { margin-top: 40px; }
.comment-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e2e8f0; padding-bottom: 15px; margin-bottom: 25px; }
.comment-title { font-weight: 800; font-size: 1.3rem; color: #475569; }
.comment-bell { color: #94a3b8; font-size: 1.2rem; cursor: pointer; }
.comment-input-box { border: 1px solid #cbd5e1; border-radius: 6px; overflow: hidden; background: white; }
.comment-input-box textarea { width: 100%; border: none; padding: 15px; height: 100px; resize: vertical; font-family: var(--font-sans); font-size: 1rem; outline: none; }
.comment-footer { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; border-top: 1px dashed #cbd5e1; background: white; }
.comment-lang { color: #475569; font-weight: 600; font-size: 0.9rem; }
.btn-signin { background: #3730a3; color: white; border: none; padding: 8px 25px; border-radius: 4px; font-weight: 700; cursor: pointer; font-size: 0.9rem; transition: background 0.2s; }
.btn-signin:hover { background: #312e81; }

/* Minimal Share Dropdown */
.share-btn-container { position: relative; display: inline-block; }
.share-dropdown-minimal {
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    margin-top: 5px;
    background: transparent;
    border: none;
    box-shadow: none;
    gap: 15px;
    align-items: center;
    z-index: 10;
}
.share-dropdown-minimal.show { display: flex; }
.minimal-share-icon {
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; border: none; cursor: pointer; background: transparent;
}
.fb-icon { color: #1877F2; font-size: 1.4rem; }
.wa-icon { color: #25D366; font-size: 1.5rem; }
.link-icon {
    color: #000; font-size: 1.1rem;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    width: 32px; height: 32px;
    border-radius: 4px;
}
.link-icon:hover { background: #e2e8f0; }

/* =========================================
   MOBILE RESPONSIVENESS (Media Queries)
   ========================================= */

@media (max-width: 992px) {
    .home-layout-2col { grid-template-columns: 1fr; }
    .analysis-grid { grid-template-columns: 1fr 1fr; }
    
    /* Admin Layout Adjustments */
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; padding: 20px; }
    .admin-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
    .admin-nav li { width: auto; }
    .admin-nav li a { padding: 10px 15px; border-left: none; border-bottom: 4px solid transparent; }
    .admin-nav li a.active, .admin-nav li a:hover { border-left-color: transparent; border-bottom-color: var(--accent-color); }
    .admin-content { padding: 20px; }
    table { display: block; overflow-x: auto; white-space: nowrap; }
}

@media (max-width: 768px) {
    html, body { overflow-x: hidden !important; width: 100%; position: relative; touch-action: pan-y; }
    
    /* NEW MOBILE UI */
    .desktop-header { display: none; }
    .mobile-header { display: block; background-color: white; border-bottom: 2px solid #e2e8f0; width: 100%; max-width: 100vw; overflow: hidden; box-sizing: border-box; }
    
    /* Trending Row */
    .mobile-trending-row { display: flex; align-items: center; padding: 6px 10px; width: 100%; max-width: 100vw; box-sizing: border-box; background: var(--primary-color); }
    .trending-tag-wrap { margin-right: 12px; flex-shrink: 0; }
    .trending-tag { background: var(--accent-color); color: white; font-size: 0.65rem; font-weight: 800; padding: 4px 8px; border-radius: 4px; display: flex; align-items: center; gap: 4px; letter-spacing: 0.5px; }
    
    .trending-scroll { display: flex; overflow-x: auto; white-space: nowrap; gap: 8px; scrollbar-width: none; flex: 1; min-width: 0; align-items: center; -webkit-overflow-scrolling: touch; }
    .trending-scroll::-webkit-scrollbar { display: none; }
    .trending-plain { color: #e2e8f0; font-size: 0.8rem; }
    .trending-divider { color: #64748b; font-size: 0.8rem; padding: 0 2px; }

    /* Top Row */
    .mobile-top-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 10px; width: 100%; max-width: 100vw; box-sizing: border-box; background: white; border-bottom: 1px solid #e2e8f0; }
    .mobile-logo { display: inline-flex; flex-shrink: 1; min-width: 0; }
    .mobile-logo img { max-height: 28px; width: auto; object-fit: contain; }
    .mobile-icons { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
    
    .icon-btn-circle { width: 30px; height: 30px; border-radius: 50%; background: #f1f5f9; border: none; color: #0f172a; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; cursor: pointer; }
    .btn-orange { background: var(--accent-color); color: white; font-size: 0.6rem; font-weight: 700; padding: 6px 8px; border-radius: 4px; text-align: center; flex-shrink: 0; text-decoration: none; white-space: nowrap; }
    .btn-login-outline { border: 1px solid #0f172a; color: #0f172a; font-size: 0.65rem; font-weight: 600; padding: 5px 8px; border-radius: 4px; display: flex; align-items: center; gap: 4px; flex-shrink: 0; text-decoration: none; white-space: nowrap; }
    .hamburger-btn { background: transparent; border: none; font-size: 1.4rem; color: #0f172a; cursor: pointer; display: flex; align-items: center; padding-left: 2px; flex-shrink: 0; }
    
    /* Category Row */
    .mobile-category-row { display: flex; overflow-x: auto; white-space: nowrap; padding: 12px 10px; gap: 20px; scrollbar-width: none; width: 100%; max-width: 100vw; box-sizing: border-box; background: white; border-bottom: 1px solid rgba(0,0,0,0.05); -webkit-overflow-scrolling: touch; }
    .mobile-category-row::-webkit-scrollbar { display: none; }
    .mobile-category-row a { color: #0f172a; font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; flex-shrink: 0; }
    
    /* Slide Out Menu */
    .mobile-slide-menu { display: none; background: #fff; padding: 25px 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
    .mobile-search-btn-wrap { margin-bottom: 25px; }
    .btn-search-large { width: 100%; background: #2f9a5d; color: white; border: none; padding: 14px; font-size: 1.15rem; border-radius: 30px; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 8px; font-weight: 600; }
    .mobile-menu-list { list-style: none; padding: 0; margin: 0; }
    .mobile-menu-list li { border-bottom: 1px solid #f1f5f9; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; }
    .mobile-menu-list li:last-child { border-bottom: none; }
    .mobile-menu-list a { color: var(--primary-color); font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; gap: 12px; }
    .expand-icon { font-size: 1.4rem; font-weight: 300; color: #000; }
    
    /* Global Elements */
    .section-title { font-size: 1.25rem; }
    .page-wrapper { margin-top: 15px; }
    
    /* Homepage Layouts */
    .secondary-news-grid { grid-template-columns: 1fr; }
    .analysis-grid { grid-template-columns: 1fr; }
    .analysis-header { flex-direction: column; align-items: flex-start; gap: 20px; border-bottom: none; margin-bottom: 20px; }
    .analysis-header .section-title { margin-bottom: 10px; }
    
    .featured-news-block { flex-direction: column; }
    .featured-img-wrap img { height: 220px; }
    .featured-title { font-size: 1.4rem; }
    
    .sec-img-wrap { width: 100px; }
    .sec-img-wrap img { height: 70px; }
    
    /* Article Page */
    .article-content-box { padding: 20px; }
    .article-title { font-size: 1.5rem; }
    .article-meta-top { flex-direction: column; align-items: flex-start; gap: 10px; }
    .article-summary-box { flex-direction: column; }
    .article-actions-bar { flex-wrap: wrap; }
    .article-body-content { font-size: 1.05rem; }
    
    /* Reaction Widget */
    .reaction-emojis { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .reaction-item { min-width: 80px; flex: none; }
    .emoji-circle { font-size: 2.5rem; }
    
    /* Comment Section */
    .comment-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .comment-input-box textarea { height: 80px; }
    
    /* Sidebar Widgets */
    .latest-number { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    /* Smaller screens (Phones) */
    .vm-nav-links { font-size: 0.9rem; gap: 15px; }
    .action-btn { padding: 6px 15px; font-size: 0.85rem; }
    .featured-img-wrap img { height: 180px; }
}

/* =========================================
   ABOUT US PAGE STYLES
   ========================================= */
.about-container { max-width: 900px; margin: 0 auto; background: white; padding: 40px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.about-container h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 5px; color: var(--primary-color); }
.about-container .subtitle { color: #e11d48; font-weight: bold; font-size: 1.2rem; margin-bottom: 30px; letter-spacing: 1px; }
.about-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 30px; }
.about-card { padding: 20px; border: 1px solid #e2e8f0; border-radius: 6px; background: #f8fafc; }
.about-card h3 { font-size: 1.1rem; color: #475569; margin-bottom: 10px; border-bottom: 1px solid #cbd5e1; padding-bottom: 5px; display: inline-block; }
.about-card p { font-size: 0.95rem; line-height: 1.6; color: #334155; }
.editor-card { grid-column: span 2; text-align: center; background: #eff6ff; border-color: #bfdbfe; }
.editor-card h3 { border: none; font-size: 1.2rem; margin-bottom: 5px; }
.editor-card h2 { font-size: 1.8rem; color: var(--primary-color); }
.disclaimer-box { border: 2px solid #e11d48; border-radius: 8px; padding: 20px; background: #fff1f2; font-size: 0.85rem; line-height: 1.6; text-align: justify; color: #881337; margin-top: 20px; }

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .editor-card { grid-column: span 1; }
    .about-container { padding: 20px; }
}

/* =========================================
   FOOTER STYLES
   ========================================= */
.vm-footer { background-color: var(--primary-color); color: white; padding: 60px 0 20px 0; border-top: 5px solid #e11d48; margin-top: 50px; }
.footer-top-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; margin-bottom: 40px; }
.footer-logo { max-height: 60px; background: white; padding: 10px; border-radius: 4px; margin-bottom: 10px; }
.footer-subtitle { color: #cbd5e1; font-size: 0.9rem; letter-spacing: 1px; }
.footer-heading { color: #f8fafc; font-size: 1.2rem; margin-bottom: 15px; border-bottom: 2px solid #e11d48; padding-bottom: 5px; display: inline-block; font-weight: 700; }
.footer-text { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; margin-bottom: 8px; }
.footer-text i { width: 20px; color: #e11d48; }
.footer-text.highlight { color: white; font-weight: bold; font-size: 1.1rem; }

/* General Links Column */
.footer-links-list { display: flex; flex-direction: column; gap: 10px; }
.footer-links-list a { color: #cbd5e1; font-size: 0.95rem; transition: color 0.2s, transform 0.2s; display: inline-block; }
.footer-links-list a:hover { color: white; transform: translateX(5px); }

/* Connect Social Icons */
.social-icons-grid { display: grid; grid-template-columns: repeat(3, 40px); gap: 15px; }
.social-icon-btn { width: 40px; height: 40px; background: white; color: #0a2540; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: background 0.3s, color 0.3s; }
.social-icon-btn:hover { background: #e11d48; color: white; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; font-size: 0.9rem; }
.footer-bottom .copyright { color: #cbd5e1; }
.footer-bottom .developer { color: #64748b; }
.footer-bottom .developer a { color: #94a3b8; text-decoration: none; transition: color 0.3s; }
.footer-bottom .developer a:hover { color: white; text-decoration: underline; }

@media (max-width: 1200px) {
    .footer-top-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .footer-top-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .footer-top-grid { grid-template-columns: 1fr; text-align: center; }
    .social-icons-grid { justify-content: center; }
    .footer-heading { display: inline-block; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
