*{
    margin: 0;
    padding: 0;
}

.hero .subhero{
    height: 175px;
}

.berita{
    width:95%; 
    margin-left:4%; 
    margin-top: 65px;
    overflow-y: auto;
    scrollbar-width: thin;
    height: 300px;
}
.txtnews{
    margin: auto;
    width: 100%;
    text-align: center;
    position: absolute;
}
.news{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 230px;
    justify-content: left;
}
.berita::-webkit-scrollbar {
    height: 10px; /* Tinggi scrollbar horizontal */
}

.berita::-webkit-scrollbar-track {
    background: #f1f1f1; /* Warna track scrollbar */
    border-radius: 5px;
}
.berita::-webkit-scrollbar-thumb {
    background: #888; /* Warna thumb scrollbar */
    border-radius: 5px;
}

.berita::-webkit-scrollbar-thumb:hover {
    background: #555; /* Warna thumb saat dihover */
    cursor: pointer;
}

.berita1 h5{
    margin-top: 20px;
}
.berita1 {
    margin-left: 30px;
    width: 300px;
    height: 300px;
    /* background-color: blue; */
}
.berita1 .imgberita {
    width: 285px;
    height: 130px;
    overflow: hidden; /* Memastikan elemen tidak melampaui container */
}

.berita1 img {
    width: 100%; /* Memaksa gambar untuk mengisi lebar container .imgberita */
    height: 100%; /* Memaksa gambar untuk mengisi tinggi container .imgberita */
    object-fit: contain;
    border-radius: 10px; /* Menambahkan sudut melengkung ke gambar */
}

.judulberita{
    font-size: medium;
    /* font-size: small; */
    width: 300px;
    height: 40px;
    /* white-space: wrap; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -line-clamp: 3;
}
.news a {
    text-decoration: none;
    color: black;
}

.judulberita:hover{
    color: green;
}
.deskripsiberita{
    font-size: small;
    width: 300px;
    height: 60px;
    /* white-space: wrap; */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -line-clamp: 3;
    /* border: 1px solid black; */
    /* background-color: red; */
}

/* admin  */
.form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 500px;
}

@media only screen and (max-width: 480px) {

    .hero .subhero{
        width: 330px;
        height: 90px;
        top: 430px;
        left: 20px;
    }

    /* berita */
    .txtnews{
        /* margin-left: 30%; */
        width: 100%;
        margin: auto;
        text-align: center;
    }
    .berita{
        width: 75%;
        margin-left: 12%;
    }
    
    .berita1{
        width: 250px;
    }
    
    .berita1 .imgberita{
    width: 250px;
    }
    
    .deskripsiberita{
        width: 250px;
    }
    
    .judulberita{
        width: 250px;
    }
}