/* Стили для галереи */
.gallery-section {
    margin-top: 60px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.gallery-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(1, 105, 141, 0.05);
    border: 1px solid #eef1f6;
    transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(1, 105, 141, 0.1);
}
.gallery-item__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.gallery-item__img-wrap {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}
.gallery-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-item__img {
    transform: scale(1.05);
}
.gallery-item__caption {
    padding: 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-dark);
    text-align: center;
    line-height: 1.4;
}
