<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.budi-event-slider {
    border-radius: 20px;
    overflow: hidden;
}

.budi-event-slider__item {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.budi-event-slider__item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(360deg, rgba(11, 55, 83, 0.94) 30%, rgba(11, 55, 83, 0) 126%);

}

.budi-event-slider__item-content {
    max-width: 80%;
    position: relative;
    z-index: 1;
    padding: 40px 75px 52px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.budi-event-slider__item-meta {
    gap: 11px;
    margin-bottom: 15px;
}

.budi-event-slider__item-category-text {
    background-color: var(--color-sub);
    color: #fff;
    padding: 4px 13px;
    border-radius: 4px;
}

.budi-event-slider__item-date {
    font-weight: 600;
    color: #fff;
}

.budi-event-slider__item-title {
    text-decoration: none;
    margin-bottom: 30px;
}

.budi-event-slider__item-title h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    hyphens: auto;
}

.budi-event-slider__item-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.budi-event-slider__item-arrow {
    background-color: var(--color-sub);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 52px;
    right: 58px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {

    .budi-event-slider__item-content {
        max-width: 100%;
        padding: 90px 20px 25px;
    }

    .budi-event-slider__item-arrow {
        top: 30px;
        right: 30px;
    }
}</pre></body></html>