.news-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff, #f5f8ff);
}

/* Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.news-card {
    border-radius: 22px;
    background: rgba(255,255,255,.9);
    text-decoration: none;
    overflow: hidden;
    border: 1px solid rgba(13,110,253,.08);
    box-shadow: 0 20px 40px rgba(2,6,23,.06);
    transition: all .4s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(13,110,253,.18);
}

/* Image */
.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

/* Image overlay */
.news-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.0),
        rgba(0,0,0,.45)
    );
}

/* Body */
.news-body {
    padding: 22px;
    position: relative;
}

/* Date badge */
.news-date {
    position: absolute;
    top: -36px;
    left: 22px;
    width: 70px;
    height: 80px;
    border-radius: 16px;
    background: #E6FF2A;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(13,110,253,.45);
}

.news-date .day {
    font-size: 26px;
    font-weight: 800;
}

.news-date .month {
    font-size: 13px;
    letter-spacing: 1px;
}

/* Content */
.news-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 24px;
    margin-bottom: 6px;
    line-height: 1.45;
}

.news-meta {
    font-size: 13px;
    color: #64748b;
}

/* Responsive */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-image {
        height: 180px;
    }
}


/* ===============================
   ARTICLE DETAIL – FUTURISTIC
================================ */

.article-hero {
    background: linear-gradient(135deg, #EAE9EE, #DDDDDB);
    padding: 90px 0;
}

/* BIG TITLE */
.article-title-big {
    font-size: 24px;
    font-weight: 700 !important;
    line-height: 1.25;
    color: #111;
    margin-bottom: 10px;
    text-align: justify;
}

.article-content{
    text-align: justify;
}
/* DATE */
.article-date-top {
    font-size: 13px;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 24px;
}

/* COVER */
.article-cover-big img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,.12);
}

/* GLASS CONTENT */
.sidebar-news {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,.08);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
    text-align: justify;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: #E6FF2A;
    border-radius: 999px;
}

.sidebar-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: justify;
}

.sidebar-news-list li {
    border-bottom: 1px solid #eee;
}

.sidebar-news-list li:last-child {
    border-bottom: none;
}

.sidebar-news-list a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    color: #111;
}

.sidebar-news-list .date {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 4px;
}

.sidebar-news-list .title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    transition: .3s;
}

.sidebar-news-list a:hover .title {
    color: #91A1B1;
}

.breadcrumb-futuristic {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 20px;
    align-items: center;
}

.breadcrumb-futuristic a {
    color: #555;
    text-decoration: none;
    transition: .3s;
}

.breadcrumb-futuristic a:hover {
    color: #000;
}

.breadcrumb-futuristic span {
    color: #999;
}

.breadcrumb-futuristic .current {
    color: #111;
    font-weight: 600;
}

.share-wrapper {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: #333;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
    border: 1.5px solid #E6FF2A;
    color: #222;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.share-btn:hover {
    background: #E6FF2A;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,255,42,0.45);
}

/* OPTIONAL IDENTITAS */
.share-btn.fb { }
.share-btn.x { }
.share-btn.wa { }
.share-btn.copy { cursor: pointer; }

@media (max-width: 576px) {
    .share-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .share-btn {
        width: 100%;
        text-align: center;
    }
}

.futuristic-card {
    border-radius: 16px;
    border: 1px solid rgba(230,255,42,.4);
    background: linear-gradient(145deg,#EAE9EE,#DDDDDB);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    transition: all .4s ease;
}

.futuristic-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(230,255,42,.35);
}

.futuristic-card img {
    height: 400px;
    object-fit: cover;
}

.futuristic-card .date {
    font-size: 12px;
    color: #91A1B1;
    letter-spacing: 1px;
}

.futuristic-card .title a {
    font-weight: 700;
    font-size: 16px;
    color: #111;
    text-decoration: none;
}

.futuristic-card .title a:hover {
    color: #4b4b4b;
}

.futuristic-input {
    border-radius: 14px;
    padding: 12px 16px;
    border: 1px solid #E6FF2A;
    background: linear-gradient(145deg,#EAE9EE,#DDDDDB);
    font-weight: 600;
}

.futuristic-input:focus {
    box-shadow: 0 0 20px rgba(230,255,42,.6);
}

.row.mb-4 {
    gap: 12px;
}

/* BASE SELECT */
#filterMonth,
#filterYear {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background: linear-gradient(145deg, #EAE9EE, #DDDDDB);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;

    padding: 12px 44px 12px 18px;

    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #111;
    cursor: pointer;

    transition: all 0.35s ease;
}

/* HOVER */
#filterMonth:hover,
#filterYear:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
    transform: translateY(-1px);
}

/* FOCUS (GLOW FUTURISTIC) */
#filterMonth:focus,
#filterYear:focus {
    outline: none;
    border-color: #E6FF2A;
    box-shadow:
        0 0 0 3px rgba(230,255,42,.35),
        0 12px 32px rgba(230,255,42,.45);
}

/* ACTIVE STATE (KETIKA ADA VALUE) */
#filterMonth.active,
#filterYear.active {
    border-color: #E6FF2A;
    box-shadow:
        inset 0 0 0 1px rgba(230,255,42,.7),
        0 0 18px rgba(230,255,42,.55);
}

/* OPTION (TERBATAS OLEH BROWSER) */
#filterMonth option,
#filterYear option {
    background-color: #EAE9EE;
    font-weight: 600;
    color: #111;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .row.mb-4 > div {
        width: 100%;
    }
}

.article-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-bottom: 6px;

    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;

    color: #000;
    background: linear-gradient(135deg, #E6FF2A, #bfff00);
    border-radius: 999px;

    box-shadow:
        0 0 14px rgba(230,255,42,.5),
        inset 0 0 6px rgba(255,255,255,.4);
}

.category-chip-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-chip {
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(230,255,42,.4);
    background: rgba(0,0,0,.4);
    color: #E6FF2A;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .08em;

    display: flex;
    align-items: center;
    gap: 6px;

    cursor: pointer;
    transition: all .3s ease;
}

.category-chip:hover {
    background: #E6FF2A;
    color: #000;
    box-shadow: 0 0 18px rgba(230,255,42,.6);
}

.category-chip.active {
    background: #E6FF2A;
    color: #000;
}
