/* TICKET */

.ticket-section {
    padding: 4rem 1.5rem;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.ticket-container {
    width: 100%;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.ticket-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ticket-card {
    background-color: #ffffff;
    border-radius: 28px;
    padding: 3rem 3.5rem;
    width: 100%;
    max-width: 640px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    color: black;
    margin: 0 auto;
}

.ticket-heading {
    margin-bottom: 2rem;
}

.ticket-heading h2 {
    margin: 0;
    color: black;
    font-size: clamp(2rem, 2.5vw + 1.5rem, 2.75rem);
    font-weight: 700;
}

.ticket-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.ticket-detail,
.ticket-meta,
.ticket-message {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

.ticket-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.ticket-meta-item {
    min-width: 140px;
}

.ticket-label {
    display: block;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: black;
    margin-bottom: 0.5rem;
}

.ticket-value {
    color: black;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.ticket-value strong,
.ticket-value b {
    font-weight: 700;
}

.ticket-highlight {
    color: black;
}

.ticket-message .ticket-value {
    font-size: 1.125rem;
    line-height: 1.6;
}

.ticket-section::before,
.ticket-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .ticket-card {
        padding: 2.5rem 2rem;
    }

    .ticket-meta {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ticket-section {
        padding: 3rem 1rem;
    }

    .ticket-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .ticket-meta-item {
        min-width: 120px;
    }

    .ticket-message .ticket-value {
        font-size: 1rem;
    }
}
