/* Gallery Page Specific Styles */

/* Gallery Layout */
.gallery {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Gallery Images */
.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #eee;
}

/* Gallery Titles */
.gallery-title {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 1.3;
}

.gallery-number {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin-right: 10px;
}

/* Gallery Responsive */
@media (max-width: 600px) {
    .gallery {
        gap: 40px;
    }

    .gallery-title {
        font-size: 16px;
    }
}
