/* Slider wrapper */
.ues-event-slider {
    padding: 20px 0;
}

/* Card */
.ues-event-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ues-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* Image */
.ues-event-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

/* Date badge */
.ues-event-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #E87D1E;
    color: #fff;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 600;
}

/* Content */
.ues-event-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ues-event-title {
    font-size: 18px;
    font-weight: 700;
    color: #104F75;
    margin-bottom: 10px;
    line-height: 1.3;
    text-align: center;
}

.ues-event-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Button */
.ues-btn {
    margin-top: auto;
    display: inline-block;
    background: #104F75;
    color: #fff !important;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
}

.ues-btn:hover {
    background: #E87D1E;
    color: #fff !important;
}

/* Owl dots */
.owl-theme .owl-dots .owl-dot span {
    background: #cfcfcf;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #104F75;
}

