/* ==========================================================================
   ANPASSUNG: VERANSTALTUNGSLISTE (Event-Extension)
   ========================================================================== */

/* Container einheitlich gestalten */
.rowView {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    margin-bottom: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover-Effekt wie bei den News */
.rowView:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
    border-color: #d5810e;
}

/* Struktur: Bild und Inhalt nebeneinander */
.event-teaser {
    display: flex;
    gap: 20px;
}

/* Bild-Bereich */
.event-teaser__image {
    flex: 0 0 25%;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.event-teaser__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Datum-Badge über dem Bild */
.event-teaser__date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(213, 129, 14, 0.9);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Text-Bereich */
.event-teaser__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-teaser__content h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.event-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

/* Button-Styling (übernimmt dein 'my-button-style') */
.button--primary {
    background-color: #d5810e !important; /* Erzwingt die Farbe */
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%; /* Volle Breite im Container */
}

.button--primary:hover {
    background-color: #e68a00 !important;
    box-shadow: 0 4px 12px rgba(213, 129, 14, 0.3);
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .event-teaser {
        flex-direction: column;
    }
    .event-teaser__image {
        flex: 0 0 100%;
        height: 200px;
    }
}

/* ==========================================================================
   ANPASSUNG: DETAILANSICHT (Veranstaltung - Optimiert)
   ========================================================================== */

.row-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Etwas mehr Abstand zwischen den Spalten */
    padding: 20px 0;
}

/* Sidebar (rechts) auf 40% vergrößert */
.column-item-lg-8 { flex: 0 0 55%; max-width: 55%; }
.column-item-lg-4 { flex: 0 0 40%; max-width: 40%; }

/* Hervorhebung der Additional Details */
.event--additionaldetails--description {
    background-color: #fffaf0; /* Helles Gold/Beige */
    border-left: 4px solid #d5810e;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
    color: #333;
}

.event--additionaldetails--description p {
    margin: 0;
}

/* Zusammenfassungs-Box (Sidebar) - optisch aufgewertet */
.event__summary {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Leichter Schatten */
}

.event__summary h2 {
    font-size: 1.4rem;
    color: #d5810e;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Responsive Anpassung */
@media (max-width: 992px) {
    .column-item-lg-8, 
    .column-item-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}