.hero-featured-image.hero-fit-cover {
    opacity: 0.1 !important;
    transform: translateX(-20px) !important;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-featured-image.hero-fit-cover.animate-in {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.button-primary {
    display: inline-block;
    padding: 12px 38px!important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--inner-bg, grey), #eee);
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.button-primary a{
     color:white!important;
}

/* Hover */
.button-primary:hover {
    background: linear-gradient(135deg, var(--inner-bg, grey), #eee);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}

/* Active (Klick) */
.button-primary:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

/* Focus (Accessibility) */
.button-primary:focus {
    outline: 3px solid  var(--inner-bg, #93c5fd);
    outline-offset: 3px;
}


body.page-booking-success .hero-featured-image {
    display: none !important;
}


.booking-success-page .hero-featured-image {
    display: none !important;
}

@media (max-width: 480px) {
    .event-overview-list img {
        max-width: 125px;
        height: auto;
        width: auto;
    }
}
