.gallery-section {
    padding: 4rem 1rem;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-title {
    font-size: 2.5rem;
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 0.5rem;
}

.gallery-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

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

.gallery-empty {
    text-align: center;
    font-size: 1.1rem;
    color: #999;
    grid-column: 1 / -1;
    padding: 3rem 0;
}
