/* ======== CSS untuk Berita ======== */

h2 {
    font-size: 28px; /* Ukuran font lebih besar */
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    color: #000000;
}

.container {
    width: 80%;
    margin: auto;
}

.news-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
}

/* Warna khusus untuk ekonomi */
#ekonomi {
    background-color: #d3d3d3; /* Warna abu-abu */
}

/* Warna khusus untuk syariah */
#syariah {
    background-color: #F5B716; /* Warna kuning keorenan */
}

.news-item {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 700px;
    border: 1px solid #000000;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    background-color: #ffffff;
}

.news-item img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.news-content {
    flex: 1;
    text-align: left;
}

.news-content h6 {
    font-size: 18px;
    margin: 0;
}

.news-content a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.news-content p {
    font-size: 14px;
    margin-top: 5px;
    color: #000000;
}

.news-content .read-more {
    display: block;
    margin-top: 5px;
    color: #000000;
    font-weight: bold;
    text-decoration: underline;
}
