.detailberita-section{
    padding: 80px 100px 100px 100px;
}

.detailberita-section .title{
    font-weight: bold;
    font-size: 48px;
    color: var(--primaryNeutral900);
    margin-bottom: 64px;
}

.detailberita-section .thumbnail{
    height: 446px;
    width: 70%;
    background-size: cover !important;
    background-position: center !important;
    margin: 0 auto 40px auto;
}

.detailberita-section .info{
    font-size: 16px;
    font-weight: 600;
    color: var(--primaryNeutral900);
    margin-bottom: 24px;
}

.detailberita-section .info .dot{
    margin: auto 12px;
    width: 4px;
    height: 4px;
    background-color: var(--primaryNeutral900);
    border-radius: 100%;
}

.detailberita-section .info  p{
    margin-bottom: 0;
}

.detailberita-section .title{
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 24px;
}  

.detailberita-section .content > p {
    color: var(--primaryNeutral900);
    line-height: 150%;
    text-align: justify;
}

.detailberita-section .source{
    font-size: 18px;
    font-weight: bold;
    color: var(--primaryNeutral900);
    padding-bottom: 80px;
    margin-bottom: 0;
    border-bottom: 1.5px solid var(--primaryNeutral200);
}

/* berita lain */
.detailberita-section .berita-lain{
    padding-top: 80px;
    align-items: stretch !important;
}

.detailberita-section .berita-lain .col-card{
    flex: 1;
    display: flex;
    width: 100%;
}

.detailberita-section .berita{
    flex: 1;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    color: var(--primaryNeutral900);
    width: 100%;
}


.detailberita-section .berita .berita-img{
    width: 100%;
    height: 292px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    border-radius: 4px 4px 0 0;
    position: relative;
    overflow: hidden;
}

.detailberita-section .berita .berita-img::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 30%;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 0.3s;
}

.detailberita-section .berita:hover .berita-img::after{
    opacity: 0;
}

.detailberita-section .berita .content{
    padding: 16px;
    border-radius: 0 0 4px 4px;
    border: 1.5px solid var(--primaryNeutral200);
    height: auto;
    flex: 1 1 auto;
}

.detailberita-section .berita .content .top-card{
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}


.detailberita-section .berita .top-card .dot{
    margin: auto 8px;
    width: 4px;
    height: 4px;
    background-color: var(--primaryNeutral900);
    border-radius: 100%;
}

.detailberita-section .berita .top-card p{
    margin-bottom: 0;
    width: fit-content;
}

.detailberita-section .berita .mid-card .title{
    font-weight: bold;
    color: var(--primaryNeutral900);
    margin: 0;
    margin-bottom: 8px;
    font-size: 18px;
}

.detailberita-section .berita .bottom-card{
    font-size: 16px;
    color: var(--primaryNeutral900);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-width: 90%;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .detailberita-section{
        padding: 80px 60px 60px 60px;
    }

    .detailberita-section .thumbnail{
        height: 400px;
        width: 90%;
    }

    .detailberita-section .berita-lain{
        padding-top: 60px;
    }

    .detailberita-section .berita-lain .col-card{
        flex: none;
    }
    

}

@media (max-width: 576px) {
    .detailberita-section{
        padding: 20px;
    }

    .detailberita-section .thumbnail{
        height: 300px;
    }

    .detailberita-section .berita-lain{
        padding-top: 20px;
    }
}