:root {
    --primary-color: #2B6FB8;
    --text-color: #1b242b;
    --text-muted-color: #4b6e8e;
    --hover-color: #6483a1;
    --grey-color: #e8e8ed;
    --cta-color: #3FF0D3;
    --main-shadow-color: rgba(20, 20, 43, 0.06);
    --section-background: #fbfbfc;

    --main-font-family: 'Inter', Helvetica Neue, Helvetica, Arial;
    --second-font-family: 'Montserrat', Helvetica Neue, Helvetica, Arial;

    --main-font-size: 18px;
    --main-line-height: 32px;
    --main-font-weight: 300;
}

body {
    font-family: var(--main-font-family), sans-serif;
    color: var(--text-color);
    font-size: var(--main-font-size);
    line-height: var(--main-line-height);
    font-weight: var(--main-font-weight);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

a:hover {
    color: var(--hover-color);
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: var(--primary-color) !important;
}

h1, h2, h3, h4, h5 {
    font-family: var(--main-font-family), sans-serif;
    color: var(--text-color);
}

h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.192em;
    margin: 0 0 30px;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 46px;
    margin: 60px 0 30px;
}

h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    margin: 50px 0 10px;
}

b, strong {
    font-weight: bold;
}

.my-120 {
    margin-top: 120px;
    margin-bottom: 120px;
}

.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.btn-primary {
    --bs-btn-color: var(--grey-color);
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: var(--grey-color);
    --bs-btn-hover-bg: var(--hover-color);
    --bs-btn-hover-border-color: var(--hover-color);
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: var(--text-color);
    --bs-btn-active-bg: var(--hover-color);
    --bs-btn-active-border-color: var(--hover-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    --bs-btn-disabled-color: var(--text-color);
    --bs-btn-disabled-bg: var(--hover-color);
    --bs-btn-disabled-border-color: var(--hover-color);
}

#moove_gdpr_cookie_info_bar {
    max-height: inherit !important;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
    background-color: rgba(0, 0, 0, 0.5) !important;
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background-color: #000 !important;
    border-radius: 10px;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
    max-width: 400px;
    display: block !important;
    padding-left: 0 !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder {
    padding-left: inherit !important;
    margin-top: 20px;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p, #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p a {
    line-height: 22px !important;
}

.gdpr_lightbox {
    z-index: 10000 !important;}

.custom-logo-link img {
    max-width: 180px;
    height: auto;
}

.attachment-hero {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.text-muted {
    font-size: 16px;
    color: var(--text-muted-color) !important;
    line-height: 30px;
}

.top-bar {
    padding: 15px 0;
}

.search-form {
    flex: 1;
    max-width: 420px;
    margin-bottom: 0;
    margin-left: 24px;
    margin-right: 24px;
    position: relative;
    }

.search-field {
    border: 1px solid #edeff3;
    background-color: #fff;
    box-shadow: 0 2px 7px 0 #14142b0f;
    color: #1e2229;
    border-radius: 100px;
    line-height: 1.125em;
    transition: box-shadow .3s, color .3s, border-color .3s, background-color .3s;
    min-height: 46px;
    margin-bottom: 0;
    padding: 8px 30px;
    font-size: 16px;
    outline: none;
}

.search-field::placeholder {
    color: #8a8fa3;
    opacity: 1;
}

.search-field:hover {
    border-color: #d9dbe9;
    box-shadow: 0 4px 12px 0 #14142b14;
}

.search-field:focus {
    border-color: var(--hover-color);
    box-shadow: 0 0 0 4px rgba(29, 31, 41, 0.15);
}

.search-field:focus-visible {
    border-color: var(--hover-color);
    box-shadow: 0 0 0 4px rgba(29, 31, 41, 0.15);
}

.search-field:disabled {
    background-color: #f7f8fc;
    border-color: #edeff3;
    color: #9fa4b8;
    cursor: not-allowed;
    box-shadow: none;
}

.search-field:invalid {
    border-color: #ff5c5c;
}

.search-field:-webkit-autofill {
    box-shadow: 0 0 0 1000px #fff inset, 0 2px 7px 0 #14142b0f;
    -webkit-text-fill-color: #1e2229;
}

.search-submit {
    padding: 0;
    font-family: Line Rounded Icons, sans-serif;
    font-size: 18px;
    line-height: 1em;
    transition: color .3s, transform .3s;
    position: absolute;
    top: 14px;
    bottom: 14px;
    right: 24px;
}

.front-newest-grid {
    overflow: hidden;
}

.image-wrapper {
    overflow: hidden;
}

a.front-newest-grid,
a.front-feat {
    color: var(--text-color);
}

a.front-newest-grid:hover h2 {
    color: var(--hover-color);
    transition: all 0.4s ease-in-out;
}

a.front-feat:hover h3 {
    color: var(--hover-color);
    transition: all 0.4s ease-in-out;
}

.front-newest-grid img {
    will-change: transform;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.front-newest-grid:hover img {
    transform: scale(1.08);
}

.front-feat h2,
.front-feat h3 {
    margin-top: 0;
}

.front-feat h2 a,
.front-feat h3 a {
    color: var(--text-color);
}

.thumb-zoom {
    display: block;
    overflow: hidden;
}

.thumb-zoom img {
    transition: transform 0.4s ease;
    will-change: transform;
}

.front-feat:hover .thumb-zoom img {
    transform: scale(1.08);
}

.front-categories {
    margin: 3rem 0;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e2229;
}

.category-section {
    padding-bottom: 180px;
    overflow: hidden;
    background-color: var(--section-background);
}

.category-card {
    display: block;
    height: 100%;
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #edeff3;
    box-shadow: 0 2px 7px 0 #14142b0f;
    color: inherit;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.category-card img {
    border-top-radius: 20px;
}

.category-card-inner {
    padding: 0 24px 24px 24px;
}

.category-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #1e2229;
}

.category-desc {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: #d9dbe9;
    box-shadow: 0 10px 25px 0 #14142b1a;
}

.category-card:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(95,124,255,.25);
}

blockquote {
    position: relative;
    margin: 2.5em 0;
    padding: 1.8em 2em 1.8em 4.5em;
    background-color: var(--grey-color);
    border-radius: 6px;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
}

blockquote::before {
    content: "“";
    position: absolute;
    left: 0.5em;
    top: 0.4em;
    font-size: 4rem;
    line-height: 1;
    color: #bbb;
    font-family: Georgia, "Times New Roman", serif;
}

blockquote p {
    margin: 0;
}

blockquote cite {
    display: block;
    margin-top: 1em;
    font-size: 0.9em;
    font-style: normal;
    color: #666;
}

.wp-block-list {
    list-style: none;
    padding-left: 0;
    margin: 1em 0 2em 0;
}

.wp-block-list li {
    position: relative;
    padding: 0.3em 1em 0.3em 2.8em;
    margin-bottom: 0.3em;
    background: var(--grey-color);
    border-radius: 6px;
    line-height: 1.6;
    color: var(--text-color);
}

.wp-block-list li::before {
    content: "\F135";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 1em;
    top: 0.2em;
    font-size: 1.1em;
    color: #6c757d;
}

.content-area,
.front-content {
    margin: 180px 0 90px 0
}

.left-col{
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #f2f4f7;
    min-height: 420px;
}

.left-col > img{
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    filter: saturate(1.02);
    transition: transform 0.6s ease;
}

.left-col:hover > img{
    transform: scale(1.08);
}

.left-col-inner{
    position: absolute;
    left: 32px;
    bottom: 32px;
    max-width: 560px;
    width: calc(100% - 64px);

    background: rgba(255,255,255,0.8);
    border-radius: 14px;
    padding: 28px 30px;

    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.12);
    border: 1px solid rgba(16, 24, 40, 0.06);
}

.left-col-inner h2{
    margin: 0 0 14px 0;
    font-size: clamp(22px, 2.1vw, 34px);
    line-height: 1.15;
    font-weight: 800;
    color: #101828;
    letter-spacing: -0.02em;
}

.left-col-inner p{
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: #475467;
}

@media (max-width: 991px){
    .left-col{ min-height: 360px; }
    .left-col > img{ min-height: 360px; }
    .left-col-inner{
        left: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
        padding: 20px 20px;
    }
}

/* Rechte Spalte / Card */
.right-col .nl-card {
    background: #101828;                 /* dunkles UI wie im Screenshot */
    border-radius: 22px;
    padding: 34px 34px 28px;
    color: #fff;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.22);
}

/* Headline & Text */
.right-col .nl-card h3 {
    margin: 0 0 10px 0;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

.right-col .nl-card p {
    margin: 0 0 18px 0;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.6;
}

/* Input pill */
.right-col .nl-input{
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 10px;

    background: #ffffff;
    border-radius: 999px;
    padding: 10px 12px 10px 8px;
    border: 1px solid rgba(16,24,40,0.08);
}

.right-col .nl-icon{
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #667085;
}

.right-col .nl-input input{
    border: 0;
    outline: 0;
    width: 100%;
    font-size: 15px;
    color: #101828;
}

.right-col .nl-input input::placeholder{
    color: #98A2B3;
}

.right-col .nl-input button,
.button-class {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 14px;

    background: #101828;
    color: #fff;
    transition: transform .15s ease, opacity .15s ease;
}

.right-col .nl-input button:hover{
    transform: translateY(-1px);
    opacity: 0.95;
}

/* Consent */
.right-col .nl-consent{
    margin-top: 14px;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;

    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 1.45;
}

.right-col .nl-consent input{
    margin-top: 2px;
    accent-color: #2563eb; /* dezenter Blue Check */
}

/* Proof line */
.right-col .nl-proof{
    margin-top: 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 20px;
    color: rgba(255,255,255,0.80);
    font-size: 14px;
}

.right-col .nl-check{
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #2563eb;
    display: grid;
    place-items: center;
    font-weight: 900;
    line-height: 11px;
}

.front-feat-inner h2 {
    font-size: 23px;
    font-weight: 700;
    line-height: 30px;
    margin: 5px 0 15px;
}

.front-feat h3 {
    line-height: 30px;
}

/* Responsive */
@media (max-width: 991px){
    .right-col .nl-card{ padding: 26px; }
    .right-col .nl-input{
        grid-template-columns: 44px 1fr;
        grid-auto-rows: auto;
        border-radius: 18px;
        padding: 10px;
    }
    .right-col .nl-input button{
        grid-column: 1 / -1;
        width: 100%;
        padding: 12px 16px;
    }
}


@media (max-width: 768px){
    .hero{
        align-items: flex-end;
    }

    .hero__inner{
        padding-bottom: 2.5rem;
    }

    .hero__content{
        padding: 1.6rem;
    }
}

/* Lists */
.osmoso-card ul {
    margin: 0;
    padding-left: 1.1rem;
}

.osmoso-card li {
    margin: 0.35rem 0;
    line-height: 1.6;
}

.card:first-child {
    background: linear-gradient(180deg, rgba(240, 255, 246, 0.95), rgba(255, 255, 255, 0.98));
}
.card:last-child {
    background: linear-gradient(180deg, rgba(255, 246, 240, 0.95), rgba(255, 255, 255, 0.98));
}

.footer-outer {
    background-color: #1e2229;
    padding: 60px 0;
    color: var(--grey-color);
}

.footer-outer a {
    color: var(--grey-color);
}

.copyright {
    background-color: #505972;
    color: var(--grey-color);
}

#grid-content {
    padding-top: 80px;
}


#grid-content .bi {
    font-size: 60px;
    padding-right: 40px;
}

footer {
    font-size: 14px;
}

.wpcf7-form .form-check-label,
.newsletter-label p {
    font-size: 14px !important;
    line-height: 17px !important;
    margin-left: 20px;
}

.wpcf7-form .wpcf7-list-item {
    display: inline-block;
    margin: 0;
    float: left;
}

h3.wp-block-heading {
    margin-top: 0;
}

.wpcf7-submit {
    background-color: #fff;
    color: var(--text-color);
    padding: 5px 15px;
    border: none;
    border-radius: 20px;
}

.wpcf7-submit:disabled,
.wpcf7-submit[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 575px){

    body {
        font-size: 17px;
        line-height: 28px;
    }

    .content-area, .front-content {
        margin: 220px 0 90px 0;
    }

    h1 {
        font-size: 26px;
        line-height: 1.2em;
    }

    h2 {
        font-size: 20px;
        line-height: 25px;
        margin: 50px 0 15px;
    }

    h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .navbar-toggler {
        padding-left: 0 !important;
    }

    .left-col {
        margin-bottom: 40px;
        border-radius: 0;
    }

    .left-col-inner p {
        font-size: 14px;
    }

    .header-logo {
        margin-bottom: 20px;
    }

    .py-120 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .category-section {
        padding-bottom: 0;
    }
}

.copy-hinweis {
    font-size: 14px;
}

.short-desc {
    line-height: 22px;
}