.mem-ticket-section{
    margin:40px 0;
}
.mem-ticket-title{
    font-size:1.6rem;
    margin-bottom:18px;
}
.mem-ticket-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:18px;
}
.mem-ticket-card{
    background:#fff;
    border-radius:14px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;
}
.mem-ticket-card h3{
    margin-bottom:10px;
}
.mem-ticket-price{
    font-size:1.2rem;
    font-weight:700;
    color:#2563eb;
    margin-bottom:10px;
}
.mem-ticket-meta{
    font-size:14px;
    color:#444;
    margin-bottom:14px;
    display:flex;
    flex-direction:column;
    gap:6px;
}
.mem-buy-btn{
    width:100%;
    padding:12px;
    border:none;
    border-radius:10px;
    background:#10b981;
    color:#fff;
    font-weight:700;
    cursor:pointer;
}
.mem-buy-btn:hover{
    background:#059669;
}
.mem-sold-out{
    padding:10px;
    background:#fee2e2;
    color:#991b1b;
    border-radius:8px;
    font-weight:600;
}
