.beritaview article a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
}

.beritaview article .beritacard {
    display: flex;
    margin-bottom: 2.5rem;
}

.beritaview article .beritacard img {
    width: 10px;
}

.beritaview article .beritacard h2 {
    font-size: 20px;
    margin-left: 10px;
}

.beritaview article .beritacard p {
    font-size: 17px;
    margin-left: 10px;
}

@media screen and (min-width: 1024px) {
    .beritaview article .beritacard img {
        width: 160px;
        height: fit-content;
    }

    .beritaview article .beritacard h2 {
        font-size: 16px;
       
    }

    .beritaview article .beritacard p {
        font-size: 14px;
        
    }
}

@media screen and (max-width:580px) {
    .beritaview article .beritacard img {
        width: 100px;
        height: fit-content;
    }

    .beritaview article .beritacard h2 {
        font-size: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .beritaview article .beritacard p {
        font-size: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

}