.page.page--tickets {
    padding-top: 40px;
    padding-bottom: 60px;

}

.tickets-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tickets-title {
    margin: 0 0 16px 0;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #981702;
}

.tickets-intro {
    margin: 0 0 32px 0;
    max-width: 640px;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.tickets-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px 18px 16px;
    background-color: #f0e4dd;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.tickets-item__logo {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 16px;
    border-radius: 12px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tickets-item__logo img {
    max-width: 80%;
    max-height: 80%;
    display: block;
    object-fit: contain;
}

.tickets-item__name {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    color: #222222;
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-wrap: balance;
}

.tickets-item__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #981702;
    background-color: #981702;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.tickets-item__button:hover {
    background-color: #ffffff;
    color: #981702;
    box-shadow: 0 4px 12px rgba(152, 23, 2, 0.3);
}

.tickets-item__button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(152, 23, 2, 0.25);
}

.tickets-note {
    margin-top: 32px;
    font-size: 13px;
    line-height: 1.5;
    color: #777777;
}

/* Адаптив */

@media (max-width: 1199px) {
    .tickets-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 899px) {
    .page.page--tickets {
        padding-top: 32px;
        padding-bottom: 40px;
    }

    .tickets-title {
        font-size: 26px;
    }

    .tickets-intro {
        font-size: 15px;
    }

    .tickets-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .tickets-item {
        padding: 16px 12px 16px 12px;
    }
}

@media (max-width: 599px) {
    .tickets-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .tickets-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tickets-item__name {
        font-size: 14px;
    }

    .tickets-item__button {
        width: 100%;
    }
}
