.mmz-concert-page{
    font-family: inherit;
}

/* HERO */
.mmz-concert-page .concert-hero{
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.mmz-concert-page .concert-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.mmz-concert-page .concert-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
    text-align:center;
    padding:2rem;
}

.mmz-concert-page h1{
    font-size:3rem;
    color:white;
    margin-bottom:1rem;
}

.mmz-concert-page .hero-btn{
    background:white;
    color:#0249bc;
    padding:12px 24px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    margin-top:1rem;
}

/* Sections */
.mmz-concert-page section{
    padding:4rem 2rem;
    max-width:1100px;
    margin:auto;
}

.mmz-concert-page h2{
    font-size:2rem;
    margin-bottom:2rem;
    color:#0249bc;
}

/* Info Grid */
.mmz-concert-page .info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:1rem;
}

.mmz-concert-page .info-card{
    background:#f8f8f8;
    padding:1.5rem;
    border-radius:12px;
}

.mmz-concert-page .info-card h3{
    margin-bottom:0.5rem;
}

/* Text Box */
.mmz-concert-page .text-box{
    background:#f8f8f8;
    padding:2rem;
    border-radius:12px;
    line-height:1.7;
}

/* CTA */
.mmz-concert-page .concert-cta{
    text-align:center;
    background:#0249bc;
    color:white;
    border-radius:16px;
    margin-top:3rem;
}

.mmz-concert-page .concert-cta h2{
    color:white;
}

@media(max-width:700px){

    .mmz-concert-page h1{
        font-size:2rem;
    }

    .mmz-concert-page section{
        padding:2rem 1rem;
    }

}