/* ===== SECTION NEWS ===== */
.news-section {
    padding: 80px 0;

    /* background berbeda agar tidak gabung dengan dark-section lain */
    background: linear-gradient(
        135deg,
        #222222,
        /* dark grey */ #2b2b2b /* sedikit lebih terang */
    );

    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
/* GRID */
.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* MAIN ARTICLE */
.news-main {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: 0.4s;
}

.news-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.6)
    );
    border-radius: 15px;
    pointer-events: none;
}

.news-main,
.news-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(177, 18, 38, 0.15);
    transition: 0.4s;
}

.news-main:hover,
.news-item:hover {
    transform: translateY(-5px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(177, 18, 38, 0.25);
}

.news-main img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    position: relative;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    margin: 10px 0;
}

.news-content p {
    color: #ccc;
}

/* DATE */
.news-date {
    font-size: 13px;
    color: #b11226;
}

/* READ MORE */
.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #ff4d5a;
    text-decoration: none;
}

/* SIDE LIST */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ITEM */
.news-item {
    display: flex;
    gap: 15px;
    align-items: center;

    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 10px;

    border: 1px solid rgba(255, 255, 255, 0.06);

    transition: 0.3s;
}

.news-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.news-item span {
    font-size: 12px;
    color: #b11226;
}

.news-item h4 {
    font-size: 14px;
    margin-top: 5px;
}

/* HOVER */
.news-main:hover,
.news-item:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(177, 18, 38, 0.2);
}
