/* =========================
   NEWS DETAIL (FINAL FIXED)
========================= */

.news-detail{
    padding-top: 110px;
    padding-bottom: 80px;
}

/* =========================
   CONTAINER (ðŸ”¥ LEBIH BALANCE)
========================= */
.news-detail .container{
    max-width: 1350px;     /* ðŸ”¥ biar ga terlalu mepet kanan */
    margin: 0 auto;
    padding-left: 60px;
    padding-right: 80px;   /* ðŸ”¥ kasih napas kanan */
}

/* =========================
   2 COLUMN LAYOUT
========================= */
.news-detail .detail-wrapper{
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* =========================
   LEFT IMAGE
========================= */
.news-detail .detail-left{
    width: 45%;
}

.news-detail .detail-left img{
    width: 100%;
    height: 520px;
    object-fit: cover;
}

/* =========================
   RIGHT CONTENT
========================= */
.news-detail .detail-right{
    width: 55%;
    display: flex;
    flex-direction: column;
}

/* =========================
   TITLE
========================= */
.news-detail .detail-title{
    font-size: 30px;   /* ðŸ”¥ sedikit lebih kecil biar elegan */
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

/* DATE */
.news-detail .detail-date{
    font-size: 13px;
    color: #777;
    margin-bottom: 18px;
}

/* =========================
   CONTENT (ðŸ”¥ INI YANG LO MAU)
========================= */
.news-detail .detail-content{
    font-size: 15px;
    line-height: 1.45;
    color: #333;

    max-width: 100%;   /* 🔥 INI SOLUSINYA */
}

/* PARAGRAPH */
.news-detail .detail-content p{
    margin: 0 0 6px 0 !important;
}

/* =========================
   SUBTITLE (ðŸ”¥ KECILIN)
========================= */
.news-detail .detail-content h3{
    font-size: 17px;
    font-weight: 500;
    margin: 10px 0 2px 0 !important;
}
/* hilangin gap aneh */
.news-detail .detail-content h3 + p{
    margin-top: 0;
}

/* =========================
   SHARE (ðŸ”¥ PALING BAWAH + TENGAH)
========================= */
.news-detail .detail-share{
    margin-top: auto;
    padding-top: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

/* LABEL */
.news-detail .share-label{
    font-size: 13px;
    color: #999;
}

/* ICON BULAT */
.news-detail .detail-share a{
    width: 36px;
    height: 36px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

/* ICON */
.news-detail .detail-share i{
    font-size: 14px;
    color: #000 !important;
}

/* HOVER */
.news-detail .detail-share a:hover{
    background: #000;
}

.news-detail .detail-share a:hover i{
    color: #fff !important;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px){

    .news-detail .container{
        padding-left: 20px;
        padding-right: 20px;
    }

    .news-detail .detail-wrapper{
        flex-direction: column;
        gap: 30px;
    }

    .news-detail .detail-left,
    .news-detail .detail-right{
        width: 100%;
    }

    .news-detail .detail-left img{
        height: 260px;
    }

    .news-detail .detail-title{
        font-size: 22px;
    }

    .news-detail .detail-content{
    font-size: 15px;
    line-height: 1.45;
    color: #333;

    max-width: 100%;   /* 🔥 INI SOLUSINYA */
}
}
.internal-link{
    color: #000;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #000;
    transition: 0.3s;
}

.internal-link:hover{
    background: #000;
    color: #fff;
}
.news-detail .detail-content a,
.news-detail .detail-content a:visited,
.news-detail .detail-content a:active,
.news-detail .detail-content a:focus {
    color: #000 !important;
    text-decoration: none !important;
}