/* Nyhetsbrevsformulär, två varianter: ljus (sidfot) och mörk (startsidan) */

.ve-nl {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.ve-nl__label {
    font-family: Lato, sans-serif;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 300;
    color: #C2604A;
    margin-bottom: 8px;
}

.ve-nl__rubrik {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.ve-nl__text {
    font-family: Lato, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 24px;
}

.ve-nl__form {
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
}

.ve-nl__input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    font-family: Lato, sans-serif;
    font-size: 15px;
    font-weight: 300;
    outline: none;
    border-radius: 0;
    transition: border-color .18s ease;
}

.ve-nl__knapp {
    padding: 14px 28px;
    background: #C2604A;
    color: #fff;
    border: none;
    font-family: Lato, sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
    transition: background .18s ease;
}

.ve-nl__knapp:hover { background: #A94F3B; }
.ve-nl__knapp[disabled] { opacity: .6; cursor: default; }

.ve-nl__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

.ve-nl__svar {
    display: none;
    font-family: Lato, sans-serif;
    font-size: 13px;
    font-weight: 300;
    margin: 14px 0 0;
}

.ve-nl__finstilt {
    font-family: Lato, sans-serif;
    font-size: 11px;
    font-weight: 300;
    margin-top: 16px;
}

/* Mörk variant, startsidans sektion */
.ve-nl--mork .ve-nl__rubrik { color: #FFFFFF; }
.ve-nl--mork .ve-nl__text { color: rgba(255, 255, 255, .72); }
.ve-nl--mork .ve-nl__finstilt { color: rgba(255, 255, 255, .45); }
.ve-nl--mork .ve-nl__input {
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
}
.ve-nl--mork .ve-nl__input::placeholder { color: rgba(255, 255, 255, .6); opacity: 1; }
.ve-nl--mork .ve-nl__input:focus { border-color: #C2604A; }

/* Ljus variant, sidfoten */
.ve-nl--ljus .ve-nl__rubrik { color: #1C1C28; }
.ve-nl--ljus .ve-nl__text { color: #5A5A63; }
.ve-nl--ljus .ve-nl__finstilt { color: #8A8A93; }
.ve-nl--ljus .ve-nl__input {
    background: #FFFFFF;
    border: 1px solid rgba(28, 28, 40, .18);
    color: #1C1C28;
}
.ve-nl--ljus .ve-nl__input::placeholder { color: #8A8A93; opacity: 1; }
.ve-nl--ljus .ve-nl__input:focus { border-color: #C2604A; }

/* Sidfotsplaceringen får luft och en avskiljare uppåt */
.ve-nl--sidfot {
    padding: 8px 0 32px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    margin-bottom: 8px;
}

@media (max-width: 560px) {
    .ve-nl__form { flex-direction: column; gap: 10px; }
    .ve-nl__knapp { padding: 14px 20px; }
    .ve-nl__rubrik { font-size: 24px; }
}
