/* ======================================================
   Vorstellungsort
   ====================================================== */

.hoftheater-vorstellungsort {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hoftheater-vorstellungsort-inner {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hoftheater-vorstellungsort-link {
    display: block;
    width: auto;
    max-width: 52rem;
    text-decoration: none !important;
    color: inherit;
}

.hoftheater-vorstellungsort .card {
    width: 52rem;
    max-width: 52rem;
    min-height: 300px;
    margin: 0;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.hoftheater-vorstellungsort-bild {
    width: 50%;
    min-width: 50%;
    overflow: hidden;
    position: relative;
}

.hoftheater-vorstellungsort-bild img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* ======================================================
   Overlay: Ausverkauft
   ====================================================== */

.hoftheater-vorstellungsort-bild.ausverkauft::after {
    background-image: url('/fileadmin/img/ticket_link_sold_rgba.png');
    background-size: 180px 91px;
    background-repeat: no-repeat;

    display: inline-block;
    width: 180px;
    height: 91px;

    content: "";

    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 40;
}


/* ======================================================
   Overlay: Schönwetter
   ====================================================== */

.hoftheater-vorstellungsort-bild.schoenwetter::after {
    background-image: url('/fileadmin/img/ticket_link_sunny_rgba.png');
    background-size: 180px 91px;
    background-repeat: no-repeat;

    display: inline-block;
    width: 180px;
    height: 91px;

    content: "";

    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 40;
}



/* ======================================================
   Overlay: Tickets an der Abendkasse
   ====================================================== */

.hoftheater-vorstellungsort-bild.abendkasse::after {
    background-image: url('/fileadmin/img/ticket_link_cash_green.png');
    background-size: 250px 126px;
    background-repeat: no-repeat;

    display: inline-block;
    width: 250px;
    height: 126px;

    content: "";

    position: absolute;
    left: 50%;
    top: 80%;

    transform: translate(-50%, -50%);

    z-index: 40;
    pointer-events: none;

    animation: hoftheater-abendkasse-pulse 2s infinite ease-in-out;
}


/* Dezentes Pulsieren */


@keyframes hoftheater-abendkasse-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        filter: drop-shadow(0 0 0 rgba(0, 200, 80, 0));
    }

    50% {
        transform: translate(-50%, -50%) scale(1.01);
        filter: drop-shadow(0 0 12px rgba(0, 200, 80, 0));
    }

}








/* ======================================================
   Rechte Seite der Karte
   ====================================================== */

.hoftheater-vorstellungsort .card-body {
    width: 50%;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.hoftheater-vorstellungsort-datum {
    flex-shrink: 0;
}

.hoftheater-vorstellungsort-datum h4 {
    margin: 0;
}

.hoftheater-vorstellungsort-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hoftheater-vorstellungsort-kuenstler h2 {
    margin-bottom: 0.25rem;
}

.hoftheater-vorstellungsort-titel h5 {
    margin-bottom: 0;
}

.hoftheater-vorstellungsort-location {
    margin-top: 1.5rem !important;
}

.hoftheater-vorstellungsort-location h2 {
    margin-bottom: 0.25rem;
}

.hoftheater-vorstellungsort-location h5 {
    margin-bottom: 0;
}


/* ======================================================
   Mobile
   ====================================================== */

@media (max-width: 768px) {

    .hoftheater-vorstellungsort-link {
        width: 100%;
        max-width: 22.15rem;
    }

    .hoftheater-vorstellungsort .card {
        width: 100%;
        max-width: 22.15rem;
        flex-direction: column;
    }

    .hoftheater-vorstellungsort-bild {
        width: 100%;
        min-width: 100%;
        height: auto;
    }

    .hoftheater-vorstellungsort-bild img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .hoftheater-vorstellungsort .card-body {
        width: 100%;
    }

    .hoftheater-vorstellungsort-content {
        display: block;
    }

    /* Overlays auf Mobilgeräten ebenfalls mittig */
    .hoftheater-vorstellungsort-bild.ausverkauft::after,
    .hoftheater-vorstellungsort-bild.schoenwetter::after {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

}