 :root {
            --primary-color: #11ACDA; /* Biru cerah */
            --secondary-color: #17a2b8; /* Teal */
            --dark-blue: #2c3e50; /* Biru tua untuk teks */
            --text-muted: #6c757d;
            --white: #ffffff;
            --light-bg: #f8f9fa;
            --border-color: #dee2e6;
            --card-dark-bg: linear-gradient(145deg, #34495e, #2c3e50);
        }

        body {
            background-color: var(--light-bg);
            font-family: 'Poppins', sans-serif;
        }

        /* Styling baru untuk Spotlight Card (Newsletter) */
        .spotlight-card-new {
            background: var(--card-dark-bg);
            color: var(--white);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .spotlight-card-new .icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .spotlight-card-new h4 {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .spotlight-card-new p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 1.5rem;
        }
        .spotlight-card-new .form-control {
            background-color: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--white);
            border-radius: 50px;
        }
        .spotlight-card-new .form-control::placeholder {
            color: rgba(255,255,255,0.5);
        }
        .spotlight-card-new .btn-primary {
             background: var(--primary-color);
             border: none;
             border-radius: 50px;
             font-weight: 600;
             width: 100%;
             padding: 12px;
             transition: all 0.3s ease;
        }
        .spotlight-card-new .btn-primary:hover {
            background-color: #0056b3;
            transform: translateY(-2px);
        }




        
/* =================================
   News Page - Final Design
   ================================= */
/* --- Header --- */
.news-header {
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.news-header::after {
    content: '';
    position: absolute; bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* --- Main News Grid Layout --- */
.news-grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 30px;
}
.featured-area { grid-column: 1 / 7; }
.secondary-area { grid-column: 7 / 10; }
.sidebar-area { grid-column: 10 / 13; }

/* --- Card Styles --- */
.article-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.card-img-wrapper {
    aspect-ratio: 16 / 10; /* KUNCI UNTUK UKURAN GAMBAR SAMA */
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}
.card-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.article-card:hover .card-img-wrapper img { transform: scale(1.05); }

.card-body { padding: 1.25rem; }
.card-meta { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }
.card-title { font-weight: 600; margin-top: 0.5rem; }
.card-title a { text-decoration: none; color: var(--dark-blue); }
.card-title a:hover { color: var(--primary-color); }
.read-more-link { font-weight: 600; color: var(--primary-color); text-decoration: none; }

/* --- Featured & Spotlight Area --- */
.area-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    padding-left: 5px;
}
.spotlight-card {
    background: var(--card-dark-bg);
    color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.spotlight-card ul { list-style: none; padding-left: 0; margin: 1.5rem 0; }
.spotlight-card ul li { padding-left: 2rem; position: relative; margin-bottom: 0.75rem; color: rgba(255,255,255,0.8); }
.spotlight-card ul li::before { content: '+'; position: absolute; left: 0; color: var(--primary-color); font-weight: 700; }
.author-info { display: flex; align-items: center; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background-color: var(--primary-color); display: flex; align-items: center; justify-content: center; font-weight: 600; margin-right: 15px; }
.author-details span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.featured-article .card-img-wrapper { aspect-ratio: 16 / 9; }

/* --- Sidebar Area --- */
.sidebar-widget {
    background-color: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.sidebar-widget h5 { font-weight: 600; padding-bottom: 0.75rem; border-bottom: 2px solid var(--primary-color); margin-bottom: 1rem; }
.sidebar-links { list-style: none; padding-left: 0; }
.sidebar-links li a { display: block; padding: 0.75rem 0.25rem; text-decoration: none; color: var(--dark-blue); font-weight: 600; border-bottom: 1px solid var(--border-color); }
.sidebar-links li:last-child a { border-bottom: none; }
.sidebar-links li a:hover { color: var(--primary-color); }

/* --- All Other Articles Section --- */
#all-articles { border-top: 1px solid var(--border-color); }
#search-input {
    border-radius: 50px;
    padding: 1rem 1.5rem 1rem 3rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    font-size: 1rem;
}
#search-container { position: relative; max-width: 700px; margin: 0 auto; }
#search-container .fa-search { position: absolute; top: 50%; left: 1.5rem; transform: translateY(-50%); color: #ccc; }
#loadMoreBtn {
    border-radius: 50px;
    font-weight: 600;
    padding: 14px 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 5px 15px rgba(17, 172, 218, 0.3);
    transition: all 0.3s ease;
}
#loadMoreBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(17, 172, 218, 0.4);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .news-grid-container {
        grid-template-columns: 1fr;
    }
    .featured-area, .secondary-area, .sidebar-area { grid-column: auto; }
}