.gallery-page {
    background: #000;
    padding: 40px 40px 80px;
    color: var(--color-white);
}

.gallery-page h1 {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-page .intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

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

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    transition: transform 0.2s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
