/* ============================================
   FEATURED SLIDER — CLEAN & FINAL
   ============================================ */

/* --- “Feature Your Event” + icon --- */
.feature-your-event-plus svg {
    position: relative;
    top: 6px;
    color: #000;
}

/* ============================================
   REQUIRED RESTORED CSS FOR OVERLAY + HOVER
============================================ */

/* Correct featured slide image height */
.event-slider-container .event-slide img {
    width: 100%;
    height: 180px; /* matches live */
    object-fit: cover;
}

/* Live overlay behavior */
.event-slider-container .event-overlay {
    position: absolute;
    bottom: 0;
    padding: 1rem;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
}

.other-info-container {
    position: absolute;
    bottom: 0;
    padding: 1rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;

    /* Typography */
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.3;

    /* Overlay  */
    background: transparent;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
}


/* --- Info overlay --- */
.other-info-container {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Hover effect (match live) */
.event-slide:hover .event-overlay,
.event-slide:hover .other-info-container {
    transform: translateY(100%);
}

/* Correct added money color */
.added-money-f-slider {
    font-weight: 700;
    color: #33ed97 !important;
}


/* ============================================
   ARROW CONTAINER — FINAL FIX
   ============================================ */
.arrow-container {
    position: absolute;
    top: 8px;
    right: 0;
    display: flex;
    gap: 6px;
    z-index: 20;
}

.arrow-container .swiper-button-prev,
.arrow-container .swiper-button-next {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;

    height: 28px;
    width: 28px;
    background: #fff;
    border: 1px solid #930a2c;
    color: #930a2c;
    border-radius: 6px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.arrow-container .swiper-button-disabled {
    border-color: gray !important;
    color: gray !important;
    opacity: .6;
}

/* Arrow icons */
.arrow-container .swiper-button-prev::after,
.arrow-container .swiper-button-next::after {
    font-family: swiper-icons;
    font-size: 20px;
    line-height: 1;
}

/* ============================================
   SLIDE ELEMENTS
   ============================================ */
.event-slider-container .event-slide {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	background: #000;
	color: #fff;
}

.event-slider-container .event-slide img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.event-slide .event-info-row,
.event-slide .event-details,
.event-slide .event-profile {
    display: flex;
    align-items: flex-start;
}

.event-slide .event-profile {
    flex: 0 0 40px;
}

.event-slide .event-details {
    flex-direction: column;
    font-size: 0.85rem;
    line-height: 1.2;
}

/* Fallback empty slide */
/* Fix fallback "No featured events yet" slide */
.swiper-slide.fallback-slide {
    width: 270px !important;        /* match normal slide width */
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.fallback-card {
    width: 100%;
    height: 200px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

/* ============================================
   FIX SLIDE WIDTH WHEN INSIDE CALENDAR META ROW
   removed 12/2 scroll chevrons were not clickable
   ============================================ */

/* Desktop: 2 slides visible inside calendar
.slider-with-meta .swiper-slide {
    width: 200px !important;
}
*/
/* Mobile should stretch like live
@media (max-width: 576px) {
    .slider-with-meta .swiper-slide {
        width: 320px !important;
    }
}
*/
/* Match LIVE fallback look */
.slider-with-meta .fallback {
    background: #fff !important;
    color: #000 !important;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    height: auto;
}


