/* =========================================================
   LOADING
========================================================= */
.vc-loading {
    text-align: center;
    padding: 60px;
    font-weight: 600;
}

/* =========================================================
   WRAPPER
========================================================= */
.vc-news-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================================
   FILTER
========================================================= */
.vc-news-filter {
    text-align: center;
    margin-bottom: 40px;
}

.vc-news-filter button {
    background: none;
    border: none;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.vc-news-filter button.active {
    border-color: #f7931e;
}

/* =========================================================
   HERO SLIDER
========================================================= */
.vc-news-headline-slider {
    position: relative;
    overflow: visible; /* penting untuk nav */
    margin-bottom: 40px;
}

/* SLIDE */
.vc-slide {
    display: none;
    position: relative;
}

.vc-slide.active {
    display: block;
}

/* LINK WRAP */
.vc-news-headline-slider a {
    display: block;
    position: relative;
}

/* IMAGE */
.vc-news-headline-slider img {
    width: 100%;
    height: auto;
    display: block;
}

/* GRADIENT OVERLAY */
.vc-news-headline-slider a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.6),
        rgba(0,0,0,0)
    );
    z-index: 2;
}

/* TEXT OVERLAY */
.vc-slide-overlay {
    position: absolute;
    bottom: 48px;
    left: 48px;
    z-index: 3;
    color: #fff;
    max-width: 65%;
}

/* TITLE */
.vc-slide-overlay h2 {
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 12px;
    font-weight: 700;
    color:white !important;
}

/* META */
.vc-event-date,
.vc-event-location {
    font-size: 16px;
    opacity: 0.95;
}

/* =========================================================
   SLIDER NAV - BOTTOM RIGHT
========================================================= */
.vc-slide-nav {
    position: absolute;
    bottom: 24px;
    top: auto;
    transform: none;
    z-index: 10;

    background: rgba(0,0,0,.6);
    color: #fff;
    border: none;

    width: 44px;
    height: 44px;
    font-size: 22px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* posisi */
.vc-slide-nav.prev {
    right: 72px;
}

.vc-slide-nav.next {
    right: 24px;
}

/* hover */
.vc-slide-nav:hover {
    background: rgba(0,0,0,.8);
}
/* =========================================================
   SLIDER NAV - BOTTOM RIGHT
========================================================= */
.vc-slide-nav {
    position: absolute;
    bottom: 24px;
    top: auto;
    transform: none;
    z-index: 10;

    background: rgba(0,0,0,.6);
    color: #fff;
    border: none;

    width: 44px;
    height: 44px;
    font-size: 22px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* posisi */
.vc-slide-nav.prev {
    right: 72px;
}

.vc-slide-nav.next {
    right: 24px;
}

/* hover */
.vc-slide-nav:hover {
    background: rgba(0,0,0,.8);
}

/* =========================================================
   GRID 2 COLUMN
========================================================= */
.vc-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vc-news-item img {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.vc-news-item h3 {
    font-size: 18px;
    margin: 0;
}

.vc-date {
    font-size: 13px;
    color: #777;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 768px) {

    .vc-slide-overlay {
        left: 20px;
        bottom: 20px;
        max-width: 90%;
    }

    .vc-slide-overlay h2 {
        font-size: 26px;
    }

    .vc-news-grid {
        grid-template-columns: 1fr;
    }
}



