/* _konzerte.css: Spezielle Stile für die Konzertseite */

/* 1. WEISRAUM-KORREKTUREN: Angepasst an die kompakte Kontaktseite */

/* HERO-SEKTION (Konzerttitel) */
.content-block.hero-compact-konzerte {
    padding-top: 40px; 
    padding-bottom: 20px; /* Reduziert von 60px */
}

/* KONZERTE-SEKTION (Nächste Konzerte) */
.upcoming-concerts {
    padding-top: 20px; /* Reduziert von 60px */
    padding-bottom: 50px; /* Leicht mehr Platz zum Footer */
}

/* 2. TITEL-STYLING (Konsistent mit Kontaktseite) */

.upcoming-concerts h2 {
    font-size: 2.5em; 
    color: #0310FF; 
    margin-bottom: 15px; 
    text-align: center;
}

/* Styling für den Placeholder-Text */
.no-concerts-info {
    font-size: 1.2em;
    text-align: center;
    padding: 40px 0;
    margin: 0 auto;
    max-width: 800px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background-color: #FFFFFF;
}

/* ------------------------------------------- */
/* Platzhalter für zukünftige Konzertkarten-Styles (Styles sind zurzeit nicht aktiv, aber enthalten) */
/* ------------------------------------------- */

/* .concert-card {
    display: flex;
    align-items: stretch; 
    margin-bottom: 40px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    overflow: hidden; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: #FFFFFF;
}

.date-box {
    background-color: #0310FF; 
    color: #FFFFFF;
    flex-shrink: 0; 
    width: 150px;
    padding: 20px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.date-box .day {
    font-size: 3.5em;
    line-height: 1;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.concert-details {
    padding: 20px 30px;
    flex-grow: 1;
}

.concert-details h3 {
    font-size: 1.8em;
    color: #000000;
    border-bottom: 3px solid #FFC700; 
    padding-bottom: 5px;
    margin-top: 0;
    margin-bottom: 10px;
}
.ticket-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
    color: #0310FF;
    transition: color 0.3s ease;
} */