/* Filial Gallery */
.images-gallery {
    margin-bottom: 30px;
}

.images-gallery .image {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
    cursor: pointer;
}

.images-gallery .image a {
    display: block;
    width: 100%;
    height: 100%;
}

.images-gallery .image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.images-gallery .image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.images-gallery .image::after {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #fff;
    font-size: 24px;
    z-index: 2;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.images-gallery .image:hover::before {
    opacity: 1;
}

.images-gallery .image:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.images-gallery .image:hover img {
    transform: scale(1.05);
} 