/* DOSIGNY · eigener Startseiten-Hinweis, außerhalb der gepinnten Leistungen. */
.home-3d-showcase {
    padding: clamp(24px, 4vw, 56px) 0;
    scroll-margin-top: 112px;
}

.home-3d-showcase__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 244px;
    align-items: center;
    gap: 32px;
    padding: 24px 24px 24px 40px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
    background: #6c47ff;
    color: #fff;
}

.home-3d-showcase__eyebrow {
    margin: 0 0 12px;
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .13em;
    line-height: 1.5;
    text-transform: uppercase;
}

.home-3d-showcase__title {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.625rem);
    font-weight: 600;
    letter-spacing: -.025em;
    line-height: 1.15;
    text-wrap: balance;
}

.home-3d-showcase__text {
    max-width: 56ch;
    margin: 0 0 22px;
    color: #fff;
    font-size: .9375rem;
    line-height: 1.65;
}

.home-3d-showcase__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 48px;
    padding: 12px 22px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #fff;
    color: #27134d;
    font-size: .9375rem;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}

.home-3d-showcase__link:hover {
    background: #27134d;
    color: #fff;
}

.home-3d-showcase__link:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 5px;
    background: #27134d;
    color: #fff;
}

.home-3d-showcase__link svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
}

.home-3d-showcase__visual {
    width: 100%;
    min-width: 0;
}

/* Das unveränderte OG-Bild wird nur per CSS auf das Baum-Motiv beschnitten. */
.home-3d-showcase__preview {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    background: #fce8e2;
}

.home-3d-showcase__image {
    position: absolute;
    inset: 0 0 0 auto;
    display: block;
    width: auto;
    max-width: none;
    height: 100%;
}

/* Die Reveal-Animation blendet den Link aus, entfernt ihn aber nicht aus
   dem Tastaturpfad. Bei Fokus werden alle animierten Inhalte sofort lesbar. */
.home-3d-showcase__link {
    visibility: visible !important;
}

.home-3d-showcase__panel:focus-within :is(
    [data-fx], .fx-unit, .home-3d-showcase__eyebrow,
    .home-3d-showcase__text, .home-3d-showcase__link
) {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
}

@media (max-width: 900px) {
    .home-3d-showcase__panel {
        grid-template-columns: minmax(0, 1fr) 208px;
        gap: 24px;
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .home-3d-showcase__panel {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        padding: 24px;
        border-radius: 20px;
    }

    .home-3d-showcase__visual {
        width: min(100%, 244px);
        justify-self: center;
    }

    .home-3d-showcase__link {
        width: 100%;
        gap: 10px;
        padding-inline: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-3d-showcase [data-fx],
    .home-3d-showcase .fx-unit,
    .home-3d-showcase__eyebrow,
    .home-3d-showcase__text,
    .home-3d-showcase__link {
        -webkit-clip-path: none !important;
        clip-path: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .home-3d-showcase__link {
        transition: none;
    }
}
