.wp-block-angie-snippets-hero-slider-0a275575 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.mySwiper-0a275575 {
    width: 100%;
    height: 60vh; /* Adjust height as needed */
    min-height: 400px;
}

.mySwiper-0a275575 .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-image-wrapper.no-image {
    background-color: #f0f0f0;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.slide-image-wrapper:hover .slide-overlay {
    background: rgba(0, 0, 0, 0.6); /* Darker on hover */
}

.slide-title-link {
    text-decoration: none;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.slide-title {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Swiper navigation colors */
.mySwiper-0a275575 .swiper-button-next,
.mySwiper-0a275575 .swiper-button-prev {
    color: #fff;
}

.mySwiper-0a275575 .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.mySwiper-0a275575 .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}