.image-hover-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 950px;
    aspect-ratio: 1.599;
    cursor: pointer;
    overflow: hidden;
    background-color: #f0f0f0;
}

.photo-base {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-base img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.image-hover-container:hover .photo-base {
    opacity: 0.25;
}

.illustration-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    clip-path: circle(0% at 50% 50%);
}

.illustration-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Loading state */
.image-hover-container img {
    transition: opacity 0.3s ease;
}

.image-hover-container img:not([src]) {
    opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-hover-container {
        max-width: 100%;
        cursor: default;
    }
}

@media (max-width: 480px) {
    .image-hover-container {
        max-width: 100%;
        cursor: default;
    }
}