.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

        
.event-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border-left: 4px solid #667eea;
}

        
.event-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

        
.event-card h3 {
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    font-size: 1rem;
}

        
.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

        
.event-venue {
    color: #667eea;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

        
.event-price {
    color: #27ae60;
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

        
.artist-tag {
    background: #e0e7ff;
    color: #4c51bf;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    display: inline-block;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

        
.artist-tag:hover {
    background: #667eea;
    color: white;
}

        

        
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

        
.venue-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    border: 1px solid #e0e0e0;
}

    
.venue-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #667eea;
}

        
.venue-card h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

        
.venue-card p {
    font-size: 0.8rem;
    color: #666;
}

        
        
.venue-events-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

        
.venue-events-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #667eea;
}

        
.venue-events-header h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
}

        
.venue-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

        
.small-event-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    border-left: 3px solid #667eea;
}

        
.small-event-card:hover {
    transform: translateX(3px);
}

        
.small-event-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

        
.small-event-date {
    font-size: 0.7rem;
    color: #666;
}

        
.no-events {
    text-align: center;
    padding: 2rem;
    color: #666;
    background: #f9f9f9;
    border-radius: 12px;
}

        
.loading {
    text-align: center;
    padding: 2rem;
    color: #666;
}

@media (max-width: 768px) {
            
    .events-grid {
        grid-template-columns: 1fr;
    }
}