.section-repertuar {
    margin-top: 32px;
}

.section-repertuar .ticket-btn {
    background-color: #B20710;
    border-radius: 10px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.section-repertuar .repertuar-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    column-gap: 4%;
}


.section-repertuar .repertuar-box img {
    object-fit: cover;
    object-position: center;
    min-height: 275px;
    border-radius: 8px;
    width: 100%;
    display: flex;
}

.section-repertuar .spektakl-content h3 {
    font-weight: 700;
    font-size: calc(2rem * var(--font-scale));
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #212121;
    margin: 12px 0;

}

.section-repertuar .spektakl-info {
    font-weight: 500;
    font-size: calc(1.4rem * var(--font-scale));
    line-height: 160%;
    letter-spacing: 0.2px;
    color: #212121;
    margin-bottom: 4px;
}

.section-repertuar .spektakl-desc {
    font-weight: 500;
    font-size: calc(1.4rem * var(--font-scale));
    line-height: 160%;
    letter-spacing: 0.2px;
    color: #212121;
    margin: 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.section-repertuar .ticket-btn {
    transition: 0.3s ease;
    font-weight: 700;
    font-size: calc(1.4rem * var(--font-scale));
    line-height: 160%;
    letter-spacing: 0.2px;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
}

.section-repertuar .ticket-btn:hover {
    color: #212121;
}

.section-repertuar .ticket-btn svg path {
    transition: 0.3s ease;
}

.section-repertuar .ticket-btn:hover svg path {
    fill: #212121;
}

.section-repertuar .btn {
    white-space: nowrap;
}

.section-repertuar .repertuar-img {
    overflow: hidden;
    border-radius: 8px;
    display: flex;
}

.section-repertuar .repertuar-img img {
    transition: transform 0.4s ease;
    display: block;
    width: 100%;
    height: auto;
}

.section-repertuar .repertuar-img:hover img {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .section-repertuar {
        margin-top: 48px;
    }
}

@media (min-width: 1024px) {
    .section-repertuar .repertuar-box {
        display: flex;
        justify-content: space-between;
    }

    .section-repertuar .repertuar-img {
        width: 45%;
    }

    .section-repertuar .spektakl-content {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .section-repertuar .spektakl-info {
        margin-bottom: 0;

    }

    .section-repertuar .spektakl-content h3 {
        margin: 0;
        margin-bottom: 8px;
    }

    .section-repertuar .spektakl-desc {
        margin: 4px 0;
    }

    .section-repertuar .ticket-btn {
        margin: 1rem 0 0 0;
        max-width: 300px;
    }
}

@media (min-width: 1200px) {
    .section-repertuar {
        margin-top: 72px;
    }
}

/* contrast */

.contrast-yellow-black .section-repertuar .ticket-btn {
    background: var(--wcag-black);
    color: var(--wcag-yellow);
}

.contrast-yellow-black .section-repertuar .ticket-btn svg path {
    fill: var(--wcag-yellow);
}

.contrast-black-yellow .section-repertuar .ticket-btn {
    background: var(--wcag-yellow);
    color: var(--wcag-black);
}

.contrast-black-yellow .section-repertuar .ticket-btn svg path {
    fill: var(--wcag-black);
}

.contrast-black-yellow .section-repertuar .spektakl-info,
.contrast-black-yellow .section-repertuar .spektakl-desc {
    color: var(--wcag-yellow);
}

.contrast-black-yellow .section-repertuar .spektakl-content h3 {
    color: var(--wcag-yellow);
}

/* contrast */