.highlight-image {
    max-width: 53.125rem;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px var(--shadow-primary-strong)) brightness(1.2);
    transition: transform 0.3s ease;
}

.highlight-image:hover {
    transform: perspective(1000px) translateZ(20px);
}

@media (max-width: 768px) {
    .highlight-image {
        max-width: 95%;
        height: auto;
    }
}