/* === Gallery Page === */
/* Extracted from gallery.html <style> block — now with full dark-mode support */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-copy {
    padding: 18px;
}

.gallery-date {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.gallery-title {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.gallery-description {
    margin: 0;
    color: var(--muted-text-color);
}
