.architects-hover-preview {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9998;
    max-width: min(320px, 40vw);
    max-height: 28vh;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.15s ease-out, transform 0.15s ease-out;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: #fffeee;
}

.architects-hover-preview.is-visible {
    opacity: 1;
    transform: scale(1);
}

.architects-hover-preview img {
    display: block;
    max-width: min(320px, 40vw);
    max-height: 28vh;
    width: auto;
    height: auto;
}

@media (hover: none), screen and (max-width: 992px) {
    .architects-hover-preview {
        display: none;
    }
}
