
        .modern-events-container {
            margin: 30px 0;
            font-family: inherit;
        }
        
        .me-event-item {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 20px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease;
            position: relative;
        }
        
        .me-event-item:hover {
            transform: translateY(-2px);
        }
        
        /* Event-Bild */
        .me-event-image {
            flex: 0 0 250px;
            margin-right: 25px;
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .me-event-image img {
            display: block;
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }
        
        .me-event-image img:hover {
            transform: scale(1.05);
        }
        
        /* Event-Details */
        .me-event-details {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
        }
        
        .me-event-group {
            display: flex;
            flex-direction: column;
            margin-right: 25px;
            margin-bottom: 15px;
            color: #3a3a3a;
        }
        
        .me-event-label {
            font-size: 0.85em;
            color: #666;
            margin-bottom: 3px;
        }
        
        .me-event-value {
            line-height: 1.4;
        }
        
        .me-highlighted {
            font-weight: 700;
        }
        
        .me-event-date {
            min-width: 100px;
        }
        
        .me-event-time {
            min-width: 80px;
        }
        
        .me-event-type {
            min-width: 120px;
        }
        
        .me-event-city,
        .me-event-venue {
            min-width: 100px;
        }
        
        /* Wiederholungs-Block */
        .me-event-recurring {
            min-width: 150px;
            font-style: italic;
        }
        
        .me-event-recurring i {
            margin-right: 4px;
            opacity: 0.7;
        }
        
        .me-event-ticket {
            margin-left: auto;
            align-self: center;
        }
        
        /* Programmart-Link Styling */
        .me-program-link {
            color: #3a3a3a;
            text-decoration: none;
            transition: color 0.2s ease;
            border-bottom: 1px dotted #999;
            display: inline-flex;
            align-items: center;
        }
        
        .me-program-link:hover {
            color: #000;
            border-bottom: 1px solid #666;
        }
        
        .me-program-link i {
            margin-left: 4px;
            font-size: 0.7em;
            opacity: 0.7;
        }
        
        .me-event-ticket a {
            display: inline-flex;
            align-items: center;
            background-color: #f5f5f5;
            color: #3a3a3a;
            text-decoration: none;
            padding: 10px 18px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        
        .me-event-ticket a:hover {
            background-color: #eeeeee;
        }
        
        .me-event-ticket i {
            margin-right: 8px;
        }
        
        /* Detailbeschreibung */
        .me-event-description-toggle {
            flex: 1 1 100%;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .me-toggle-details {
            background: none;
            border: none;
            color: #3a3a3a;
            cursor: pointer;
            font-size: 0.95em;
            padding: 5px 10px;
            display: inline-flex;
            align-items: center;
            transition: color 0.2s ease;
        }
        
        .me-toggle-details:hover {
            color: #000;
        }
        
        .me-toggle-details i {
            margin-right: 6px;
            transition: transform 0.2s ease;
        }
        
        .me-toggle-details.active i {
            transform: rotate(180deg);
        }
        
        .me-event-description {
            flex: 1 1 100%;
            margin-top: 10px;
        }
        
        .me-event-description-content {
            padding: 15px;
            background-color: #f9f9f9;
            border-radius: 5px;
            line-height: 1.6;
        }
        
        .me-event-description-content p {
            margin-bottom: 10px;
        }
        
        .me-event-description-content p:last-child {
            margin-bottom: 0;
        }
        
        .me-no-events {
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 5px;
            text-align: center;
            color: #666;
        }
        
        /* Vergangene Events (optional anders stylen) */
        .modern-events-archive .me-event-item {
            opacity: 0.85;
            background-color: #f9f9f9;
        }
        
        .modern-events-archive .me-event-item:hover {
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .me-event-item {
                flex-direction: column;
                padding: 15px;
            }
            
            .me-event-image {
                flex: 0 0 100%;
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .me-event-details {
                width: 100%;
            }
            
            .me-event-group {
                margin-right: 0;
                width: 100%;
            }
            
            .me-event-ticket {
                margin-left: 0;
                margin-top: 15px;
                width: 100%;
            }
            
            .me-event-ticket a {
                display: block;
                text-align: center;
            }
        }