/*
 * FormigaCrew Site Design
 *
 * Brand Navy:      #0B0C1B
 * Primary Blue:    #0067B9
 * Hover Blue:      #0088E8
 * Surface:         #FFFFFF
 * Background:      #F5F7FA
 * Text:            #17212B
 * Muted:           #66717E
 * Border:          #DCE3EA
 * Accent Cyan:     #4FD5FF
 */


/* =========================================================
   CONTACT ACTIONS
   ========================================================= */

.fc-contact-actions {
    position: fixed;
    left: 28px;
    bottom: 28px;
    z-index: 99990;

    display: flex;
    align-items: center;
    gap: 10px;

    font-family: Roboto, Arial, sans-serif;
}

.fc-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 48px;
    padding: 12px 18px;

    border: 1px solid #0067B9;
    border-radius: 8px;

    background: #0067B9;
    color: #FFFFFF !important;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;

    text-decoration: none !important;
    white-space: nowrap;

    box-shadow:
        0 8px 24px rgba(11, 12, 27, 0.18);

    transition:
        transform 160ms ease,
        background 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.fc-action-button-secondary {
    background: #0B0C1B;
    border-color: #0B0C1B;
}

.fc-action-button:hover {
    background: #0088E8;
    border-color: #0088E8;
    color: #FFFFFF !important;

    transform: translateY(-2px);

    box-shadow:
        0 10px 28px rgba(0, 103, 185, 0.25);
}

.fc-action-button-secondary:hover {
    background: #17212B;
    border-color: #17212B;
}

.fc-action-button:focus-visible {
    outline: 3px solid #4FD5FF;
    outline-offset: 3px;
}

.fc-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    line-height: 1;
}


/* =========================================================
   BLOG PAGE
   Page ID 1236
   ========================================================= */

.page-id-1236 {
    background: #F5F7FA;
}


/*
 * Blog-Bereich grundsätzlich ruhig halten.
 */

.page-id-1236 .elementor {
    color: #17212B;
}


/*
 * ElementsKit Posts:
 * einheitliche Karten statt Plugin-Default-Look.
 */

.page-id-1236 .elementskit-post-image-card,
.page-id-1236 .elementskit-post-card,
.page-id-1236 .elementskit-blog-block-post {
    height: 100%;

    overflow: hidden;

    background: #FFFFFF !important;

    border: 1px solid #DCE3EA !important;
    border-radius: 12px !important;

    box-shadow:
        0 4px 16px rgba(11, 12, 27, 0.06) !important;

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}


.page-id-1236 .elementskit-post-image-card:hover,
.page-id-1236 .elementskit-post-card:hover,
.page-id-1236 .elementskit-blog-block-post:hover {
    transform: translateY(-3px);

    border-color: #B8C7D5 !important;

    box-shadow:
        0 10px 30px rgba(11, 12, 27, 0.10) !important;
}


/*
 * Beitragsbild:
 * konsistentes Seitenverhältnis.
 */

.page-id-1236 .elementskit-entry-header,
.page-id-1236 .elementskit-post-image-card
.elementskit-entry-header {
    overflow: hidden;
}

.page-id-1236 .elementskit-entry-header img {
    display: block;

    width: 100% !important;
    aspect-ratio: 16 / 9;

    object-fit: cover;

    transition: transform 250ms ease;
}

.page-id-1236
.elementskit-post-image-card:hover
.elementskit-entry-header img {
    transform: scale(1.025);
}


/*
 * Inhalt der Karte.
 */

.page-id-1236 .elementskit-post-body {
    padding: 22px 22px 20px !important;
}


/*
 * Meta-Angaben.
 */

.page-id-1236 .post-meta-list,
.page-id-1236 .post-meta-list a,
.page-id-1236 .post-meta-list span {
    color: #66717E !important;

    font-size: 12px !important;
    line-height: 1.5;
}


/*
 * Überschrift.
 */

.page-id-1236 .entry-title,
.page-id-1236 .entry-title a {
    color: #17212B !important;

    font-family: Roboto, Arial, sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;

    text-decoration: none !important;
}

.page-id-1236 .entry-title a:hover {
    color: #0067B9 !important;
}


/*
 * Beschreibung.
 */

.page-id-1236 .elementskit-post-body > p {
    color: #66717E !important;

    font-size: 14px !important;
    line-height: 1.65 !important;
}


/*
 * "Learn more" Button wird optisch zu einem Text-Link.
 * Den tatsächlichen Text ändern wir im nächsten Schritt
 * sauber in den Elementor-Daten.
 */

.page-id-1236 .elementskit-btn {
    display: inline-flex !important;
    align-items: center;

    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;

    color: #0067B9 !important;

    font-size: 14px !important;
    font-weight: 600 !important;

    box-shadow: none !important;

    text-decoration: none !important;
}

.page-id-1236 .elementskit-btn:hover {
    background: transparent !important;
    color: #0088E8 !important;
}


/*
 * Verhindert bunte Plugin-Defaults auf Blogkarten.
 */

.page-id-1236 .ekit-wid-con a {
    transition:
        color 160ms ease,
        background 160ms ease,
        border-color 160ms ease;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .fc-contact-actions {
        left: 14px;
        right: 14px;
        bottom: 14px;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .fc-action-button {
        min-height: 44px;

        padding: 10px 12px;

        font-size: 13px;
    }

    .fc-action-icon {
        font-size: 16px;
    }

    .page-id-1236 .elementskit-post-body {
        padding: 18px !important;
    }

    .page-id-1236 .entry-title,
    .page-id-1236 .entry-title a {
        font-size: 18px !important;
    }
}


/* =========================================================
   FC HEADER V2 BEGIN
   Compact FormigaCrew Header
   Template: ElementsKit Header 22
   ========================================================= */


/*
 * Header als kompakte horizontale Navigation.
 *
 * Die alten Elementor-Container werden nur im öffentlichen
 * Header visuell "aufgelöst". Die Inhalte selbst bleiben
 * vollständig in Elementor erhalten.
 */

body:not(.elementor-editor-active) .elementor-22 {
    box-sizing: border-box;

    width: 100%;

    display: flex !important;
    align-items: center !important;

    gap: 18px;

    min-height: 78px;

    padding-top: 11px !important;
    padding-bottom: 11px !important;

    padding-left:
        max(24px, calc((100vw - 1240px) / 2)) !important;

    padding-right:
        max(24px, calc((100vw - 1240px) / 2)) !important;

    background: #0B0C1B !important;

    border-bottom:
        1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 4px 18px rgba(0,0,0,0.12);
}


/*
 * Die alten verschachtelten Layoutcontainer erzeugen aktuell
 * die große vertikale Leere. Im Frontend werden sie deshalb
 * layoutseitig transparent.
 */

body:not(.elementor-editor-active)
.elementor-22 .e-con {
    display: contents !important;

    min-height: 0 !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
}


/*
 * Elementor Widgets nicht auf volle Breite ziehen.
 */

body:not(.elementor-editor-active)
.elementor-22 .elementor-widget {
    width: auto !important;
    max-width: none !important;

    margin: 0 !important;
}


/* ---------------------------------------------------------
   LOGO
   --------------------------------------------------------- */

body:not(.elementor-editor-active)
.elementor-22 .elementor-widget-image {
    flex: 0 0 auto;
}

body:not(.elementor-editor-active)
.elementor-22 .elementor-widget-image img {
    display: block;

    width: 54px !important;
    height: 54px !important;

    object-fit: contain;

    margin: 0 !important;
}


/* ---------------------------------------------------------
   WORDMARK
   --------------------------------------------------------- */

body:not(.elementor-editor-active)
.elementor-22 .elementor-widget-heading {
    flex: 0 0 auto;

    margin-right: auto !important;
}

body:not(.elementor-editor-active)
.elementor-22 .elementor-heading-title {
    margin: 0 !important;

    color: #4FD5FF !important;

    font-family:
        Inter,
        Roboto,
        Arial,
        sans-serif !important;

    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    letter-spacing: -0.02em;
}


/* ---------------------------------------------------------
   NAVIGATION BUTTONS -> NAV LINKS
   --------------------------------------------------------- */

body:not(.elementor-editor-active)
.elementor-22 .elementor-widget-elementskit-button {
    flex: 0 0 auto;
}

body:not(.elementor-editor-active)
.elementor-22
.elementor-widget-elementskit-button
.elementskit-btn {
    min-height: 40px !important;

    padding: 9px 12px !important;

    background: transparent !important;
    background-image: none !important;

    border: 1px solid transparent !important;
    border-radius: 7px !important;

    color: #B9C7D6 !important;

    font-family:
        Inter,
        Roboto,
        Arial,
        sans-serif !important;

    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;

    text-decoration: none !important;

    box-shadow: none !important;

    transition:
        color 160ms ease,
        background 160ms ease,
        border-color 160ms ease,
        transform 160ms ease;
}

body:not(.elementor-editor-active)
.elementor-22
.elementor-widget-elementskit-button
.elementskit-btn:hover {
    color: #FFFFFF !important;

    background:
        rgba(255,255,255,0.06) !important;

    border-color:
        rgba(255,255,255,0.08) !important;

    transform: translateY(-1px);
}


/*
 * Partner, Blog und Gründer sind normale Navigation.
 */

body:not(.elementor-editor-active)
.elementor-22
a.elementskit-btn[href*="partner"],

body:not(.elementor-editor-active)
.elementor-22
a.elementskit-btn[href*="blog"],

body:not(.elementor-editor-active)
.elementor-22
a.elementskit-btn[href*="markus"] {
    color: #B9C7D6 !important;

    background: transparent !important;
    border-color: transparent !important;
}


/*
 * Andere Hauptaktion = Kontakt.
 *
 * So bleibt Kontakt der einzige echte CTA, ohne dass wir
 * seinen konkreten bisherigen Link verändern müssen.
 */

body:not(.elementor-editor-active)
.elementor-22
a.elementskit-btn:not([href*="partner"])
:not([href*="blog"])
:not([href*="markus"]) {
    padding-left: 16px !important;
    padding-right: 16px !important;

    background: #0067B9 !important;
    border-color: #0067B9 !important;

    color: #FFFFFF !important;

    font-weight: 600 !important;
}

body:not(.elementor-editor-active)
.elementor-22
a.elementskit-btn:not([href*="partner"])
:not([href*="blog"])
:not([href*="markus"]):hover {
    background: #0088E8 !important;
    border-color: #0088E8 !important;

    color: #FFFFFF !important;
}


/* ---------------------------------------------------------
   HEADER LINKS / ICONS
   --------------------------------------------------------- */

body:not(.elementor-editor-active)
.elementor-22 .elementskit-btn i,

body:not(.elementor-editor-active)
.elementor-22 .elementskit-btn svg {
    font-size: 12px;

    width: 12px;
    height: 12px;
}


/* ---------------------------------------------------------
   TABLET / MOBILE
   --------------------------------------------------------- */

@media (max-width: 820px) {

    body:not(.elementor-editor-active)
    .elementor-22 {
        flex-wrap: wrap !important;

        min-height: 0;

        gap: 8px 10px;

        padding:
            10px 16px 12px !important;
    }

    body:not(.elementor-editor-active)
    .elementor-22 .elementor-widget-image img {
        width: 44px !important;
        height: 44px !important;
    }

    body:not(.elementor-editor-active)
    .elementor-22 .elementor-widget-heading {
        margin-right: auto !important;
    }

    body:not(.elementor-editor-active)
    .elementor-22 .elementor-heading-title {
        font-size: 19px !important;
    }

    body:not(.elementor-editor-active)
    .elementor-22
    .elementor-widget-elementskit-button {
        flex: 0 0 auto;
    }

    body:not(.elementor-editor-active)
    .elementor-22
    .elementor-widget-elementskit-button
    .elementskit-btn {
        min-height: 36px !important;

        padding:
            7px 9px !important;

        font-size: 13px !important;
    }
}


/* =========================================================
   FC HEADER V2 END
   ========================================================= */


/* =========================================================
   FC HEADER V2.1
   Explizite Widget-Zuordnung
   ========================================================= */

/*
 * Kontakt = Widget 064a053
 */

body:not(.elementor-editor-active)
.elementor-22
.elementor-element-064a053
.elementskit-btn {
    padding-left: 16px !important;
    padding-right: 16px !important;

    background: #0067B9 !important;
    background-image: none !important;

    border-color: #0067B9 !important;

    color: #FFFFFF !important;

    font-weight: 600 !important;
}

body:not(.elementor-editor-active)
.elementor-22
.elementor-element-064a053
.elementskit-btn:hover {
    background: #0088E8 !important;
    border-color: #0088E8 !important;

    color: #FFFFFF !important;
}


/*
 * Partner + Blog explizit als Navigation.
 */

body:not(.elementor-editor-active)
.elementor-22
.elementor-element-0b9fcf2
.elementskit-btn,

body:not(.elementor-editor-active)
.elementor-22
.elementor-element-ccf4b0c
.elementskit-btn {
    background: transparent !important;
    background-image: none !important;

    border-color: transparent !important;

    color: #B9C7D6 !important;

    font-weight: 500 !important;
}

body:not(.elementor-editor-active)
.elementor-22
.elementor-element-0b9fcf2
.elementskit-btn:hover,

body:not(.elementor-editor-active)
.elementor-22
.elementor-element-ccf4b0c
.elementskit-btn:hover {
    background: rgba(255,255,255,0.06) !important;

    border-color: rgba(255,255,255,0.08) !important;

    color: #FFFFFF !important;
}


/* =========================================================
   FC HOME REDESIGN V1 BEGIN
   ========================================================= */

.fc-home-v2 {
    --fc-navy: #0B0C1B;
    --fc-navy-soft: #12172D;
    --fc-blue: #0067B9;
    --fc-blue-hover: #0088E8;
    --fc-cyan: #4FD5FF;

    --fc-bg: #F5F7FA;
    --fc-white: #FFFFFF;

    --fc-text: #17212B;
    --fc-muted: #66717E;
    --fc-border: #DCE3EA;

    overflow: hidden;

    background: var(--fc-bg);
    color: var(--fc-text);

    font-family:
        Inter,
        Roboto,
        Arial,
        sans-serif;
}

.fc-home-v2 *,
.fc-home-v2 *::before,
.fc-home-v2 *::after {
    box-sizing: border-box;
}

.fc-v2-shell {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}


/* ---------------------------------------------------------
   COMMON
   --------------------------------------------------------- */

.fc-v2-section {
    padding: 104px 0;
}

.fc-v2-kicker,
.fc-v2-eyebrow {
    display: block;

    margin-bottom: 18px;

    color: var(--fc-blue);

    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.fc-v2-kicker-light {
    color: var(--fc-cyan);
}

.fc-home-v2 h1,
.fc-home-v2 h2,
.fc-home-v2 h3,
.fc-home-v2 p {
    margin-top: 0;
}

.fc-home-v2 h2 {
    margin-bottom: 22px;

    color: var(--fc-text);

    font-size: clamp(36px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.08;

    letter-spacing: -0.035em;
}

.fc-v2-section-heading {
    max-width: 780px;

    margin-bottom: 52px;
}

.fc-v2-section-heading > p {
    max-width: 680px;

    margin-bottom: 0;

    color: var(--fc-muted);

    font-size: 18px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.fc-v2-hero {
    position: relative;

    padding: 42px 0 108px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(0, 103, 185, 0.34),
            transparent 30%
        ),
        radial-gradient(
            circle at 65% 90%,
            rgba(79, 213, 255, 0.10),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            var(--fc-navy) 0%,
            var(--fc-navy-soft) 100%
        );

    color: var(--fc-white);
}

.fc-v2-hero::after {
    content: "";

    position: absolute;
    right: -220px;
    bottom: -280px;

    width: 620px;
    height: 620px;

    border:
        1px solid rgba(255,255,255,0.07);

    border-radius: 50%;

    pointer-events: none;
}

.fc-v2-preview-note {
    display: inline-flex;

    margin-bottom: 74px;
    padding: 7px 11px;

    border:
        1px solid rgba(255,255,255,0.14);
    border-radius: 999px;

    background:
        rgba(255,255,255,0.05);

    color: #AAB8C8;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fc-v2-hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(320px, 0.65fr);

    gap: 92px;

    align-items: center;
}

.fc-v2-eyebrow {
    color: var(--fc-cyan);
}

.fc-v2-hero h1 {
    max-width: 780px;

    margin-bottom: 30px;

    color: var(--fc-white);

    font-size: clamp(54px, 6.5vw, 82px);
    font-weight: 700;
    line-height: 0.98;

    letter-spacing: -0.055em;
}

.fc-v2-hero-lead {
    max-width: 690px;

    margin-bottom: 38px;

    color: #BEC8D4;

    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.65;
}

.fc-v2-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.fc-v2-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 13px 20px;

    border: 1px solid transparent;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 650;
    line-height: 1.2;

    text-decoration: none !important;

    transition:
        background 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        transform 160ms ease;
}

.fc-v2-button-primary {
    background: var(--fc-blue);
    border-color: var(--fc-blue);

    color: #FFFFFF !important;
}

.fc-v2-button-primary:hover {
    background: var(--fc-blue-hover);
    border-color: var(--fc-blue-hover);

    color: #FFFFFF !important;

    transform: translateY(-2px);
}

.fc-v2-button-ghost {
    background:
        rgba(255,255,255,0.04);

    border-color:
        rgba(255,255,255,0.18);

    color: #FFFFFF !important;
}

.fc-v2-button-ghost:hover {
    background:
        rgba(255,255,255,0.10);

    border-color:
        rgba(255,255,255,0.28);

    color: #FFFFFF !important;
}

.fc-v2-hero-panel {
    position: relative;

    padding: 28px;

    border:
        1px solid rgba(255,255,255,0.11);

    border-radius: 16px;

    background:
        rgba(255,255,255,0.045);

    box-shadow:
        0 28px 70px rgba(0,0,0,0.22);

    backdrop-filter: blur(14px);
}

.fc-v2-hero-panel-label {
    margin-bottom: 34px;

    color: var(--fc-cyan);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.fc-v2-signal {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 28px;
    padding-bottom: 24px;

    border-bottom:
        1px solid rgba(255,255,255,0.10);

    color: #D8E0E8;

    font-size: 13px;
}

.fc-v2-signal-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--fc-cyan);

    box-shadow:
        0 0 0 5px rgba(79,213,255,0.10);
}

.fc-v2-hero-metric {
    display: grid;

    gap: 4px;

    padding: 17px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.08);
}

.fc-v2-hero-metric:last-child {
    border-bottom: 0;
}

.fc-v2-hero-metric strong {
    color: #FFFFFF;

    font-size: 17px;
    font-weight: 650;
}

.fc-v2-hero-metric span {
    color: #8796A8;

    font-size: 13px;
}


/* ---------------------------------------------------------
   PILLARS
   --------------------------------------------------------- */

.fc-v2-intro {
    background: var(--fc-bg);
}

.fc-v2-three {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.fc-v2-pillar {
    position: relative;

    min-height: 390px;

    padding: 32px;

    border:
        1px solid var(--fc-border);

    border-radius: 14px;

    background: var(--fc-white);

    box-shadow:
        0 6px 22px rgba(11,12,27,0.045);
}

.fc-v2-number {
    margin-bottom: 72px;

    color: var(--fc-blue);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.fc-v2-pillar h3 {
    margin-bottom: 16px;

    color: var(--fc-text);

    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: -0.025em;
}

.fc-v2-pillar p {
    min-height: 84px;

    margin-bottom: 24px;

    color: var(--fc-muted);

    font-size: 15px;
    line-height: 1.65;
}

.fc-v2-pillar ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.fc-v2-pillar li {
    padding: 9px 0;

    border-top:
        1px solid #EDF1F4;

    color: #465360;

    font-size: 13px;
}


/* ---------------------------------------------------------
   WHY
   --------------------------------------------------------- */

.fc-v2-why {
    background: var(--fc-navy);
    color: #FFFFFF;
}

.fc-v2-why-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 100px;
}

.fc-v2-why h2 {
    color: #FFFFFF;
}

.fc-v2-why-points {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 0;
}

.fc-v2-why-point {
    padding: 26px;

    border-top:
        1px solid rgba(255,255,255,0.10);
}

.fc-v2-why-point:nth-child(odd) {
    border-right:
        1px solid rgba(255,255,255,0.10);
}

.fc-v2-why-point strong {
    display: block;

    margin-bottom: 9px;

    color: #FFFFFF;

    font-size: 17px;
}

.fc-v2-why-point p {
    margin-bottom: 0;

    color: #929FAE;

    font-size: 14px;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   SERVICES
   --------------------------------------------------------- */

.fc-v2-services {
    background: #FFFFFF;
}

.fc-v2-service-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0,1fr));

    border-top:
        1px solid var(--fc-border);

    border-left:
        1px solid var(--fc-border);
}

.fc-v2-service {
    min-height: 240px;

    padding: 30px;

    border-right:
        1px solid var(--fc-border);

    border-bottom:
        1px solid var(--fc-border);

    background: #FFFFFF;

    transition:
        background 160ms ease;
}

.fc-v2-service:hover {
    background: #F8FAFC;
}

.fc-v2-service > span {
    display: block;

    margin-bottom: 54px;

    color: var(--fc-blue);

    font-size: 11px;
    font-weight: 700;
}

.fc-v2-service h3 {
    margin-bottom: 12px;

    color: var(--fc-text);

    font-size: 19px;
    font-weight: 700;
}

.fc-v2-service p {
    margin-bottom: 0;

    color: var(--fc-muted);

    font-size: 14px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   MANAGED SERVICES
   --------------------------------------------------------- */

.fc-v2-managed {
    background: #EDF2F6;
}

.fc-v2-managed-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 100px;

    align-items: start;
}

.fc-v2-managed-grid > div:first-child > p {
    max-width: 560px;

    color: var(--fc-muted);

    font-size: 17px;
    line-height: 1.7;
}

.fc-v2-managed-list {
    border-top:
        1px solid #C9D3DC;
}

.fc-v2-managed-list > div {
    display: grid;
    grid-template-columns: 120px 1fr;

    gap: 20px;

    padding: 21px 0;

    border-bottom:
        1px solid #C9D3DC;
}

.fc-v2-managed-list strong {
    color: var(--fc-blue);

    font-size: 14px;
}

.fc-v2-managed-list span {
    color: #3E4A56;

    font-size: 14px;
}


/* ---------------------------------------------------------
   INSIGHTS
   --------------------------------------------------------- */

.fc-v2-insights {
    background: #FFFFFF;
}

.fc-v2-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 48px;
}

.fc-v2-heading-row h2 {
    margin-bottom: 0;
}

.fc-v2-text-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--fc-blue) !important;

    font-size: 14px;
    font-weight: 650;

    text-decoration: none !important;
}

.fc-v2-text-link:hover {
    color: var(--fc-blue-hover) !important;
}

.fc-v2-insights-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 18px;
}

.fc-v2-insight-card {
    display: flex;
    flex-direction: column;

    min-height: 260px;

    padding: 28px;

    border:
        1px solid var(--fc-border);

    border-radius: 12px;

    background: #FFFFFF;
}

.fc-v2-insight-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 50px;

    color: var(--fc-muted);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.fc-v2-insight-card h3 {
    margin-bottom: 26px;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;

    letter-spacing: -0.02em;
}

.fc-v2-insight-card h3 a {
    color: var(--fc-text) !important;

    text-decoration: none !important;
}

.fc-v2-insight-card h3 a:hover {
    color: var(--fc-blue) !important;
}

.fc-v2-insight-card > .fc-v2-text-link {
    margin-top: auto;
}


/* ---------------------------------------------------------
   FINAL CTA
   --------------------------------------------------------- */

.fc-v2-final {
    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #11182B,
            #0B0C1B
        );

    color: #FFFFFF;
}

.fc-v2-final-inner {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 0.55fr);

    gap: 100px;

    align-items: end;
}

.fc-v2-final h2 {
    max-width: 680px;

    margin-bottom: 0;

    color: #FFFFFF;

    font-size: clamp(42px,5vw,66px);
}

.fc-v2-final-inner > div:last-child p {
    margin-bottom: 26px;

    color: #AAB5C1;

    font-size: 16px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 980px) {

    .fc-v2-section {
        padding: 82px 0;
    }

    .fc-v2-hero-grid,
    .fc-v2-why-grid,
    .fc-v2-managed-grid,
    .fc-v2-final-inner {
        grid-template-columns: 1fr;

        gap: 52px;
    }

    .fc-v2-hero-panel {
        max-width: 620px;
    }

    .fc-v2-three,
    .fc-v2-service-grid,
    .fc-v2-insights-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .fc-v2-three .fc-v2-pillar:last-child {
        grid-column: 1 / -1;
    }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 680px) {

    .fc-v2-shell {
        width: min(
            100% - 30px,
            1240px
        );
    }

    .fc-v2-section {
        padding: 68px 0;
    }

    .fc-v2-preview-note {
        margin-bottom: 48px;
    }

    .fc-v2-hero {
        padding-top: 28px;
        padding-bottom: 72px;
    }

    .fc-v2-hero-grid {
        gap: 42px;
    }

    .fc-v2-hero h1 {
        font-size: clamp(
            44px,
            14vw,
            62px
        );
    }

    .fc-v2-hero-actions {
        display: grid;
    }

    .fc-v2-button {
        width: 100%;
    }

    .fc-v2-three,
    .fc-v2-service-grid,
    .fc-v2-insights-grid,
    .fc-v2-why-points {
        grid-template-columns: 1fr;
    }

    .fc-v2-three .fc-v2-pillar:last-child {
        grid-column: auto;
    }

    .fc-v2-pillar {
        min-height: 0;
    }

    .fc-v2-number {
        margin-bottom: 42px;
    }

    .fc-v2-pillar p {
        min-height: 0;
    }

    .fc-v2-why-point {
        padding-left: 0;
        padding-right: 0;
    }

    .fc-v2-why-point:nth-child(odd) {
        border-right: 0;
    }

    .fc-v2-heading-row {
        display: block;
    }

    .fc-v2-heading-row .fc-v2-text-link {
        margin-top: 22px;
    }

    .fc-v2-managed-list > div {
        grid-template-columns:
            90px 1fr;
    }

    .fc-v2-final-inner {
        gap: 36px;
    }
}


/* =========================================================
   FC HOME REDESIGN V1 END
   ========================================================= */


/* =========================================================
   FC PREVIEW PAGE 1941 BEGIN
   Full-width shell for standalone redesign preview
   ========================================================= */

.page-id-1941 main.site-main,
.page-id-1941 #content.site-main {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}

.page-id-1941
.site-main > article {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}

.page-id-1941
.site-main > article > .entry-content {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}

.page-id-1941
.page-header,

.page-id-1941
.site-main > article > .entry-header,

.page-id-1941
.site-main > article > .entry-footer {
    display: none !important;
}


/*
 * Falls das Theme dennoch einen Content-Container setzt,
 * bricht ausschließlich unser Redesign auf Viewportbreite aus.
 */

.page-id-1941
.fc-home-v2 {
    width: 100vw;
    max-width: none;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}


/* =========================================================
   FC PREVIEW PAGE 1941 END
   ========================================================= */


/* =========================================================
   FC PREVIEW POLISH V1.4 BEGIN
   Preview page ID 1941
   ========================================================= */


/* ---------------------------------------------------------
   1. HEADER WORDMARK
   --------------------------------------------------------- */

/*
 * Altes Elementor-Styling setzt offenbar zusätzlich
 * Text-Fill/Gradienten. Deshalb hier explizit alles
 * neutralisieren.
 */

.page-id-1941
.elementor-22
.elementor-element-0c36686
.elementor-heading-title {
    color: #4FD5FF !important;

    background: none !important;
    background-image: none !important;

    -webkit-background-clip: initial !important;
    background-clip: initial !important;

    -webkit-text-fill-color: #4FD5FF !important;

    text-shadow: none !important;
}


/* ---------------------------------------------------------
   2. SCHWEBENDE TERMIN-/SERVICE-BUTTONS
   --------------------------------------------------------- */

/*
 * Auf der neuen Startseite redundant:
 * Termin-CTA ist bereits Bestandteil des Designs.
 *
 * Nur Preview ausblenden – alte Live-Seite bleibt
 * unangetastet.
 */

.page-id-1941 .fc-contact-actions {
    display: none !important;
}


/* ---------------------------------------------------------
   3. FOOTER / RECHTLICHES
   --------------------------------------------------------- */

.page-id-1941 .elementor-607 {
    background: #0B0C1B !important;
}


/*
 * Überschriften klar weiß.
 */

.page-id-1941
.elementor-607
.elementor-heading-title {
    color: #FFFFFF !important;

    -webkit-text-fill-color: #FFFFFF !important;
}


/*
 * Normaler Footertext etwas ruhiger.
 */

.page-id-1941
.elementor-607
.elementor-widget-text-editor,

.page-id-1941
.elementor-607
.elementor-widget-text-editor p,

.page-id-1941
.elementor-607
.elementor-icon-box-description {
    color: #AAB5C1 !important;
}


/*
 * Links wie Datenschutz / Impressum deutlich lesbar.
 */

.page-id-1941
.elementor-607 a {
    color: #DCE7F0 !important;

    -webkit-text-fill-color: #DCE7F0 !important;

    text-decoration: none !important;

    transition:
        color 160ms ease,
        border-color 160ms ease;
}

.page-id-1941
.elementor-607 a:hover {
    color: #4FD5FF !important;

    -webkit-text-fill-color: #4FD5FF !important;
}


/*
 * Textlinks bekommen etwas Struktur, ohne nach Buttons
 * auszusehen.
 */

.page-id-1941
.elementor-607
.elementor-widget-text-editor a {
    display: inline-block;

    padding: 4px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.15);
}

.page-id-1941
.elementor-607
.elementor-widget-text-editor a:hover {
    border-bottom-color: #4FD5FF;
}


/* =========================================================
   FC PREVIEW POLISH V1.4 END
   ========================================================= */


/* =========================================================
   FC LEGAL REDESIGN V2 BEGIN
   Preview IDs: 1942, 1943
   ========================================================= */


/* Theme-Seitentitel entfernen */

:is(.page-id-1942,.page-id-1029) .page-header,
:is(.page-id-1943,.page-id-1843) .page-header,

:is(.page-id-1942,.page-id-1029) article > .entry-header,
:is(.page-id-1943,.page-id-1843) article > .entry-header {
    display: none !important;
}


/* volle Breite */

:is(.page-id-1942,.page-id-1029) main.site-main,
:is(.page-id-1943,.page-id-1843) main.site-main,

:is(.page-id-1942,.page-id-1029) .site-main > article,
:is(.page-id-1943,.page-id-1843) .site-main > article,

:is(.page-id-1942,.page-id-1029) .entry-content,
:is(.page-id-1943,.page-id-1843) .entry-content {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* keine Floating-Actions auf Rechteseiten */

:is(.page-id-1942,.page-id-1029) .fc-contact-actions,
:is(.page-id-1943,.page-id-1843) .fc-contact-actions {
    display: none !important;
}


/* Header-Wordmark konsistent */

:is(.page-id-1942,.page-id-1029)
.elementor-22
.elementor-element-0c36686
.elementor-heading-title,

:is(.page-id-1943,.page-id-1843)
.elementor-22
.elementor-element-0c36686
.elementor-heading-title {
    color: #4FD5FF !important;
    -webkit-text-fill-color: #4FD5FF !important;

    background: none !important;
    background-image: none !important;
}


/* Basis */

.fc-legal-v2 {
    --navy: #0B0C1B;
    --blue: #0067B9;
    --blue-hover: #0088E8;
    --cyan: #4FD5FF;

    --bg: #F5F7FA;
    --surface: #FFFFFF;
    --text: #17212B;
    --muted: #66717E;
    --border: #DCE3EA;

    background: var(--bg);
    color: var(--text);

    font-family:
        Inter,
        Roboto,
        Arial,
        sans-serif;
}


.fc-legal-v2 *,
.fc-legal-v2 *::before,
.fc-legal-v2 *::after {
    box-sizing: border-box;
}


.fc-legal-v2-shell {
    width: min(
        1160px,
        calc(100% - 48px)
    );

    margin: 0 auto;
}


/* Hero */

.fc-legal-v2-hero {
    padding: 82px 0 76px;

    background:
        radial-gradient(
            circle at 82% 10%,
            rgba(0,103,185,.30),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #0B0C1B,
            #11182B
        );

    color: #FFFFFF;
}


.fc-legal-v2-kicker {
    display: block;

    margin-bottom: 18px;

    color: var(--cyan);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .16em;
}


.fc-legal-v2-hero h1 {
    margin: 0 0 22px;

    color: #FFFFFF;

    font-size: clamp(
        48px,
        6vw,
        74px
    );

    font-weight: 700;
    line-height: 1;

    letter-spacing: -.045em;
}


.fc-legal-v2-hero p {
    max-width: 720px;

    margin: 0;

    color: #B8C3CE;

    font-size: 18px;
    line-height: 1.65;
}


.fc-legal-v2-preview {
    display: inline-flex;

    margin-top: 30px;

    padding: 7px 11px;

    border:
        1px solid rgba(255,255,255,.14);

    border-radius: 999px;

    color: #9EADBD;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: .06em;
}


/* Content */

.fc-legal-v2-body {
    padding: 82px 0 110px;
}


.fc-legal-v2-layout {
    display: grid;

    grid-template-columns:
        220px
        minmax(0, 790px);

    justify-content: space-between;

    gap: 80px;
}


/* Inhaltsnavigation */

.fc-legal-v2-nav {
    position: sticky;
    top: 24px;

    align-self: start;

    display: grid;

    gap: 2px;

    padding: 20px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background: var(--surface);
}


.fc-legal-v2-nav strong {
    margin:
        0 7px 12px;

    color: var(--text);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;
}


.fc-legal-v2-nav a {
    padding: 8px 7px;

    border-radius: 6px;

    color: var(--muted) !important;

    font-size: 13px;
    line-height: 1.3;

    text-decoration: none !important;
}


.fc-legal-v2-nav a:hover {
    background: #F3F6F8;

    color: var(--blue) !important;
}


/* Karten */

.fc-legal-v2-content {
    display: grid;

    gap: 18px;
}


.fc-legal-v2-content section {
    scroll-margin-top: 30px;

    padding: 40px 44px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background: var(--surface);

    box-shadow:
        0 5px 20px rgba(11,12,27,.035);
}


.fc-legal-v2-number {
    display: block;

    margin-bottom: 30px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .12em;
}


.fc-legal-v2-content h2 {
    margin: 0 0 22px;

    color: var(--text);

    font-size: 28px;
    font-weight: 700;
    line-height: 1.18;

    letter-spacing: -.025em;
}


.fc-legal-v2-content p,
.fc-legal-v2-content li,
.fc-legal-v2-content address {
    color: #52606D;

    font-size: 15px;
    line-height: 1.75;
}


.fc-legal-v2-content p {
    margin-top: 0;
    margin-bottom: 18px;
}


.fc-legal-v2-content strong {
    color: var(--text);
}


.fc-legal-v2-content address {
    margin: 20px 0;

    font-style: normal;
}


.fc-legal-v2-content ul {
    margin: 18px 0 24px;

    padding-left: 22px;
}


.fc-legal-v2-content li {
    margin-bottom: 6px;
}


.fc-legal-v2-content a {
    color: var(--blue) !important;

    text-decoration: none !important;
}


.fc-legal-v2-content a:hover {
    color: var(--blue-hover) !important;
}


.fc-legal-v2-muted {
    padding-top: 18px;

    border-top:
        1px solid #EDF1F4;

    color: #788491 !important;

    font-size: 13px !important;
}


/* strukturierte Daten */

.fc-legal-v2-data {
    margin: 0;
}


.fc-legal-v2-data > div {
    display: grid;

    grid-template-columns:
        180px 1fr;

    gap: 24px;

    padding: 16px 0;

    border-bottom:
        1px solid #EDF1F4;
}


.fc-legal-v2-data > div:last-child {
    border-bottom: 0;
}


.fc-legal-v2-data dt {
    color: var(--muted);

    font-size: 13px;
}


.fc-legal-v2-data dd {
    margin: 0;

    color: var(--text);

    font-size: 14px;
    font-weight: 550;
}


/* Responsive */

@media (max-width: 900px) {

    .fc-legal-v2-layout {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .fc-legal-v2-nav {
        position: static;

        display: flex;
        flex-wrap: wrap;
    }

    .fc-legal-v2-nav strong {
        width: 100%;
    }

}


@media (max-width: 600px) {

    .fc-legal-v2-shell {
        width: calc(100% - 30px);
    }

    .fc-legal-v2-hero {
        padding: 58px 0 56px;
    }

    .fc-legal-v2-body {
        padding: 42px 0 70px;
    }

    .fc-legal-v2-content section {
        padding: 28px 22px;
    }

    .fc-legal-v2-data > div {
        grid-template-columns: 1fr;

        gap: 5px;
    }

}


/* =========================================================
   FC LEGAL REDESIGN V2 END
   ========================================================= */


/* =========================================================
   FC DATENSCHUTZ PREVIEW V2.1 BEGIN
   Page 1943 only
   ========================================================= */


/*
 * Hero enger an Homepage-V2.
 */

:is(.page-id-1943,.page-id-1843) .fc-privacy-hero {
    padding: 64px 0 72px;

    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(0,103,185,.34),
            transparent 31%
        ),
        radial-gradient(
            circle at 64% 100%,
            rgba(79,213,255,.08),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #0B0C1B 0%,
            #12172D 100%
        );
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-hero h1 {
    max-width: 820px;

    font-size: clamp(
        48px,
        5.6vw,
        72px
    );

    line-height: 1.02;
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-hero > .fc-legal-v2-shell > p {
    max-width: 690px;
}


/*
 * Neue 3er-Übersicht wie Leistungswelt auf Startseite.
 */

:is(.page-id-1943,.page-id-1843)
.fc-privacy-overview {
    padding: 54px 0;

    background: #F5F7FA;
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-overview-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 16px;
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-overview-grid article {
    min-height: 190px;

    padding: 26px;

    border:
        1px solid #DCE3EA;

    border-radius: 12px;

    background: #FFFFFF;

    box-shadow:
        0 5px 20px rgba(11,12,27,.035);
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-overview-grid article > span {
    display: block;

    margin-bottom: 42px;

    color: #0067B9;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .12em;
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-overview-grid strong {
    display: block;

    margin-bottom: 10px;

    color: #17212B;

    font-size: 19px;
    font-weight: 700;
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-overview-grid p {
    margin: 0;

    color: #66717E;

    font-size: 14px;
    line-height: 1.6;
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-overview-grid a {
    display: inline-block;

    margin-top: 7px;

    color: #0067B9 !important;

    font-size: 14px;
    font-weight: 650;

    text-decoration: none !important;
}


/*
 * Weniger "Gerichtsdokument-Karten",
 * mehr ruhige Homepage-Optik.
 */

:is(.page-id-1943,.page-id-1843)
.fc-legal-v2-body {
    padding-top: 24px;

    background: #F5F7FA;
}


:is(.page-id-1943,.page-id-1843)
.fc-legal-v2-content {
    gap: 14px;
}


:is(.page-id-1943,.page-id-1843)
.fc-legal-v2-content section {
    padding: 38px 42px;

    border-radius: 10px;

    box-shadow:
        0 3px 14px rgba(11,12,27,.025);
}


/*
 * Datenschutzkontakt als echte Infofläche.
 */

:is(.page-id-1943,.page-id-1843)
.fc-privacy-contact {
    display: grid;

    gap: 5px;

    margin-top: 26px;
    padding: 18px 20px;

    border-left:
        3px solid #4FD5FF;

    background: #F3F9FC;
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-contact span {
    color: #66717E;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: .06em;
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-contact a {
    color: #0067B9 !important;

    font-size: 17px;
    font-weight: 700;
}


/*
 * Footer auf der Privacy-Preview wie Redesign.
 */

:is(.page-id-1943,.page-id-1843)
.elementor-607 {
    background: #0B0C1B !important;
}


:is(.page-id-1943,.page-id-1843)
.elementor-607 a {
    color: #DCE7F0 !important;

    -webkit-text-fill-color:
        #DCE7F0 !important;
}


:is(.page-id-1943,.page-id-1843)
.elementor-607 a:hover {
    color: #4FD5FF !important;

    -webkit-text-fill-color:
        #4FD5FF !important;
}


/*
 * Responsive.
 */

@media (max-width: 900px) {

    :is(.page-id-1943,.page-id-1843)
    .fc-privacy-overview-grid {
        grid-template-columns: 1fr;
    }

    :is(.page-id-1943,.page-id-1843)
    .fc-privacy-overview-grid article {
        min-height: 0;
    }

    :is(.page-id-1943,.page-id-1843)
    .fc-privacy-overview-grid article > span {
        margin-bottom: 25px;
    }
}


@media (max-width: 600px) {

    :is(.page-id-1943,.page-id-1843)
    .fc-privacy-hero {
        padding: 50px 0 54px;
    }

    :is(.page-id-1943,.page-id-1843)
    .fc-privacy-overview {
        padding: 32px 0;
    }

    :is(.page-id-1943,.page-id-1843)
    .fc-legal-v2-content section {
        padding: 27px 22px;
    }
}


/* =========================================================
   FC DATENSCHUTZ PREVIEW V2.1 END
   ========================================================= */


/* =========================================================
   FC PRIVACY COMMITMENT V2.2 BEGIN
   Page 1943 only
   ========================================================= */


/*
 * Haltung / Selbstverständnis.
 *
 * Dunkler Übergangsbereich wie auf der neuen Startseite:
 * weniger "Rechtstext", mehr FormigaCrew.
 */

:is(.page-id-1943,.page-id-1843)
.fc-privacy-commitment {
    padding: 88px 0;

    background: #0B0C1B;

    color: #FFFFFF;
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-commitment-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .82fr)
        minmax(0, 1.18fr);

    gap: 90px;

    align-items: start;
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-commitment-kicker {
    display: block;

    margin-bottom: 18px;

    color: #4FD5FF;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .16em;
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-commitment h2 {
    max-width: 500px;

    margin: 0;

    color: #FFFFFF;

    font-size: clamp(
        34px,
        4vw,
        50px
    );

    font-weight: 700;
    line-height: 1.08;

    letter-spacing: -.035em;
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-commitment-copy {
    padding-top: 3px;
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-commitment-copy p {
    margin: 0;

    padding: 18px 0;

    border-top:
        1px solid rgba(255,255,255,.10);

    color: #AEB9C5;

    font-size: 16px;
    line-height: 1.7;
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-commitment-copy p:first-child {
    padding-top: 0;

    border-top: 0;
}


:is(.page-id-1943,.page-id-1843)
.fc-privacy-commitment-copy p:last-child {
    padding-bottom: 0;

    color: #FFFFFF;

    font-weight: 550;
}


/*
 * Die Übersicht folgt direkt darunter.
 */

:is(.page-id-1943,.page-id-1843)
.fc-privacy-overview {
    padding-top: 64px;
}


/*
 * Karten zwei und drei ggf. etwas längerer Text:
 * Höhe automatisch statt künstlich fix.
 */

:is(.page-id-1943,.page-id-1843)
.fc-privacy-overview-grid article {
    min-height: 210px;
}


/*
 * Responsive.
 */

@media (max-width: 900px) {

    :is(.page-id-1943,.page-id-1843)
    .fc-privacy-commitment {
        padding: 68px 0;
    }

    :is(.page-id-1943,.page-id-1843)
    .fc-privacy-commitment-grid {
        grid-template-columns: 1fr;

        gap: 42px;
    }

}


@media (max-width: 600px) {

    :is(.page-id-1943,.page-id-1843)
    .fc-privacy-commitment {
        padding: 54px 0;
    }

    :is(.page-id-1943,.page-id-1843)
    .fc-privacy-commitment-copy p {
        font-size: 15px;
    }

}


/* =========================================================
   FC PRIVACY COMMITMENT V2.2 END
   ========================================================= */


/* FC LIVE RELEASE 7 IMP / 46 DS */


/* =========================================================
   FC PARTNER REDESIGN V2 BEGIN
   Preview page 1949
   ========================================================= */


/* Theme-Reste entfernen */

.page-id-1949 .page-header,
.page-id-1949 article > .entry-header {
    display: none !important;
}


.page-id-1949 main.site-main,
.page-id-1949 .site-main > article,
.page-id-1949 .entry-content {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* Floating Actions auf neuer Partnerseite nicht nötig */

.page-id-1949 .fc-contact-actions {
    display: none !important;
}


/* Wordmark wie neue Homepage */

.page-id-1949
.elementor-22
.elementor-element-0c36686
.elementor-heading-title {
    color: #4FD5FF !important;
    -webkit-text-fill-color: #4FD5FF !important;

    background: none !important;
    background-image: none !important;
}


/* Basis */

.fc-partner-v2 {
    --fc-navy: #0B0C1B;
    --fc-blue: #0067B9;
    --fc-blue-hover: #0088E8;
    --fc-cyan: #4FD5FF;

    --fc-bg: #F5F7FA;
    --fc-white: #FFFFFF;

    --fc-text: #17212B;
    --fc-muted: #66717E;
    --fc-border: #DCE3EA;

    font-family:
        Inter,
        Roboto,
        Arial,
        sans-serif;

    color: var(--fc-text);

    background: var(--fc-bg);
}


.fc-partner-v2 *,
.fc-partner-v2 *::before,
.fc-partner-v2 *::after {
    box-sizing: border-box;
}


.fc-partner-shell {
    width: min(
        1160px,
        calc(100% - 48px)
    );

    margin: 0 auto;
}


/* Hero */

.fc-partner-hero {
    padding: 92px 0 96px;

    background:
        radial-gradient(
            circle at 78% 10%,
            rgba(0,103,185,.34),
            transparent 34%
        ),
        radial-gradient(
            circle at 63% 100%,
            rgba(79,213,255,.07),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0B0C1B,
            #11172B
        );

    color: #FFFFFF;
}


.fc-partner-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(320px, .8fr);

    gap: 90px;

    align-items: center;
}


.fc-partner-kicker,
.fc-partner-section-kicker {
    display: block;

    margin-bottom: 20px;

    color: #4FD5FF;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .16em;
}


.fc-partner-hero h1 {
    max-width: 700px;

    margin: 0 0 26px;

    color: #FFFFFF;

    font-size: clamp(
        54px,
        7vw,
        86px
    );

    font-weight: 700;
    line-height: .98;

    letter-spacing: -.05em;
}


.fc-partner-lead {
    max-width: 690px;

    margin: 0;

    color: #B8C3CE;

    font-size: 19px;
    line-height: 1.7;
}


.fc-partner-hero-panel {
    padding: 34px;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 14px;

    background:
        rgba(255,255,255,.045);
}


.fc-partner-hero-panel > span {
    display: block;

    margin-bottom: 42px;

    color: #4FD5FF;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .12em;
}


.fc-partner-hero-panel strong {
    display: block;

    margin-bottom: 16px;

    color: #FFFFFF;

    font-size: 25px;
    line-height: 1.25;
}


.fc-partner-hero-panel p {
    margin: 0;

    color: #AEB9C5;

    font-size: 15px;
    line-height: 1.7;
}


/* Intro */

.fc-partner-intro {
    padding: 90px 0 68px;

    background: #F5F7FA;
}


.fc-partner-intro-grid {
    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 100px;
}


.fc-partner-intro h2,
.fc-partner-values h2,
.fc-partner-cta h2 {
    margin: 0;

    color: #17212B;

    font-size: clamp(
        36px,
        4.2vw,
        52px
    );

    font-weight: 700;
    line-height: 1.08;

    letter-spacing: -.035em;
}


.fc-partner-intro p {
    margin: 0 0 17px;

    color: #66717E;

    font-size: 16px;
    line-height: 1.75;
}


/* Partner Cards */

.fc-partner-list {
    padding: 0 0 100px;

    background: #F5F7FA;
}


.fc-partner-card-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 18px;
}


.fc-partner-card {
    display: flex;
    flex-direction: column;

    min-height: 300px;

    overflow: hidden;

    border:
        1px solid #DCE3EA;

    border-radius: 14px;

    background: #FFFFFF;

    text-decoration: none !important;

    box-shadow:
        0 5px 22px rgba(11,12,27,.035);

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}


.fc-partner-card:hover {
    transform: translateY(-3px);

    border-color: #BCD0DF;

    box-shadow:
        0 12px 30px rgba(11,12,27,.075);
}


.fc-partner-logo {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 225px;

    padding: 42px;

    background: #FFFFFF;
}


.fc-partner-logo img {
    display: block;

    width: auto;
    height: auto;

    max-width: 78%;
    max-height: 100px;

    object-fit: contain;
}


/*
 * VamiSec ist als Ausgangsdatei deutlich kleiner.
 */

.fc-partner-card:nth-child(3)
.fc-partner-logo img {
    max-height: 112px;
}


.fc-partner-card-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: auto;

    padding: 20px 24px;

    border-top:
        1px solid #EDF1F4;
}


.fc-partner-card-footer strong {
    color: #17212B;

    font-size: 15px;
    font-weight: 700;
}


.fc-partner-card-footer span {
    color: #0067B9;

    font-size: 13px;
    font-weight: 650;
}


/* Werte */

.fc-partner-values {
    padding: 96px 0;

    background: #FFFFFF;
}


.fc-partner-values > .fc-partner-shell > h2 {
    max-width: 720px;

    margin-bottom: 55px;
}


.fc-partner-values-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 14px;
}


.fc-partner-values-grid article {
    padding: 28px 24px;

    border:
        1px solid #DCE3EA;

    border-radius: 12px;

    background: #F8FAFB;
}


.fc-partner-values-grid article > span {
    display: block;

    margin-bottom: 50px;

    color: #0067B9;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .12em;
}


.fc-partner-values-grid strong {
    display: block;

    margin-bottom: 12px;

    color: #17212B;

    font-size: 18px;
    line-height: 1.3;
}


.fc-partner-values-grid p {
    margin: 0;

    color: #66717E;

    font-size: 14px;
    line-height: 1.65;
}


/* CTA */

.fc-partner-cta {
    padding: 88px 0;

    background: #0B0C1B;
}


.fc-partner-cta-inner {
    display: grid;

    grid-template-columns:
        1fr auto;

    gap: 80px;

    align-items: end;
}


.fc-partner-cta h2 {
    color: #FFFFFF;
}


.fc-partner-cta p {
    max-width: 650px;

    margin: 20px 0 0;

    color: #AEB9C5;

    font-size: 16px;
    line-height: 1.7;
}


.fc-partner-cta-button {
    display: inline-flex;

    align-items: center;

    min-height: 50px;

    padding: 0 22px;

    border-radius: 8px;

    background: #0067B9;

    color: #FFFFFF !important;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none !important;

    transition:
        background .18s ease,
        transform .18s ease;
}


.fc-partner-cta-button:hover {
    transform: translateY(-1px);

    background: #0088E8;

    color: #FFFFFF !important;
}


/* Footer wie Redesign */

.page-id-1949
.elementor-607 {
    background: #0B0C1B !important;
}


.page-id-1949
.elementor-607 a {
    color: #DCE7F0 !important;

    -webkit-text-fill-color:
        #DCE7F0 !important;
}


.page-id-1949
.elementor-607 a:hover {
    color: #4FD5FF !important;

    -webkit-text-fill-color:
        #4FD5FF !important;
}


/* Responsive */

@media (max-width: 950px) {

    .fc-partner-hero-grid,
    .fc-partner-intro-grid {
        grid-template-columns: 1fr;

        gap: 48px;
    }

    .fc-partner-values-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

}


@media (max-width: 700px) {

    .fc-partner-shell {
        width: calc(100% - 30px);
    }

    .fc-partner-hero {
        padding: 60px 0 64px;
    }

    .fc-partner-intro {
        padding: 62px 0 48px;
    }

    .fc-partner-card-grid,
    .fc-partner-values-grid {
        grid-template-columns: 1fr;
    }

    .fc-partner-card {
        min-height: 250px;
    }

    .fc-partner-logo {
        min-height: 180px;
    }

    .fc-partner-values {
        padding: 65px 0;
    }

    .fc-partner-cta {
        padding: 62px 0;
    }

    .fc-partner-cta-inner {
        grid-template-columns: 1fr;

        gap: 34px;
    }

}


/* =========================================================
   FC PARTNER REDESIGN V2 END
   ========================================================= */


/* =========================================================
   FC PARTNER LIVE RELEASE BEGIN
   Page 1678
   ========================================================= */


/* Theme-Reste entfernen */

.page-id-1678 .page-header,
.page-id-1678 article > .entry-header {
    display: none !important;
}


.page-id-1678 main.site-main,
.page-id-1678 .site-main > article,
.page-id-1678 .entry-content {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* Keine redundanten Floating Actions */

.page-id-1678 .fc-contact-actions {
    display: none !important;
}


/* Header-Wordmark wie Homepage */

.page-id-1678
.elementor-22
.elementor-element-0c36686
.elementor-heading-title {
    color: #4FD5FF !important;
    -webkit-text-fill-color: #4FD5FF !important;

    background: none !important;
    background-image: none !important;
}


/* Footer wie Redesign */

.page-id-1678
.elementor-607 {
    background: #0B0C1B !important;
}


.page-id-1678
.elementor-607 a {
    color: #DCE7F0 !important;

    -webkit-text-fill-color:
        #DCE7F0 !important;
}


.page-id-1678
.elementor-607 a:hover {
    color: #4FD5FF !important;

    -webkit-text-fill-color:
        #4FD5FF !important;
}


/* =========================================================
   FC PARTNER LIVE RELEASE END
   ========================================================= */


/* =========================================================
   FC FOOTER REDESIGN V3 BEGIN
   Global footer template 607
   ========================================================= */


/*
 * Grundfläche
 */

.elementor-607 {
    position: relative;

    overflow: hidden;

    border-top:
        1px solid rgba(220,231,240,.08);

    background:
        radial-gradient(
            circle at 18% 0%,
            rgba(0,103,185,.10),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #0B0C1B 0%,
            #0D1122 100%
        ) !important;

    color: #DCE7F0;
}


/*
 * Inhalte nicht übermäßig breit laufen lassen.
 */

.elementor-607 .e-con-inner {
    max-width: 1160px !important;
}


/*
 * FormigaCrew Logo:
 * deutlich kompakter als bisher.
 */

.elementor-607
.elementor-widget-image img {
    width: auto !important;
    height: auto !important;

    max-width: 230px !important;
    max-height: 190px !important;

    object-fit: contain;

    opacity: .94;
}


/*
 * Bereichsüberschriften:
 * "Richtlinien" / "Kontakt"
 */

.elementor-607
.elementor-widget-heading
.elementor-heading-title {
    margin: 0 !important;

    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;

    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;

    letter-spacing: .09em !important;
    text-transform: uppercase;
}


/*
 * Links.
 *
 * Cyan wird nur als Interaktionsfarbe benutzt.
 */

.elementor-607 a {
    color: #DCE7F0 !important;
    -webkit-text-fill-color: #DCE7F0 !important;

    text-decoration: none !important;

    transition:
        color .18s ease,
        opacity .18s ease;
}


.elementor-607 a:hover {
    color: #4FD5FF !important;
    -webkit-text-fill-color: #4FD5FF !important;
}


/*
 * Icon-Boxen / Kontaktdaten.
 */

.elementor-607
.elementor-icon-box-wrapper {
    align-items: flex-start !important;
}


.elementor-607
.elementor-icon-box-icon {
    margin-top: 2px !important;
}


.elementor-607
.elementor-icon-box-icon
.elementor-icon {
    color: #4FD5FF !important;

    fill: #4FD5FF !important;
}


.elementor-607
.elementor-icon-box-title {
    margin-bottom: 3px !important;

    color: #FFFFFF !important;

    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
}


.elementor-607
.elementor-icon-box-description {
    color: #B8C3CE !important;

    font-size: 14px !important;
    line-height: 1.55 !important;
}


/*
 * Normaler Footertext.
 */

.elementor-607
.elementor-widget-text-editor,
.elementor-607
.elementor-widget-text-editor p {
    color: #94A2B1 !important;

    font-size: 13px !important;
    line-height: 1.55 !important;
}


/*
 * Trennlinie.
 */

.elementor-607
.elementor-divider-separator {
    border-color:
        rgba(220,231,240,.16) !important;
}


/*
 * Logo bekommt keine harte Kartenwirkung.
 */

.elementor-607
.elementor-widget-image {
    margin-bottom: 0 !important;
}


/*
 * etwas Luft zwischen einzelnen Kontaktblöcken
 */

.elementor-607
.elementor-widget-icon-box {
    margin-bottom: 5px !important;
}


/*
 * Rechtelinks etwas ruhiger.
 */

.elementor-607
a[href*="datenschutz"],
.elementor-607
a[href*="impressum"] {
    display: inline-block;

    padding: 3px 0;

    color: #CBD6E1 !important;
    -webkit-text-fill-color: #CBD6E1 !important;

    font-weight: 500 !important;
}


.elementor-607
a[href*="datenschutz"]:hover,
.elementor-607
a[href*="impressum"]:hover {
    color: #4FD5FF !important;
    -webkit-text-fill-color: #4FD5FF !important;
}


/*
 * Mobile
 */

@media (max-width: 767px) {

    .elementor-607
    .elementor-widget-image img {
        max-width: 180px !important;
        max-height: 150px !important;
    }


    .elementor-607
    .elementor-widget-heading
    .elementor-heading-title {
        margin-top: 10px !important;
    }


    .elementor-607
    .elementor-icon-box-title,
    .elementor-607
    .elementor-icon-box-description {
        font-size: 13px !important;
    }

}


/* =========================================================
   FC FOOTER REDESIGN V3 END
   ========================================================= */


/* =========================================================
   FC GLOBAL FOOTER V4 CSS BEGIN
   ========================================================= */


/*
 * Alter Elementor-Footer bleibt vollständig erhalten,
 * wird aber nur noch visuell ausgeblendet.
 */

.elementor-607 {
    display: none !important;
}


/*
 * Neuer Footer
 */

.fc-site-footer {
    --fc-footer-navy: #0B0C1B;
    --fc-footer-text: #DCE5EE;
    --fc-footer-muted: #8E9BAA;
    --fc-footer-border: rgba(220,231,240,.12);
    --fc-footer-cyan: #4FD5FF;

    position: relative;

    padding: 62px 0 24px;

    overflow: hidden;

    border-top:
        1px solid rgba(220,231,240,.07);

    background:
        radial-gradient(
            circle at 12% 0%,
            rgba(0,103,185,.10),
            transparent 30%
        ),
        #0B0C1B;

    color: var(--fc-footer-text);

    font-family:
        Inter,
        Roboto,
        Arial,
        sans-serif;
}


.fc-site-footer *,
.fc-site-footer *::before,
.fc-site-footer *::after {
    box-sizing: border-box;
}


.fc-site-footer-shell {
    width: min(
        1160px,
        calc(100% - 48px)
    );

    margin: 0 auto;
}


/*
 * Hauptbereich
 */

.fc-site-footer-main {
    display: grid;

    grid-template-columns:
        minmax(300px, 1.25fr)
        minmax(150px, .55fr)
        minmax(310px, 1fr);

    gap: 74px;

    align-items: start;
}


/*
 * Marke
 */

.fc-site-footer-brandline {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    color: #FFFFFF !important;

    text-decoration: none !important;
}


.fc-site-footer-brandline img {
    display: block;

    width: 50px !important;
    height: 50px !important;

    object-fit: cover;

    border-radius: 4px;
}


.fc-site-footer-brandline span {
    color: #4FD5FF;

    font-size: 21px;
    font-weight: 700;

    letter-spacing: -.02em;
}


.fc-site-footer-brand > p {
    max-width: 390px;

    margin: 22px 0 0;

    color: #B0BCC8;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
}


.fc-site-footer-brand
.fc-site-footer-brandcopy {
    max-width: 370px;

    margin-top: 12px;

    color: #778697;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
}


/*
 * Spalten
 */

.fc-site-footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}


.fc-site-footer-column > strong {
    display: block;

    margin-bottom: 10px;

    color: #FFFFFF;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .09em;
    text-transform: uppercase;
}


.fc-site-footer-column > a {
    color: #B9C5D0 !important;

    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;

    text-decoration: none !important;

    transition:
        color .16s ease;
}


.fc-site-footer-column > a:hover {
    color: #4FD5FF !important;
}


/*
 * Kontakt
 */

.fc-site-footer-contact {
    gap: 11px;
}


.fc-site-footer-contact-row {
    display: grid;

    grid-template-columns:
        52px minmax(0,1fr);

    width: 100%;

    gap: 12px;

    align-items: start;
}


.fc-site-footer-contact-row > span {
    padding-top: 1px;

    color: #687889;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .06em;
    text-transform: uppercase;
}


.fc-site-footer-contact-row a {
    color: #B9C5D0 !important;

    font-size: 13px;
    line-height: 1.55;

    text-decoration: none !important;

    transition:
        color .16s ease;
}


.fc-site-footer-contact-row a:hover {
    color: #4FD5FF !important;
}


/*
 * Abschlusszeile
 */

.fc-site-footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 48px;
    padding-top: 20px;

    border-top:
        1px solid var(--fc-footer-border);
}


.fc-site-footer-bottom span {
    color: #697888;

    font-size: 11px;
    line-height: 1.5;
}


/*
 * Responsive
 */

@media (max-width: 950px) {

    .fc-site-footer-main {
        grid-template-columns:
            1fr 1fr;

        gap: 50px;
    }

    .fc-site-footer-brand {
        grid-column: 1 / -1;
    }

}


@media (max-width: 650px) {

    .fc-site-footer {
        padding:
            46px 0 22px;
    }

    .fc-site-footer-shell {
        width:
            calc(100% - 30px);
    }

    .fc-site-footer-main {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .fc-site-footer-brand {
        grid-column: auto;
    }

    .fc-site-footer-bottom {
        align-items: flex-start;
        flex-direction: column;

        gap: 8px;

        margin-top: 38px;
    }

}


/* =========================================================
   FC GLOBAL FOOTER V4 CSS END
   ========================================================= */


/* =========================================================
   FC SINGLE BLOG REDESIGN V1 BEGIN

   Scope:
   Nur WordPress Einzelbeitraege.
   Header und globaler Footer werden nicht veraendert.
   ========================================================= */


/*
 * Gesamtflaeche
 */

body.single-post {
    background: #F5F7FA !important;
}


/*
 * Nur der eigentliche Elementor-Beitrag.
 */

body.single-post
.elementor[data-elementor-type="wp-post"] {
    --fc-blog-navy: #0B0C1B;
    --fc-blog-blue: #0067B9;
    --fc-blog-cyan: #4FD5FF;

    --fc-blog-bg: #F5F7FA;
    --fc-blog-surface: #FFFFFF;

    --fc-blog-text: #263442;
    --fc-blog-muted: #66717E;
    --fc-blog-border: #DCE3EA;

    padding: 58px 0 88px;

    background:
        linear-gradient(
            180deg,
            #EEF3F7 0,
            #F5F7FA 220px,
            #F5F7FA 100%
        ) !important;

    color: var(--fc-blog-text);

    font-family:
        Inter,
        Roboto,
        Arial,
        sans-serif;
}


/*
 * Alte Elementor-Hintergruende der Artikel neutralisieren.
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
> .e-con.e-parent {
    background: transparent !important;
    background-image: none !important;
}


/*
 * Ruhige Lesebreite.
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
> .e-con.e-parent
> .e-con-inner {
    width: min(
        900px,
        calc(100vw - 48px)
    ) !important;

    max-width: 900px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    padding-left: 0 !important;
    padding-right: 0 !important;
}


/*
 * Bilder
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-image {
    margin-bottom: 28px !important;
}


body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-image img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 900px;

    margin: 0 auto;

    border-radius: 16px;

    box-shadow:
        0 18px 50px rgba(11,12,27,.10);

    object-fit: cover;
}


/*
 * Elementor Ueberschriften.
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-heading {
    margin-bottom: 18px !important;
}


body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-heading
.elementor-heading-title {
    color: #17212B !important;

    -webkit-text-fill-color:
        #17212B !important;

    background: none !important;
    background-image: none !important;

    text-shadow: none !important;

    font-family:
        Inter,
        Roboto,
        Arial,
        sans-serif !important;

    font-weight: 700 !important;

    letter-spacing: -.025em !important;
}


/*
 * Semantische Groessen.
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
h1.elementor-heading-title {
    font-size:
        clamp(40px,5vw,60px) !important;

    line-height: 1.05 !important;
}


body.single-post
.elementor[data-elementor-type="wp-post"]
h2.elementor-heading-title {
    font-size:
        clamp(30px,3.5vw,42px) !important;

    line-height: 1.12 !important;
}


body.single-post
.elementor[data-elementor-type="wp-post"]
h3.elementor-heading-title {
    font-size:
        clamp(23px,2.6vw,30px) !important;

    line-height: 1.18 !important;
}


/*
 * Eigentliche Artikelbox.
 *
 * Die bestehenden Posts haben ihre langen Inhalte
 * typischerweise in einem Elementor Text-Editor.
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor {
    margin-top: 18px !important;
    margin-bottom: 30px !important;

    padding:
        clamp(30px,4vw,48px) !important;

    border:
        1px solid #DCE3EA;

    border-radius: 14px;

    background: #FFFFFF !important;

    box-shadow:
        0 8px 28px rgba(11,12,27,.045);
}


/*
 * Fliesstext.
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor,

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor p,

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor li,

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor td,

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor th {
    color: #33404D !important;

    -webkit-text-fill-color:
        #33404D !important;

    font-size: 16px !important;
    line-height: 1.78 !important;
}


/*
 * Absaetze
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor p {
    margin:
        0 0 20px !important;
}


/*
 * Zwischenueberschriften innerhalb des Editors.
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor h2 {
    margin:
        42px 0 18px !important;

    color: #17212B !important;

    -webkit-text-fill-color:
        #17212B !important;

    font-size:
        clamp(27px,3vw,34px) !important;

    font-weight: 700 !important;
    line-height: 1.2 !important;

    letter-spacing: -.025em !important;
}


body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor h3 {
    margin:
        34px 0 15px !important;

    color: #17212B !important;

    -webkit-text-fill-color:
        #17212B !important;

    font-size:
        clamp(21px,2.4vw,27px) !important;

    font-weight: 700 !important;
    line-height: 1.25 !important;
}


/*
 * Hervorhebungen.
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor strong,

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor b {
    color: #17212B !important;

    -webkit-text-fill-color:
        #17212B !important;

    font-weight: 700;
}


/*
 * Links.
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor a {
    color: #0067B9 !important;

    -webkit-text-fill-color:
        #0067B9 !important;

    font-weight: 600;

    text-decoration:
        underline !important;

    text-decoration-thickness:
        1px !important;

    text-underline-offset:
        3px;
}


body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor a:hover {
    color: #0088E8 !important;

    -webkit-text-fill-color:
        #0088E8 !important;
}


/*
 * Listen.
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor ul,

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor ol {
    margin:
        22px 0 26px !important;

    padding-left:
        24px !important;
}


body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor li {
    margin-bottom:
        8px !important;
}


body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor li::marker {
    color: #0067B9;
}


/*
 * Zitate / hervorgehobene Anforderungen.
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor blockquote {
    margin:
        30px 0 !important;

    padding:
        20px 24px !important;

    border: 0 !important;

    border-left:
        4px solid #4FD5FF !important;

    border-radius:
        0 8px 8px 0;

    background:
        #F3F9FC !important;

    color:
        #33404D !important;
}


body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor blockquote p {
    margin-bottom: 0 !important;

    color:
        #33404D !important;

    font-size:
        15px !important;
}


/*
 * Horizontale Linien.
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor hr {
    margin:
        34px 0 !important;

    border: 0;

    border-top:
        1px solid #DCE3EA;
}


/*
 * Tabellen.
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor table {
    width: 100%;

    margin:
        28px 0 !important;

    border-collapse:
        collapse;

    background:
        #FFFFFF;
}


body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor th,

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor td {
    padding:
        12px 14px !important;

    border:
        1px solid #DCE3EA !important;
}


body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor th {
    background:
        #F3F6F8 !important;

    color:
        #17212B !important;

    font-weight:
        700 !important;
}


/*
 * Eventuelle Bilder innerhalb des Text-Editors.
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor img {
    max-width: 100%;
    height: auto;

    margin:
        20px auto;

    border-radius:
        10px;
}


/*
 * Alte Elementor-Weiss-/Cyan-Farben im Artikel
 * konsequent neutralisieren.
 */

body.single-post
.elementor[data-elementor-type="wp-post"]
.elementor-widget-text-editor
[style*="color"] {
    color:
        #33404D !important;

    -webkit-text-fill-color:
        #33404D !important;
}


/*
 * Floating Termin/Service Actions auf Artikeln weg.
 *
 * Header hat bereits Kontakt,
 * Zammad bleibt separat verfuegbar.
 */

body.single-post
.fc-contact-actions {
    display: none !important;
}


/*
 * Luft zwischen Artikel und Footer V4.
 */

body.single-post
.fc-site-footer {
    margin-top: 0;
}


/*
 * Mobil
 */

@media (max-width: 700px) {

    body.single-post
    .elementor[data-elementor-type="wp-post"] {
        padding:
            34px 0 58px;
    }


    body.single-post
    .elementor[data-elementor-type="wp-post"]
    > .e-con.e-parent
    > .e-con-inner {
        width:
            calc(100vw - 30px) !important;
    }


    body.single-post
    .elementor[data-elementor-type="wp-post"]
    .elementor-widget-image img {
        border-radius:
            10px;
    }


    body.single-post
    .elementor[data-elementor-type="wp-post"]
    .elementor-widget-text-editor {
        padding:
            25px 21px !important;

        border-radius:
            10px;
    }


    body.single-post
    .elementor[data-elementor-type="wp-post"]
    .elementor-widget-text-editor,

    body.single-post
    .elementor[data-elementor-type="wp-post"]
    .elementor-widget-text-editor p,

    body.single-post
    .elementor[data-elementor-type="wp-post"]
    .elementor-widget-text-editor li {
        font-size:
            15px !important;

        line-height:
            1.7 !important;
    }

}


/* =========================================================
   FC SINGLE BLOG REDESIGN V1 END
   ========================================================= */
