.faq-module {
    --bg: #f3ccd9;
    --card-bg: var(--secondary-bg);
    --text: #111;
    --muted: #333;
    --icon-bg: #000;
    --radius: 18px;
    --gap: clamp(16px, 3vw, 32px);
    --maxw: 1200px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    display: grid;
    place-items: center;
    padding: clamp(16px, 4vw, 48px) 16px;
    background: #fff;
}

.faq-module .container {
    width: 100%;
    max-width: var(--maxw);
}

.faq-module h1 {
    font-size: clamp(28px, 6vw, 72px);
    line-height: 1.05;
    margin: 0 0 clamp(24px, 4vw, 48px);
    letter-spacing: .5px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap);
}

@media(min-width:760px) {
    .faq-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card */
.faq-card {
    position: relative;
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: clamp(20px, 3.2vw, 36px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
    min-height: 280px;
    overflow: visible;
    height: 450px;
    /* wichtig: Icon nicht abschneiden */
}

/* Icon zentriert und leicht über dem Rand */
.faq-icon {
    box-sizing: initial;
    position: absolute;
    font-size: 54px;
    color: white;
    background-color: #000;
    border-radius: 10px;
    padding: 32px;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(84px, 10vw, 128px);
    height: auto;
}

.faq-card h3 {
    margin: clamp(48px, 8vw, 72px) 0 12px;
    font-size: clamp(18px, 2.1vw, 24px);
    line-height: 1.25;
    letter-spacing: .2px;
    font-weight: 800;
    text-transform: uppercase;
}

.faq-card p {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.5;
    color: var(--muted);
}

.faq-list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--muted);
}

.faq-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
}

.faq-check {
    width: 22px;
    height: 22px;
    flex: none;
}

.faq-card:focus-within {
    outline: 3px solid #000;
    outline-offset: 2px;
}

.last-card {
    margin-bottom: 25px;
}

#faq-h {
    margin-bottom: 50px;
}

@media (max-width: 600px) {
    .faq-module {
        padding: 12px 12px;
    }

    .faq-card {
        padding: 16px;
        min-height: auto;
        border-radius: 14px;
        margin-top: 20px;
        height: auto;
    }

    .faq-icon {
        font-size: 32px;
        padding: 10px;
        top: -20px;
        width: clamp(64px, 18vw, 96px);
    }

    .faq-card h3 {
        margin: clamp(36px, 8vw, 56px) 0 8px;
        font-size: clamp(16px, 3.2vw, 20px);
    }

    .faq-card p,
    .faq-list,
    .faq-list li {
        font-size: clamp(14px, 3.2vw, 18px);
    }

    .faq-list {
        gap: 8px;
    }

    .faq-check {
        width: 18px;
        height: 18px;
    }

    #faq-h {
        margin-bottom: 20px;
    }
}