.10web-year-filter-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.year-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.year-filters button {
    padding: 10px 20px;
    border: 2px solid #0073aa;
    background: white;
    color: #0073aa;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.year-filters button.active,
.year-filters button:hover {
    background: #0073aa;
    color: white;
}

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

.gallery-group-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-group-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-group-item h3 {
    padding: 15px 15px 5px;
    margin: 0;
    font-size: 1.1em;
}

.gallery-year {
    display: block;
    padding: 0 15px 15px;
    color: #666;
    font-size: 0.9em;
}
.no-image {
    height: 220px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
}