.event-detail-article{
    border:1px solid lightgray;
    border-radius: 25px;
    padding:5px;
    background-color: #f3f3f3;
}
.event-wrapper {
    max-width: 1100px;
    margin: 20px auto 40px auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1px;
    align-items: stretch;
}

/* LEFT COLUMN CONTENT */
.event-title {
    margin-top: 25px;
    color: #0f172a;
    text-decoration: none;
    font-size:3rem;
}

.event-card {
    background: white;
    padding: 16px 18px;
    margin-top: 12px;
    border-radius: 16px;
    border-left: 4px solid #0ea5e9;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

/* RIGHT COLUMN */
.event-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.event-image-box {
    aspect-ratio: 3 / 4;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.event-image-box::after {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 11px;
    color: #94a3b8;
}

.event-main-image {
    width: 90%;
    border-radius: 12px;
    cursor: pointer;
}

.tap-hint {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

.order-box {
    text-align: center;
}

/* ACTIVE SALES BUTTON */
.order-button {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 14px;
    background: #0ea5e9;
    color: white;
    font-weight: bold;
    width: 40%;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

.order-button:hover {
    opacity: .9;
    transform: translateY(-1px);
}

/* CLOSED SALES STATE */
.order-closed {
    background: #e2e8f0;
    color: #475569;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: bold;
    width: 40%;
    font-size: 20px;
    margin:auto;
}

.date-pill {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    margin: 4px 6px 0 0;
    text-decoration: underline;
}
.price-pill{
    display: inline-block;
    background: #bae6fd;
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
}

/* RESPONSIVE */
@media(max-width: 820px){
    .event-wrapper{
        grid-template-columns: 1fr;
    }
}
