.slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 400px;
    display: flex;    
    border: 3px solid rgba(140,140,140);
}
        
/* Side Navigation */
.side-nav {
    width: 200px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
    background-color: #FFF;
}
.nav-item {
    position: relative;
    display: flex;
    align-items: center; 
    height: 100px;
    background-image: url("../images/background/bgnews.png");
    background-size: cover;
    background-position: center;
    cursor: pointer;
    color: white;
    overflow: hidden;
    padding: 15px 10px 0px 10px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
    border-top: 0.5px solid rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background 0.3s ease;
    z-index: 1;
}

.nav-item:hover::before,
.nav-item.active::before {
    background: rgba(255, 0, 0, 0.4); /* Merah transparan */
}

/* Agar teks tetap muncul di atas overlay */
.nav-item * {
    position: relative;
    z-index: 2;
}

.title-text {
    line-height: 1.2;        /* Tinggi baris: sekitar 1 spasi */
    margin-bottom: 1em;      /* Jarak antar paragraf */
    font-size: 13px;
    color: white;
}
        
/* Main Slider */
.slider-main {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 100%;
}
        
.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}
        
.slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
    border-top: 0.5px solid rgba(255, 255, 255, 0.5);
}

.slide-content {
    position: absolute;
    width: 100%;
    height: 130px;
    z-index: 2; /* Di atas overlay dan background */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7));
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    margin-left: -40px;
    margin-bottom: -40px;
    border-right: 10px solid rgba(255, 0, 0, 0.8);
}

.label-kategori {
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 2;
}

.slide h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    padding-top: 15px;
}
        
.slide p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}
        
.date {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}
          
.english-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: normal;
}
        
.additional-info {
    font-size: 0.9rem;
    margin-top: 20px;
    font-style: italic;
}
        
/* Navigation Arrows */
.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    height: 50px;
    width: 25px;
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: background 0.3s;
}
        
.arrow-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}
        
.prev-btn {
    left: 10px;
}
        
.next-btn {
    right: 10px;
}

.berita-lain {
    width: 100%;
    text-align: center;
}

.link-seo{
    color: #FFF;
    font-weight: 700;
}

.link-seo:hover{
    color: #0067C4;
    font-weight: 700;
}