:root {
    --color-primary: #086ad8; /* Primary Color */
    --color-secondary: #a51b20;
}

/* Index Dashboard */
.about-img img {
    height: 400px;
    object-fit: cover;
}

/* Smaller height for smaller screens */
@media (max-width: 767px) {
    .about-img img {
        height: 200px;
    }
}

/* Detail Content */
.custom-bullet {
    list-style: none;
    padding-left: 0;
}

.custom-bullet li {
    position: relative;
    padding-left: 25px;
    margin-left: 10px;
    margin-bottom: 8px;
}

.custom-bullet li::before {
    content: "\2022"; /* Unicode bullet point */
    color: var(--color-secondary); /* Warna biru untuk bullet */
    font-weight: bold;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.content a {
    color: var(--color-primary);
}

.content p {
    margin-bottom: 0;
}

.content img {
    width: 100%;
    height: auto;
}

.custom-decimal-list {
    padding-left: 0;
}
.custom-decimal-list > li {
    list-style: decimal;
    list-style-position: inside;
}

/* Berita */
.custom-img {
    height: 375px;
    object-fit: cover;
}
.content video {
    min-width: 50%;
    height: 300px;
    object-fit: cover;
    display: block;
    /* margin: 0 auto; */
}
@media (max-width: 768px) {
    .custom-img {
        height: 200px;
        max-height: 375px;
        width: 100%;
    }
}
