/*
 * Feature-Detailseiten /funktionen/*
 */

body.feature-page .feat-blocks {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 4vw, 48px);
}

body.feature-page .feat-plays {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.feature-page .feat-plays__link {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle, rgba(0,0,0,.1));
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    background: var(--bg-elevated, #fff);
}

body.feature-page .feat-plays__link:hover,
body.feature-page .feat-plays__link:focus-visible {
    border-color: var(--accent, #c2410c);
    color: var(--accent, #c2410c);
}

body.feature-page .home-tour-block {
    display: grid;
    gap: 24px;
    align-items: center;
}

@media (min-width: 860px) {
    body.feature-page .home-tour-block {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 36px;
    }
    body.feature-page .home-tour-block--flip .home-tour-block__visual {
        order: 2;
    }
}

body.feature-page .home-tour-block__visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

body.feature-page .home-tour-block__copy h2 {
    margin: 0 0 10px;
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}

body.feature-page .home-tour-block__copy p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.55;
}
