/* ── Newsletter subscription hint (templates/elements/newsletter/SubscribeHint) ─── */

.nl-hint {
    --nl-accent: var(--behnke-design, #2f6df6);

    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 24px 0;
    padding: 18px 20px;
    box-sizing: border-box;
    border: 1px solid var(--border, #e5e7eb);
    border-left: 4px solid var(--nl-accent);
    border-radius: 12px;
    background: color-mix(in srgb, var(--nl-accent) 5%, var(--surface, #fff));
    color: var(--text, #111827);
}

.nl-hint-ic {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--nl-accent) 14%, var(--surface, #fff));
    color: var(--nl-accent);
}

.nl-hint-ic svg {
    width: 22px;
    height: 22px;
}

.nl-hint-body {
    min-width: 0;
}

.nl-hint-eyebrow {
    margin: 0 0 2px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nl-accent);
}

.nl-hint-title {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.nl-hint-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text, #111827);
}

.nl-hint-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 9px 18px;
    border-radius: 8px;
    background: var(--nl-accent);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: filter 0.12s ease, box-shadow 0.12s ease;
}

.nl-hint-cta:hover {
    filter: brightness(93%);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--nl-accent) 30%, transparent);
}

.nl-hint-fineprint {
    margin: 10px 0 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--text-muted, #6b7280);
}

@media (max-width: 560px) {
    .nl-hint {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .nl-hint-cta {
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }
}

@media print {
    .nl-hint {
        break-inside: avoid;
        background: none;
        box-shadow: none;
    }

    .nl-hint-cta {
        background: none;
        color: #000;
        padding: 0;
        margin-top: 10px;
        font-weight: 700;
    }

    .nl-hint-cta[href]::after {
        content: " (" attr(href) ")";
        font-weight: 400;
        font-size: 0.9em;
        color: #555;
    }
}
