
.dark {
    background: #110f16;
}
.soldoutoverlay{
    font-family: "Special Elite", system-ui;
    color: red;
    position: absolute;
    top: 25%;
    left: 25%;
    font-weight: bold;
    font-size: 4rem;
    pointer-events: none;
}
.sold-out {
    position: absolute;
    top: 20px;
    left: -50px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 60px;
    transform: rotate(-45deg);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    pointer-events: none;
    z-index: 10;
    text-transform: uppercase;
    font-family:"Special Elite"
}
.actImage{
    position: relative;
    display: inline-block;
}

.infoPanel{
    min-height: 30rem;
    position: relative;
    /*display: inline-block;*/
padding: 1rem;
}
.btnColor{
    background: darkred;
    color: white;
}

.btnColor:hover {
    background: #6f0000;
}

a, a:hover {
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.linkWhite{
    color: white;
}
.linkWhite:hover{
    color: darkred;
}

/* Cards */
.postcard {
    flex-wrap: wrap;
    display: flex;
    box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
    border-radius: 10px;
    margin: 0 0 0 0;
    overflow: hidden;
    position: relative;
    color: #ffffff;
    transform: scale(0.8);
    /*max-height: 20rem;*/
}
.postcard.dark {
    background-color: #18151f;
}
.test{
    font-size: 1.2rem;
}
.textDetail{
    font-size: 1rem;
}
.postcard .t-dark {
    color: #18151f;
}
.postcard a {
    color: inherit;
}
.postcard h1, .postcard .h1 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}
.postcard .small {
    font-size: 80%;
}
.postcard .postcard__title {
    font-size: 1.75rem;
    margin-left: .5rem;
}
.postcard .postcard__img {
    /*max-height: 180px;*/
    width: 100%;
    object-fit: scale-down;
    position: relative;
}
.postcard .postcard__img_link {
    display: contents;
}
.postcard .postcard__bar {
    width: 50px;
    height: 10px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #424242;
    transition: width 0.2s ease;
}
.postcard .postcard__text {
    padding: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;

}
.postcard .postcard__preview-txt {
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
    height: 100%;
}
.postcard .postcard__tagbox {
    display: flex;
    flex-flow: row wrap;
    font-size: 14px;
    margin: 10px 0 0 0;
    padding: 0;
    justify-content: center;
}
.postcard .postcard__tagbox .tag__item {
    display: inline-block;
    background: rgba(83, 83, 83, 0.4);
    border-radius: 3px;
    padding: 2.5px 10px;
    margin: 0 5px 5px 0;
    cursor: default;
    user-select: none;
    transition: background-color 0.3s;
}
.postcard .postcard__tagbox .tag__item:hover {
    background: rgba(83, 83, 83, 0.8);
}
.postcard:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(-70deg, #424242, transparent 50%);
    opacity: 1;
    border-radius: 10px;
}
.postcard:hover .postcard__bar {
    width: 100px;
}

@media screen and (min-width: 769px) {
    .postcard {
        flex-wrap: inherit;
        
    }
    .postcard .postcard__title {
        font-size: 2rem;
    }
    .postcard .postcard__tagbox {
        justify-content: start;
    }
    .postcard .postcard__img {
        max-width: 300px;
        max-height: 100%;
        transition: transform 0.3s ease;
    }
    .postcard .postcard__text {
        padding: 3rem;
        width: 100%;
    }
    .postcard .media.postcard__text:before {
        content: "";
        position: absolute;
        display: block;
        background: #18151f;
        top: -20%;
        height: 130%;
        width: 55px;
    }
    .postcard:hover .postcard__img {
        transform: scale(1.1);
    }
    .postcard:nth-child(2n+1) {
        flex-direction: row;
    }
    .postcard:nth-child(2n+0) {
        flex-direction: row-reverse;
    }
    .postcard:nth-child(2n+1) .postcard__text::before {
        left: -12px !important;
        transform: rotate(4deg);
    }
    .postcard:nth-child(2n+0) .postcard__text::before {
        right: -12px !important;
        transform: rotate(-4deg);
    }
}
@media screen and (min-width: 1024px) {

    .postcard__text {
        padding: 2rem 3.5rem;
    }

    .postcard__text:before {
        content: "";
        position: absolute;
        display: block;
        top: -20%;
        height: 130%;
        width: 55px;
    }

    .postcard.dark .postcard__text:before {
        background: #18151f;
    }

    .postcard.light .postcard__text:before {
        background: #e1e5ea;
    }
}
/* COLORS */

.postcard .postcard__tagbox .blue.play:hover {
    background: #0076bd;
}

.blue .postcard__title:hover {
    color: #0076bd;
}

.blue .postcard__bar {
    background-color: #0076bd;
}

.blue::before {
    background-image: linear-gradient(-30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}

.blue:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}

.postcard .postcard__tagbox .red.play:hover {
    background: #bd150b;
}

.red .postcard__title:hover {
    color: #bd150b;
}

.red .postcard__bar {
    background-color: #bd150b;
}

.red::before {
    background-image: linear-gradient(-30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}

.red:nth-child(2n)::before {
    background-image: linear-gradient(30deg, rgba(189, 21, 11, 0.1), transparent 50%);
}


@media screen and (min-width: 769px) {

    .blue::before {
        background-image: linear-gradient(-80deg, rgba(0, 118, 189, 0.1), transparent 50%);
    }

    .blue:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgba(0, 118, 189, 0.1), transparent 50%);
    }

    .red::before {
        background-image: linear-gradient(-80deg, rgba(189, 21, 11, 0.1), transparent 50%);
    }

    .red:nth-child(2n)::before {
        background-image: linear-gradient(80deg, rgba(189, 21, 11, 0.1), transparent 50%);
    }

}
.exo-paragraph {
    background-color: #110f16;
    color: #fff;
}

.soldoutoverlay {
    font-family: "Special Elite", system-ui;
    color: red;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: clamp(2rem, 5vw, 4rem);
    pointer-events: none;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.actImage img {
    max-width: 100%;
    height: auto;
    display: block;
}

.infoPanel {
    position: relative;
    background: rgba(0,0,0,0.6);
    border-radius: 8px;
}

.btnColor {
    background: darkred;
    color: white;
    border: none;
}
.btnColor:hover {
    background: #6f0000;
}

a {
    text-decoration: none;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

/* Responsieve verbeteringen */
@media (max-width: 768px) {
    .infoPanel {
        padding: 1rem;
    }
    .event-times div {
        font-size: 0.95rem;
    }
}