.gallery-simple-section {
    background: #e5e5e5;
    padding: 20px 0 20px 0;
}
.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 32px;
    color: #222;
    letter-spacing: 1px;
}
.gallery-simple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.gallery-simple-item {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}
.gallery-simple-item img, .gallery-simple-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-tabs {
    text-align: center;
    margin-bottom: 24px;
}
.gallery-tab-btn {
    background: #fff;
    border: 1px solid #bbb;
    color: #222;
    padding: 8px 32px;
    margin: 0 8px;
    border-radius: 30px 30px 0 0;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.gallery-tab-btn.active {
    background: #222;
    color: #fff;
    border-bottom: 2px solid #e5e5e5;
}
@media (max-width: 900px) {
    .gallery-simple-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .gallery-simple-grid {
        grid-template-columns: 1fr;
    }
    .gallery-title {
        font-size: 2rem;
    }
} 