/* ==========================================================================
   1. TERMINE & LIVE
   ========================================================================== 
*/
.termin-entry {
    display: flex;
    background: #2a2a2a;
    margin-bottom: 15px;
    border-left: 5px solid #e74c3c;
    padding: 15px;
    border-radius: 4px;
    align-items: center;
}

.is-today {
    border-left: 8px solid #f1c40f !important;
    background: #34495e;
    transform: scale(1.01);
}

.is-medial {
    border-left: 5px solid #3498db !important; /* Hellblau */
}

.termin-date {
    background: #444;
    padding: 10px;
    text-align: center;
    min-width: 80px;
    border-radius: 4px;
    margin-right: 20px;
}

.termin-date .day-name { display: block; font-size: 0.8rem; color: #bbb; text-transform: uppercase; }
.termin-date .day { display: block; font-size: 1.4rem; font-weight: bold; line-height: 1.1; }
.termin-date .year { display: block; font-size: 0.8rem; color: #bbb; }

.termin-info h3 { margin: 0 0 5px 0; color: #fff; }

.btn-small, .btn-ticket {
    display: inline-block;
    padding: 5px 12px;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9rem;
    color: white;
}
.btn-small { background: #555; }
.btn-ticket { background: #e74c3c; font-weight: bold; }

.low-tickets-btn { background: #e67e22 !important; animation: pulse 2s infinite; }
.badge-soldout { display: inline-block; padding: 5px 12px; background: #555; color: #ff4d4d; border: 1px solid #ff4d4d; font-weight: bold; border-radius: 3px; }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   2. RESPONSIVE DESIGN (Media Queries)
   ========================================================================== 
*/

@media screen and (max-width: 600px) {
    .content-wrapper h2 { margin-left: 0; text-align: center; }
    .news-entry { margin-left: 0; margin-right: 0; padding: 15px; }
    .news-content { flex-direction: column; align-items: center; text-align: center; }
    .news-thumb, .video-container { margin: 0 0 15px 0; }
    .termin-entry { flex-direction: column; text-align: center; }
    .termin-date { margin-right: 0; margin-bottom: 10px; width: 100%; }
}