.ticket-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;

}

.ticket-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    position: relative;
}

.ticket-card__link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.ticket-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #eee;
}

.ticket-card__media::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 42%;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.72),
        transparent
    );
}

.ticket-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 550ms ease;
}

.ticket-card__price {
    position: absolute;
    right: 12px;
    bottom: 8px;
    z-index: 1;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.ticket-card__content {
    min-height: 80px;
    padding: 16px;
}

.ticket-card__title {
    margin: 0;
    color: #f56b18;
    font-size: 18px !important;
    font-weight: 400;
    line-height: 1.25!important;
    text-transform: uppercase;
}

.ticket-card__link:hover .ticket-card__image {
    transform: scale(1.2);
}

.ticket-card__link:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    .ticket-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .ticket-cards {
        grid-template-columns: 1fr;
    }
}

.ribbon_4 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.ribbon_4 span {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 100px;
    display: block;
    background: #ff7519;
    background: linear-gradient(#ff7519 0, #f47e2f 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .25);
    position: absolute;
    top: 19px;
    left: -21px;
}