/* =========================
ARTIKEL DETAIL
========================= */

.artikel-header{
background:#f8f9fa;
}

.artikel-detail h2{
margin-top:25px;
font-weight:600;
}

.artikel-detail p{
color:#555;
line-height:1.8;
}

.artikel-sidebar{
background:#fff;
padding:25px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
border-radius:10px;
}

.sidebar-item{
display:flex;
gap:15px;
margin-bottom:20px;
align-items:center;
}

.sidebar-item img{
width:80px;
height:60px;
object-fit:cover;
border-radius:6px;
}

.sidebar-item a{
font-weight:500;
color:#222;
display:block;
}

.sidebar-item span{
font-size:12px;
color:#888;
}


/* ARTIKEL */
.service-item{
    border-radius: 10px;
    overflow: hidden;
}

.service-link{
    display: block;
    color: inherit;
    text-decoration: none;
}

.service-img{
    position: relative;
    height: 260px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .4s;
}

.service-overlay{
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    text-align: center;
    padding: 15px 0;
    transition: .4s ease;
}

.read-more{
    color: #8a2432;
    font-weight: 600;
}

.service-item:hover .service-overlay{
    bottom: 0;
}

.service-item:hover img{
    transform: scale(1.05);
}

.service-date{
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.service-date i{
    font-size: 14px;
    color: #8a2432;
}

/* =========================
SEJARAH CARD MODERN
========================= */

.sejarah-modern{
background:#fff;
}

.sejarah-card{
background:#fff;
border-radius:14px;
box-shadow:0 15px 35px rgba(0,0,0,.06);
overflow:hidden;
transition:.3s;
height:100%;
}

.sejarah-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.sejarah-card-title{
background:#8a2432;
color:#fff;
padding:18px 25px;
font-weight:600;
font-size:18px;
}

.sejarah-card-body{
padding:25px;
}

.sejarah-item{
margin-bottom:18px;
}

.sejarah-item:last-child{
margin-bottom:0;
}

.sejarah-item span{
display:block;
font-weight:700;
color:#8a2432;
margin-bottom:5px;
}

.sejarah-item p{
margin:0;
color:#6c757d;
font-size:14px;
line-height:1.7;
}

.contact-wa{
background:#f8f9fa;
}

.contact-wa-box{
background:#fff;
padding:40px;
border-radius:12px;
box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.contact-wa .form-control{
padding:14px;
border-radius:8px;
}

.contact-wa button{
border-radius:30px;
font-weight:500;
}