/* Past Events Page Specific Styles */

/* Gallery Preview - properly sized */
.gallery-grid-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Events navigation */
.events-nav {
    text-align: center;
    padding: 1rem 0;
}

/* Past event badge styling */
.past-event-badge {
    background: #6b7280 !important;
}

/* Text center utility */
.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid-preview {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .gallery-item {
        aspect-ratio: 16/10;
    }
}

@media (max-width: 480px) {
    .gallery-grid-preview {
        max-width: 300px;
    }
}
