/* Layout: Uitgelichte data (Child Theme) */

#theme-child-highlighted-data {
    @apply relative;
}

#theme-child-highlighted-data .highlighted-data-item {
    @apply bg-white border border-blue-dark/[0.08] overflow-hidden flex flex-col h-full transition-all duration-300 ease-out;
    box-shadow: 0 20px 40px rgba(18, 17, 41, 0.08);
}

#theme-child-highlighted-data .highlighted-data-item:hover {
    @apply -translate-y-1.5;
    box-shadow: 0 32px 48px rgba(18, 17, 41, 0.12);
}

#theme-child-highlighted-data .data-image-wrapper {
    @apply relative overflow-hidden;
}

#theme-child-highlighted-data .data-image-wrapper img {
    @apply w-full h-full object-cover transition-transform duration-300 ease-out;
}

#theme-child-highlighted-data .highlighted-data-item:hover .data-image-wrapper img {
    @apply scale-[1.03];
}

#theme-child-highlighted-data .data-content-wrapper {
    @apply p-6 md:p-8 flex flex-col flex-grow;
}

#theme-child-highlighted-data .data-link-wrapper a {
    @apply font-semibold items-center gap-2;
}

#theme-child-highlighted-data .data-link-wrapper svg {
    @apply transition-transform duration-200 ease-out;
}

#theme-child-highlighted-data .data-link-wrapper a:hover svg {
    @apply translate-x-0.5;
}
