
    .event-card {
        display: flex !important;
        flex-direction: row !important;
        margin-bottom: 30px !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }
    
    .event-date {
        min-width: 80px !important;
        padding: 15px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        border-right: 1px solid #eee !important;
    }
    
    .event-date-weekday {
        font-size: 14px !important;
        color: #666 !important;
        text-transform: uppercase !important;
    }
    
    .event-date-day {
        font-size: 24px !important;
        font-weight: bold !important;
        color: #333 !important;
    }
    
    .event-content {
        display: flex !important;
        flex: 1 !important;
        padding: 15px !important;
    }
    
    .event-image {
        width: 200px !important;
        min-width: 200px !important;
        height: 150px !important;
        object-fit: cover !important;
        border-radius: 6px !important;
        margin-right: 20px !important;
    }
    
    .event-details {
        flex: 1 !important;
    }
    
    .event-time {
        color: #666 !important;
        font-size: 14px !important;
        margin-bottom: 5px !important;
    }
    
    .event-title {
        font-size: 24px !important;
        margin-bottom: 10px !important;
        color: #2c3e50 !important;
    }
    
    .event-description {
        color: #555 !important;
        font-size: 16px !important;
        line-height: 1.5 !important;
    }
    
    @media (max-width: 768px) {
        .event-content {
            flex-direction: column !important;
        }
        
        .event-image {
            width: 100% !important;
            height: 180px !important;
            margin-right: 0 !important;
            margin-bottom: 15px !important;
        }
    }
