/* Kolom Berita Utama */


.main-news-item {
    margin-bottom: 30px;
}

.main-news-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.news-category {
    color: #013753;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 5px;
}

.main-news-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

/* Kolom Berita Samping */
.sidebar-news {
    flex-direction: column;
    gap: 15px;
   
}

.sidebar-news-item {
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sidebar-news-img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    object-fit: cover;
}

.sidebar-news-title {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

/* Responsivitas */
@media (max-width: 768px) {
    .row {
        flex-direction: column; /* Susun berita utama dan sidebar secara vertikal */
    }

    .sidebar-news {
        display: none; /* Sembunyikan kolom berita samping pada perangkat kecil */
    }

    .main-news {
        flex: 1; /* Perbesar kolom berita utama */
    }
}
