.image-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.image-link img {
    display: block;
    width: 100%;
    height: auto;
}

.image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.link-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.7);
    transition: transform 0.25s ease;
}

.link-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #000;
    stroke-width: 2.2;
    stroke-linecap: round;
}

.image-link:hover .image-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.65);
}

.image-link:hover .link-icon {
    transform: scale(1);
}