/* ========================================================================
   FC UNION ERFURT
   Zentrale Design- und Template-Anpassungen
   Header- und Footer-Stand V1.6: 17.07.2026

   Datei:
   /templates/shaper_helixultimate/css/custom.css

   Design:
   Schwarz:       #111111
   Dunkelgrau:    #1d1d1f
   Vereinsrot:    #e30613
   Dunkelrot:     #b70812
   Weiß:          #ffffff
   Hellgrau:      #f3f3f3
   ======================================================================== */


/* ========================================================================
   01. GRUNDVARIABLEN
   ======================================================================== */

:root {
    --union-schwarz: #111111;
    --union-dunkelgrau: #1d1d1f;
    --union-rot: #e30613;
    --union-dunkelrot: #b70812;
    --union-weiss: #ffffff;
    --union-hellgrau: #f3f3f3;
    --union-grau: #8c8c8c;

    --union-header-breite: 1360px;
    --union-header-hoehe: 92px;
    --union-topbar-hoehe: 36px;
}


/* ========================================================================
   02. ALLGEMEINE GRUNDEINSTELLUNGEN
   ======================================================================== */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    color: #272727;
    background: var(--union-weiss);
    overflow-x: hidden;
}

body.offcanvas-active {
    overflow: hidden;
}

a {
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
}


/* ========================================================================
   03. OBERER INFO- UND SOCIAL-MEDIA-BALKEN
   ======================================================================== */

#sp-top-bar {
    position: relative;
    min-height: var(--union-topbar-hoehe);
    padding: 0;
    color: rgba(255, 255, 255, 0.78);
    background: var(--union-schwarz);
    border-top: 3px solid var(--union-rot);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    line-height: var(--union-topbar-hoehe);
}

#sp-top-bar > .container,
#sp-top-bar > .container-inner {
    max-width: var(--union-header-breite);
}

#sp-top-bar a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

#sp-top-bar a:hover,
#sp-top-bar a:focus {
    color: var(--union-rot);
}

#sp-top-bar .sp-contact-info,
#sp-top-bar .social-icons {
    margin: 0;
}

#sp-top-bar .sp-contact-info li {
    margin: 0 0 0 18px;
    padding: 0;
}

#sp-top-bar .sp-contact-info li:first-child {
    margin-left: 0;
}

#sp-top-bar .social-icons > li {
    margin-left: 14px;
}

#sp-top-bar .social-icons > li > a {
    font-size: 14px;
}

.union-topbar-claim {
    display: inline-flex;
    align-items: center;
    min-height: var(--union-topbar-hoehe);
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.union-topbar-claim::before {
    width: 22px;
    height: 2px;
    margin-right: 10px;
    background: var(--union-rot);
    content: "";
}


/* ========================================================================
   04. HAUPTHEADER
   ======================================================================== */

#sp-header {
    position: relative;
    z-index: 999;
    height: var(--union-header-hoehe);
    background: var(--union-schwarz) !important;
    border-bottom: 3px solid var(--union-rot);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    overflow: visible !important;
}

#sp-header > .container,
#sp-header > .container-inner,
#sp-header .container,
#sp-header .container-inner {
    max-width: var(--union-header-breite);
    overflow: visible !important;
}

#sp-header .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    min-height: var(--union-header-hoehe);
    overflow: visible !important;
}


/* ========================================================================
   05. LOGO
   ======================================================================== */

#sp-logo,
#sp-logo .sp-column,
#sp-header .logo {
    overflow: visible !important;
}

#sp-logo {
    position: relative;
    z-index: 1002;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

#sp-header .logo {
    position: relative;
    display: flex;
    align-items: flex-start;
    height: var(--union-header-hoehe);
    margin: 0;
}

#sp-header .logo a {
    position: relative;
    z-index: 1003;
    display: inline-flex;
    align-items: flex-start;
    height: auto;
    text-decoration: none;
}

#sp-header .logo-image {
    position: relative;
    top: 8px;
    width: auto;
    height: 138px;
    max-width: none;
    max-height: none;
    object-fit: contain;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.35));
    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}

#sp-header .logo a:hover .logo-image {
    transform: translateY(-2px);
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.42));
}

#sp-header .logo-slogan {
    display: none;
}


/* ========================================================================
   06. DESKTOP-NAVIGATION
   ======================================================================== */

@media (min-width: 992px) {

    #sp-menu {
        flex: 1 1 auto;
        width: auto;
        max-width: none;
        min-width: 0;
        padding-left: 48px;
    }

    #sp-menu > .sp-column {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        height: 100%;
        gap: 0;
    }

    #sp-header .sp-megamenu-parent {
        position: relative;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: stretch;
        justify-content: flex-end;
        width: auto;
        height: var(--union-header-hoehe);
        margin: 0;
        padding: 0;
        gap: 0;
        white-space: nowrap;
    }

    #sp-header .sp-megamenu-parent > li {
        position: relative;
        display: flex !important;
        flex: 0 0 auto;
        align-items: stretch;
        float: none;
        width: auto;
        height: var(--union-header-hoehe);
        margin: 0;
    }

    #sp-header .sp-megamenu-parent > li > a,
    #sp-header .sp-megamenu-parent > li > span {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: var(--union-header-hoehe);
        padding: 0 13px;
        color: rgba(255, 255, 255, 0.92) !important;
        font-size: 13px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.015em;
        white-space: nowrap;
        text-decoration: none;
        text-transform: uppercase;
        transition:
            color 0.2s ease,
            background 0.2s ease,
            box-shadow 0.2s ease;
    }

    /* Hover: dezente rote Hinterlegung */
    #sp-header .sp-megamenu-parent > li:hover > a,
    #sp-header .sp-megamenu-parent > li:hover > span {
        color: var(--union-weiss) !important;
        background: linear-gradient(
            180deg,
            rgba(227, 6, 19, 0.24) 0%,
            rgba(183, 8, 18, 0.14) 100%
        ) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.04),
            inset 0 -1px 0 rgba(0, 0, 0, 0.16);
    }

    /* Aktiver Menüpunkt: kräftiger, aber ohne zusätzliche Unterstreichung */
    #sp-header .sp-megamenu-parent > li.active > a,
    #sp-header .sp-megamenu-parent > li.active > span {
        padding-right: 11px;
        padding-left: 11px;
        color: var(--union-weiss) !important;
        background: linear-gradient(
            180deg,
            rgba(183, 8, 18, 0.70) 0%,
            rgba(110, 7, 14, 0.88) 100%
        ) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.07),
            inset 0 -1px 0 rgba(0, 0, 0, 0.24),
            0 0 18px rgba(227, 6, 19, 0.12);
    }

    /* Tastaturfokus */
    #sp-header .sp-megamenu-parent > li > a:focus-visible,
    #sp-header .sp-megamenu-parent > li > span:focus-visible {
        outline: 2px solid var(--union-rot);
        outline-offset: -4px;
    }

    #sp-header .sp-megamenu-parent > li.sp-has-child > a,
    #sp-header .sp-megamenu-parent > li.sp-has-child > span {
        padding-right: 25px;
    }

    #sp-header .sp-megamenu-parent > li.active.sp-has-child > a,
    #sp-header .sp-megamenu-parent > li.active.sp-has-child > span {
        padding-right: 23px;
        padding-left: 11px;
    }


    /*
       Pfeile:
       Helix Ultimate erzeugt den Dropdown-Pfeil bereits selbst.
       Deshalb wird hier kein zusätzlicher Pfeil per ::before/::after erzeugt.
       So erscheint pro Menüpunkt nur noch ein Pfeil.
    */
}


/* ========================================================================
   07. DESKTOP-DROPDOWN
   ======================================================================== */

@media (min-width: 992px) {

    #sp-header .sp-dropdown {
        padding-top: 0;
        margin-top: -2px;
    }

    #sp-header .sp-dropdown .sp-dropdown-inner {
        min-width: 330px;
        padding: 10px;
        background: rgba(17, 17, 17, 0.98) !important;
        border-top: 3px solid var(--union-rot);
        border-radius: 0 0 6px 6px;
        box-shadow:
            0 18px 42px rgba(0, 0, 0, 0.48),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(12px);
    }

    #sp-header .sp-dropdown li {
        margin: 0;
        padding: 0;
    }

    #sp-header .sp-dropdown li > a,
    #sp-header .sp-dropdown li > span {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 46px;
        padding: 12px 18px;
        color: rgba(255, 255, 255, 0.84) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 2px;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.35;
        white-space: normal;
        text-decoration: none;
        text-transform: uppercase;
    }

    #sp-header .sp-dropdown li:last-child > a,
    #sp-header .sp-dropdown li:last-child > span {
        border-bottom: 0;
    }

    #sp-header .sp-dropdown li > a::before,
    #sp-header .sp-dropdown li > span::before {
        position: absolute;
        top: 8px;
        bottom: 8px;
        left: 0;
        width: 3px;
        height: auto;
        background: var(--union-rot);
        content: "";
        opacity: 0;
        transform: scaleY(0.35);
        transition:
            opacity 0.2s ease,
            transform 0.2s ease;
    }

    #sp-header .sp-dropdown li:hover > a,
    #sp-header .sp-dropdown li:hover > span,
    #sp-header .sp-dropdown li.active > a,
    #sp-header .sp-dropdown li.active > span {
        padding-left: 20px;
        color: var(--union-weiss) !important;
        background: linear-gradient(
            90deg,
            rgba(227, 6, 19, 0.16),
            rgba(227, 6, 19, 0.035)
        ) !important;
    }

    #sp-header .sp-dropdown li:hover > a::before,
    #sp-header .sp-dropdown li:hover > span::before,
    #sp-header .sp-dropdown li.active > a::before,
    #sp-header .sp-dropdown li.active > span::before {
        opacity: 1;
        transform: scaleY(1);
    }
}


/* ========================================================================
   08. SUCHE UND HEADER-SYMBOLE
   ======================================================================== */

#sp-header .sp-module {
    margin: 0;
}

@media (min-width: 992px) {

    #sp-header .search,
    #sp-header .mod-search {
        flex: 0 0 185px;
        width: 185px;
        margin-left: 14px;
    }

    #sp-header .search input,
    #sp-header .mod-search input,
    #sp-header input[type="search"] {
        width: 185px;
        height: 40px;
        padding: 0 14px;
        color: var(--union-weiss);
        background: rgba(255, 255, 255, 0.065);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 5px;
        box-shadow: none;
        font-size: 14px;
    }

    #sp-header .search input::placeholder,
    #sp-header .mod-search input::placeholder,
    #sp-header input[type="search"]::placeholder {
        color: rgba(255, 255, 255, 0.55);
    }

    #sp-header .search input:focus,
    #sp-header .mod-search input:focus,
    #sp-header input[type="search"]:focus {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--union-rot);
        box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12);
        outline: none;
    }

    #sp-header .search-icon,
    #sp-header .icon-search,
    #sp-header .sp-menu-item-search a {
        color: var(--union-weiss) !important;
    }

    #sp-header .search-icon:hover,
    #sp-header .icon-search:hover,
    #sp-header .sp-menu-item-search a:hover {
        color: var(--union-rot) !important;
        transform: scale(1.08);
    }
}


/* ========================================================================
   09. BURGER-BUTTON
   ======================================================================== */

#sp-header .offcanvas-toggler {
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: 14px;
    color: var(--union-weiss) !important;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 4px;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

#sp-header .offcanvas-toggler:hover,
#sp-header .offcanvas-toggler:focus {
    color: var(--union-weiss) !important;
    background: var(--union-rot);
    border-color: var(--union-rot);
}

#sp-header .burger-icon > span,
#sp-header .burger-icon > span::before,
#sp-header .burger-icon > span::after,
.burger-icon > span,
.burger-icon > span::before,
.burger-icon > span::after {
    background: var(--union-weiss) !important;
}


/* ========================================================================
   10. STICKY HEADER
   ======================================================================== */

#sp-header.header-sticky,
#sp-header.menu-fixed,
#sp-header.sticky-header {
    height: 78px;
    background: rgba(17, 17, 17, 0.97) !important;
    border-bottom-width: 3px;
    backdrop-filter: blur(12px);
}

#sp-header.header-sticky .row,
#sp-header.menu-fixed .row,
#sp-header.sticky-header .row,
#sp-header.header-sticky .logo,
#sp-header.menu-fixed .logo,
#sp-header.sticky-header .logo,
#sp-header.header-sticky .sp-megamenu-parent,
#sp-header.menu-fixed .sp-megamenu-parent,
#sp-header.sticky-header .sp-megamenu-parent,
#sp-header.header-sticky .sp-megamenu-parent > li,
#sp-header.menu-fixed .sp-megamenu-parent > li,
#sp-header.sticky-header .sp-megamenu-parent > li,
#sp-header.header-sticky .sp-megamenu-parent > li > a,
#sp-header.header-sticky .sp-megamenu-parent > li > span,
#sp-header.menu-fixed .sp-megamenu-parent > li > a,
#sp-header.menu-fixed .sp-megamenu-parent > li > span,
#sp-header.sticky-header .sp-megamenu-parent > li > a,
#sp-header.sticky-header .sp-megamenu-parent > li > span {
    height: 78px;
    min-height: 78px;
}

#sp-header.header-sticky .logo-image,
#sp-header.menu-fixed .logo-image,
#sp-header.sticky-header .logo-image {
    top: 5px;
    height: 112px;
}


/* ========================================================================
   11. OFFCANVAS-MENÜ
   ======================================================================== */

/*
   Wichtig:
   Die geschlossene Position wird ausdrücklich mit translateX(100 %)
   gesetzt. Dadurch bleibt das Menü auch dann vollständig außerhalb des
   Bildschirms, wenn seine Breite responsiv verändert wird.
*/

.offcanvas-menu {
    position: fixed;
    top: 0;
    right: 0 !important;
    left: auto !important;
    width: min(360px, calc(100vw - 22px)) !important;
    max-width: calc(100vw - 22px) !important;
    height: 100vh;
    color: var(--union-weiss);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.018),
            transparent 180px
        ),
        var(--union-schwarz) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -20px 0 55px rgba(0, 0, 0, 0.45);
    overflow-x: hidden !important;
    transform: translateX(100%) !important;
    transition: transform 0.35s ease !important;
}

/* Helix verwendet je nach Version unterschiedliche Body-Klassen */
body.offcanvas-active .offcanvas-menu,
body.offcanvas-opened .offcanvas-menu,
body.offcanvas-menu-open .offcanvas-menu {
    transform: translateX(0) !important;
}

.offcanvas-menu .offcanvas-inner {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 88px 34px 35px;
    overflow-x: hidden;
    overflow-y: auto;
}

.offcanvas-menu .offcanvas-header {
    background: transparent;
    border: 0;
}

.offcanvas-menu .close-offcanvas {
    position: absolute;
    top: 18px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--union-weiss) !important;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 3px;
}

.offcanvas-menu .close-offcanvas:hover,
.offcanvas-menu .close-offcanvas:focus {
    color: var(--union-weiss) !important;
    background: var(--union-rot);
    border-color: var(--union-rot);
}

.offcanvas-menu .menu {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.offcanvas-menu .menu > li {
    position: relative;
    width: 100%;
    margin: 0;
    border: 0;
}

.offcanvas-menu .menu > li > a,
.offcanvas-menu .menu > li > span {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 40px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.035em;
    text-decoration: none;
    text-transform: uppercase;
}

.offcanvas-menu .menu > li:hover > a,
.offcanvas-menu .menu > li:hover > span {
    color: var(--union-weiss) !important;
}

.offcanvas-menu .menu > li.active > a,
.offcanvas-menu .menu > li.active > span {
    color: var(--union-rot) !important;
}


/* Pfeile */

.offcanvas-menu .menu-toggler {
    display: flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    width: 34px;
    min-width: 34px;
    height: 38px;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.82) !important;
}

.offcanvas-menu .menu-toggler:hover,
.offcanvas-menu .menu-toggler:focus {
    color: var(--union-rot) !important;
}


/* Untermenü
   Die rote Linie liegt als Pseudoelement separat neben dem Inhalt.
   Dadurch kann der Text unabhängig davon sauber eingerückt werden.
*/

.offcanvas-menu .menu-child {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    margin: 6px 0 20px;
    padding: 5px 0 5px 0 !important;
    border-left: 0 !important;
    list-style: none;
}

.offcanvas-menu .menu-child::before {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 10px;
    width: 2px;
    background: var(--union-rot);
    content: "";
}

.offcanvas-menu .menu-child > li {
    box-sizing: border-box;
    width: 100%;
    margin: 0 !important;
    padding: 0 0 0 38px !important;
}

.offcanvas-menu .menu-child > li > a,
.offcanvas-menu .menu-child > li > span {
    display: block;
    width: 100%;
    margin: 0 !important;
    padding: 5px 0 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    text-decoration: none;
    text-transform: uppercase;
}

.offcanvas-menu .menu-child > li:hover > a,
.offcanvas-menu .menu-child > li:hover > span,
.offcanvas-menu .menu-child > li.active > a,
.offcanvas-menu .menu-child > li.active > span {
    color: var(--union-weiss) !important;
}


/* Scrollbar */

.offcanvas-menu::-webkit-scrollbar,
.offcanvas-menu .offcanvas-inner::-webkit-scrollbar {
    width: 5px;
}

.offcanvas-menu::-webkit-scrollbar-track,
.offcanvas-menu .offcanvas-inner::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.025);
}

.offcanvas-menu::-webkit-scrollbar-thumb,
.offcanvas-menu .offcanvas-inner::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 10px;
}


/* ========================================================================
   12. RESPONSIVE ANPASSUNGEN
   ======================================================================== */

@media (min-width: 992px) and (max-width: 1199px) {

    :root {
        --union-header-breite: 1180px;
    }

    #sp-header .logo-image {
        height: 122px;
    }

    #sp-menu {
        padding-left: 30px;
    }

    #sp-header .sp-megamenu-parent > li > a,
    #sp-header .sp-megamenu-parent > li > span {
        padding-right: 9px;
        padding-left: 9px;
        font-size: 12px;
    }

    #sp-header .sp-megamenu-parent > li.sp-has-child > a,
    #sp-header .sp-megamenu-parent > li.sp-has-child > span {
        padding-right: 20px;
    }

    #sp-header .search,
    #sp-header .mod-search {
        flex-basis: 150px;
        width: 150px;
        margin-left: 10px;
    }

    #sp-header .search input,
    #sp-header .mod-search input,
    #sp-header input[type="search"] {
        width: 150px;
    }
}


@media (max-width: 991px) {

    :root {
        --union-header-hoehe: 76px;
        --union-topbar-hoehe: 32px;
    }

    #sp-top-bar {
        min-height: var(--union-topbar-hoehe);
        line-height: var(--union-topbar-hoehe);
    }

    #sp-header,
    #sp-header .row,
    #sp-header .logo {
        height: var(--union-header-hoehe);
        min-height: var(--union-header-hoehe);
    }

    #sp-header .logo-image {
        top: 5px;
        height: 92px;
    }

    #sp-menu {
        margin-left: auto;
        padding-left: 0;
    }

    #sp-header .offcanvas-toggler {
        width: 42px;
        height: 42px;
        margin-left: 8px;
    }

    #sp-header.header-sticky,
    #sp-header.menu-fixed,
    #sp-header.sticky-header {
        height: 70px;
    }

    #sp-header.header-sticky .row,
    #sp-header.menu-fixed .row,
    #sp-header.sticky-header .row,
    #sp-header.header-sticky .logo,
    #sp-header.menu-fixed .logo,
    #sp-header.sticky-header .logo {
        height: 70px;
        min-height: 70px;
    }

    #sp-header.header-sticky .logo-image,
    #sp-header.menu-fixed .logo-image,
    #sp-header.sticky-header .logo-image {
        top: 4px;
        height: 84px;
    }

    .offcanvas-menu {
        right: 0 !important;
        left: auto !important;
        transform-origin: right center;
    }

    .offcanvas-menu .offcanvas-inner {
        padding-right: 30px;
        padding-left: 30px;
    }

    .offcanvas-menu .menu-child {
        width: calc(100% - 22px);
        margin-left: 8px;
        padding-left: 26px;
    }
}


@media (max-width: 767px) {

    #sp-top-bar {
        display: none;
    }

    :root {
        --union-header-hoehe: 72px;
    }

    #sp-header {
        border-bottom-width: 3px;
    }

    #sp-header,
    #sp-header .row,
    #sp-header .logo {
        height: var(--union-header-hoehe);
        min-height: var(--union-header-hoehe);
    }

    #sp-header .logo-image {
        top: 4px;
        height: 80px;
    }

    .offcanvas-menu {
        width: min(340px, calc(100vw - 18px)) !important;
        max-width: calc(100vw - 18px) !important;
    }

    .offcanvas-menu .offcanvas-inner {
        padding: 82px 26px 30px;
    }

    .offcanvas-menu .menu > li > a,
    .offcanvas-menu .menu > li > span {
        font-size: 16px;
    }

    .offcanvas-menu .menu-child {
        width: calc(100% - 18px);
        margin: 6px 0 18px 8px;
        padding: 5px 0 5px 24px;
    }
}


@media (max-width: 480px) {

    #sp-header .logo-image {
        height: 74px;
    }

    #sp-header .offcanvas-toggler {
        width: 40px;
        height: 40px;
    }

    .offcanvas-menu {
        width: calc(100vw - 14px) !important;
        max-width: calc(100vw - 14px) !important;
    }

    .offcanvas-menu .offcanvas-inner {
        padding-right: 22px;
        padding-left: 22px;
    }

    .offcanvas-menu .menu-child {
        width: calc(100% - 14px);
        margin-left: 6px;
        padding-left: 22px;
    }
}

/* ========================================================================
   13. BARRIEREFREIHEIT: REDUZIERTE BEWEGUNG
   ======================================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ========================================================================
   14. FOOTER UND SPONSORENBEREICH
   ======================================================================== */

/*
   Aufbau im Helix-Layout:
   footer1 = Sponsoren-Einleitung + Client Logo Slider
   footer2 = Footer-Menü + Helix-Copyright

   Die sichtbare Trennlinie zwischen beiden Bereichen stammt aus dem
   Helix-Template. In der custom.css wird keine zweite Linie ergänzt.
*/


/* ------------------------------------------------------------------------
   Gemeinsame Footer-Grundlagen
   ------------------------------------------------------------------------ */

#sp-footer1,
#sp-footer2 {
    color: var(--union-weiss);
    background: #151515;
}

#sp-footer1 > .container,
#sp-footer1 > .container-inner,
#sp-footer2 > .container,
#sp-footer2 > .container-inner {
    max-width: var(--union-header-breite);
}


/* ------------------------------------------------------------------------
   Sponsorenbereich / footer1
   ------------------------------------------------------------------------ */

#sp-footer1 {
    position: relative;
    padding: 34px 0 12px;
    background: #151515;
    border-top: 3px solid var(--union-rot);
    border-bottom: 0;
    box-shadow: none;
}

#sp-footer1::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 130px;
    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(227, 6, 19, 0.075),
            transparent 58%
        );
    content: "";
    pointer-events: none;
}

#sp-footer1 .sp-column {
    position: relative;
    z-index: 1;
}

#sp-footer1 .sp-module,
#sp-footer1 [class*="union-sponsor-slider"] {
    border-bottom: 0;
    box-shadow: none;
}


/* Sponsoren-Einleitung */

.union-sponsor-intro {
    max-width: 760px;
    margin: 0 0 18px;
}

.union-sponsor-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 8px;
    color: var(--union-rot);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.union-sponsor-intro__eyebrow::before {
    width: 28px;
    height: 2px;
    margin-right: 11px;
    background: var(--union-rot);
    content: "";
}

.union-sponsor-intro__title {
    max-width: 700px;
    margin: 0 0 10px;
    color: var(--union-weiss);
    font-size: clamp(28px, 2.4vw, 36px);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.union-sponsor-intro__text {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
}


/* Client Logo Slider */

#sp-footer1 [class*="union-sponsor-slider"] {
    position: relative;
    margin-top: 0;
    padding: 0 0 10px;
    overflow: hidden;
}

#sp-footer1 [class*="union-sponsor-slider"]::before,
#sp-footer1 [class*="union-sponsor-slider"]::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 5;
    width: 58px;
    content: "";
    pointer-events: none;
}

#sp-footer1 [class*="union-sponsor-slider"]::before {
    left: 0;
    background: linear-gradient(
        90deg,
        #151515 0%,
        rgba(21, 21, 21, 0) 100%
    );
}

#sp-footer1 [class*="union-sponsor-slider"]::after {
    right: 0;
    background: linear-gradient(
        270deg,
        #151515 0%,
        rgba(21, 21, 21, 0) 100%
    );
}

#sp-footer1 [class*="union-sponsor-slider"] li,
#sp-footer1 [class*="union-sponsor-slider"] .slide,
#sp-footer1 [class*="union-sponsor-slider"] .item {
    display: flex;
    align-items: center;
    justify-content: center;
}

#sp-footer1 [class*="union-sponsor-slider"] img {
    max-height: 96px;
    object-fit: contain;
    transition:
        filter 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

#sp-footer1 [class*="union-sponsor-slider"] a:hover img,
#sp-footer1 [class*="union-sponsor-slider"] a:focus img {
    transform: translateY(-3px) scale(1.025);
}

#sp-footer1 [class*="union-sponsor-slider"] a:focus-visible {
    outline: 2px solid var(--union-rot);
    outline-offset: 4px;
}


/* ------------------------------------------------------------------------
   Unterer Footer / footer2
   ------------------------------------------------------------------------ */

#sp-footer2 {
    padding: 0 0 20px;
    background: #151515;
    border-top: 0;
    box-shadow: none;
}

#sp-footer2 .sp-column {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 28px;
    padding-top: 16px;
    border-top: 0;
}


/* Footer-Menü */

#sp-footer2 .sp-module {
    margin: 0;
}

#sp-footer2 ul.menu,
#sp-footer2 .menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#sp-footer2 ul.menu > li,
#sp-footer2 .menu > li {
    position: relative;
    margin: 0;
    padding: 0;
}

#sp-footer2 ul.menu > li:not(:last-child)::after,
#sp-footer2 .menu > li:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -13px;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
}

#sp-footer2 ul.menu a,
#sp-footer2 .menu a {
    position: relative;
    display: inline-block;
    padding: 3px 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

#sp-footer2 ul.menu a::after,
#sp-footer2 .menu a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--union-rot);
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
}

#sp-footer2 ul.menu a:hover,
#sp-footer2 ul.menu a:focus,
#sp-footer2 .menu a:hover,
#sp-footer2 .menu a:focus {
    color: var(--union-weiss);
}

#sp-footer2 ul.menu a:hover::after,
#sp-footer2 ul.menu a:focus::after,
#sp-footer2 .menu a:hover::after,
#sp-footer2 .menu a:focus::after {
    transform: scaleX(1);
}


/* Copyright und 4cleverminds */

#sp-footer2 .copyright,
#sp-footer2 .sp-copyright,
#sp-footer2 [class*="copyright"] {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0 5px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.5;
    text-align: right;
}

#sp-footer2 .union-copyright-separator {
    color: rgba(255, 255, 255, 0.28);
}

#sp-footer2 .copyright a,
#sp-footer2 .sp-copyright a,
#sp-footer2 [class*="copyright"] a {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    text-decoration: none;
}

#sp-footer2 .copyright a::after,
#sp-footer2 .sp-copyright a::after,
#sp-footer2 [class*="copyright"] a::after {
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 1px;
    background: var(--union-rot);
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
}

#sp-footer2 .copyright a:hover,
#sp-footer2 .copyright a:focus,
#sp-footer2 .sp-copyright a:hover,
#sp-footer2 .sp-copyright a:focus,
#sp-footer2 [class*="copyright"] a:hover,
#sp-footer2 [class*="copyright"] a:focus {
    color: var(--union-weiss);
}

#sp-footer2 .copyright a:hover::after,
#sp-footer2 .copyright a:focus::after,
#sp-footer2 .sp-copyright a:hover::after,
#sp-footer2 .sp-copyright a:focus::after,
#sp-footer2 [class*="copyright"] a:hover::after,
#sp-footer2 [class*="copyright"] a:focus::after {
    transform: scaleX(1);
}


/* ------------------------------------------------------------------------
   Responsive Footer
   ------------------------------------------------------------------------ */

@media (max-width: 991px) {

    #sp-footer1 {
        padding-top: 30px;
    }

    .union-sponsor-intro {
        max-width: 720px;
    }

    #sp-footer1 [class*="union-sponsor-slider"]::before,
    #sp-footer1 [class*="union-sponsor-slider"]::after {
        width: 34px;
    }

    #sp-footer2 .sp-column {
        align-items: flex-start;
        flex-direction: column;
    }

    #sp-footer2 .copyright,
    #sp-footer2 .sp-copyright,
    #sp-footer2 [class*="copyright"] {
        justify-content: flex-start;
        text-align: left;
    }
}


@media (max-width: 767px) {

    #sp-footer1 {
        padding: 28px 0 10px;
    }

    .union-sponsor-intro {
        margin-bottom: 16px;
    }

    .union-sponsor-intro__title {
        font-size: clamp(27px, 8vw, 34px);
    }

    .union-sponsor-intro__text {
        font-size: 14px;
        line-height: 1.6;
    }

    #sp-footer1 [class*="union-sponsor-slider"] {
        padding-bottom: 8px;
    }

    #sp-footer1 [class*="union-sponsor-slider"]::before,
    #sp-footer1 [class*="union-sponsor-slider"]::after {
        width: 20px;
    }

    #sp-footer1 [class*="union-sponsor-slider"] img {
        max-height: 92px;
    }

    #sp-footer2 {
        padding-bottom: 18px;
    }

    #sp-footer2 .sp-column {
        gap: 10px;
        padding-top: 14px;
    }

    #sp-footer2 ul.menu,
    #sp-footer2 .menu {
        gap: 7px 18px;
    }

    #sp-footer2 ul.menu > li:not(:last-child)::after,
    #sp-footer2 .menu > li:not(:last-child)::after {
        right: -10px;
    }
}


@media (max-width: 480px) {

    .union-sponsor-intro__eyebrow {
        font-size: 10px;
        letter-spacing: 0.13em;
    }

    .union-sponsor-intro__eyebrow::before {
        width: 20px;
        margin-right: 8px;
    }

    #sp-footer2 ul.menu,
    #sp-footer2 .menu {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    #sp-footer2 ul.menu > li::after,
    #sp-footer2 .menu > li::after {
        display: none;
    }
}

/* ========================================================================
   15. STARTSEITE – AKTUELLE VEREINSNEWS
   SP Page Builder Articles / Editorial
   CSS-Klasse am Articles-Addon: fcu-home-news
   ======================================================================== */


/* ------------------------------------------------------------------------
   Grundaufbau
   ------------------------------------------------------------------------ */

.fcu-home-news,
.fcu-home-news .sppb-addon-content {
    width: 100%;
}

.fcu-home-news .sppb-addon-article-layout-editorial-row {
    width: 100%;
    margin: 0 0 18px !important;
    padding: 0 !important;
}

.fcu-home-news .sppb-addon-article-layout-editorial-row:last-child {
    margin-bottom: 0 !important;
}


/* ------------------------------------------------------------------------
   Kartenrahmen
   ------------------------------------------------------------------------ */

.fcu-home-news .sppb-addon-article-layout-editorial-wrapper {
    display: block !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--union-weiss);
    border: 1px solid rgba(17, 17, 17, 0.11);
    border-radius: 10px;
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.055);
    overflow: hidden;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.fcu-home-news .sppb-addon-article-layout-editorial-wrapper:hover {
    border-color: rgba(227, 6, 19, 0.30);
    box-shadow: 0 13px 30px rgba(0, 0, 0, 0.10);
    transform: translateY(-3px);
}


/* ------------------------------------------------------------------------
   Aufteilung: Bild links, Text rechts
   ------------------------------------------------------------------------ */

.fcu-home-news .sppb-addon-article-layout-editorial-content {
    display: grid !important;
    grid-template-columns: minmax(250px, 38%) minmax(0, 62%);
    align-items: stretch;
    width: 100%;
    min-height: 210px;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}


/* ------------------------------------------------------------------------
   Bildbereich
   ------------------------------------------------------------------------ */

.fcu-home-news .sppb-article-img-wrap {
    display: block !important;
    width: 100%;
    height: 100%;
    min-height: 210px;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

.fcu-home-news .sppb-article-img-wrap > a {
    display: block;
    width: 100%;
    height: 100%;
}

.fcu-home-news .sppb-article-img-wrap img,
.fcu-home-news img.sppb-img-responsive {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 210px;
    margin: 0 !important;
    object-fit: cover;
    object-position: 42% center;
    transition: transform 0.45s ease;
}

.fcu-home-news
.sppb-addon-article-layout-editorial-wrapper:hover
.sppb-article-img-wrap img {
    transform: scale(1.05);
}


/* ------------------------------------------------------------------------
   Textbereich
   ------------------------------------------------------------------------ */

.fcu-home-news .sppb-article-info-wrap {
    position: relative;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 210px;
    margin: 0 !important;
    padding: 23px 28px !important;
    background: var(--union-weiss) !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    transform: none !important;
}


/* Roter Akzent */

.fcu-home-news .sppb-article-info-wrap::before {
    position: absolute;
    top: 0;
    left: 28px;
    width: 58px;
    height: 3px;
    background: var(--union-rot);
    content: "";
}


/* ------------------------------------------------------------------------
   Titel
   ------------------------------------------------------------------------ */

.fcu-home-news .sppb-article-info-wrap h3 {
    order: 2;
    margin: 0 0 10px !important;
    color: var(--union-dunkelgrau);
    font-size: clamp(18px, 1.35vw, 22px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.015em;
    text-transform: none;
}

.fcu-home-news .sppb-article-info-wrap h3 a {
    color: inherit !important;
    text-decoration: none;
}

.fcu-home-news .sppb-article-info-wrap h3 a:hover,
.fcu-home-news .sppb-article-info-wrap h3 a:focus {
    color: var(--union-rot) !important;
}


/* ------------------------------------------------------------------------
   Datum
   ------------------------------------------------------------------------ */

.fcu-home-news .sppb-article-meta {
    order: 1;
    display: block !important;
    margin: 0 0 9px !important;
    color: #6d6d6d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.025em;
}

.fcu-home-news .sppb-meta-date,
.fcu-home-news .sppb-meta-date time {
    color: inherit;
}

.fcu-home-news .sppb-meta-author,
.fcu-home-news .sppb-meta-category,
.fcu-home-news .sppb-meta-tags {
    display: none !important;
}


/* ------------------------------------------------------------------------
   Einleitungstext
   ------------------------------------------------------------------------ */

.fcu-home-news .sppb-article-introtext {
    order: 3;
    display: block !important;
    margin: 0 !important;
    color: #474747;
    font-size: 15px;
    line-height: 1.52;
}

.fcu-home-news .sppb-article-introtext p {
    margin: 0 !important;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}


/* ------------------------------------------------------------------------
   Weiterlesen
   ------------------------------------------------------------------------ */

.fcu-home-news .sppb-readmore {
    order: 4;
    display: inline-flex !important;
    align-items: center;
    align-self: flex-start;
    margin-top: 13px !important;
    color: var(--union-rot) !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.fcu-home-news .sppb-readmore:hover,
.fcu-home-news .sppb-readmore:focus {
    color: var(--union-dunkelrot) !important;
    transform: translateX(4px);
}


/* ------------------------------------------------------------------------
   Tastaturfokus
   ------------------------------------------------------------------------ */

.fcu-home-news a:focus-visible {
    outline: 2px solid var(--union-rot);
    outline-offset: 3px;
}


/* ========================================================================
   TABLET
   ======================================================================== */

@media (max-width: 991px) {

    .fcu-home-news .sppb-addon-article-layout-editorial-content {
        grid-template-columns: minmax(210px, 38%) minmax(0, 62%);
        min-height: 195px;
    }

    .fcu-home-news .sppb-article-img-wrap,
    .fcu-home-news .sppb-article-img-wrap img,
    .fcu-home-news img.sppb-img-responsive,
    .fcu-home-news .sppb-article-info-wrap {
        min-height: 195px;
    }

    .fcu-home-news .sppb-article-info-wrap {
        padding: 22px 23px !important;
    }

    .fcu-home-news .sppb-article-info-wrap::before {
        left: 23px;
        width: 52px;
    }

    .fcu-home-news .sppb-article-info-wrap h3 {
        font-size: 20px;
    }
}


/* ========================================================================
   SMARTPHONE
   ======================================================================== */

@media (max-width: 767px) {

    .fcu-home-news .sppb-addon-article-layout-editorial-row {
        margin-bottom: 20px !important;
    }

    .fcu-home-news .sppb-addon-article-layout-editorial-wrapper {
        border-radius: 8px;
    }

    .fcu-home-news .sppb-addon-article-layout-editorial-content {
        display: block !important;
        min-height: 0;
    }

    .fcu-home-news .sppb-article-img-wrap,
    .fcu-home-news .sppb-article-img-wrap > a,
    .fcu-home-news .sppb-article-img-wrap img,
    .fcu-home-news img.sppb-img-responsive {
        display: block !important;
        width: 100% !important;
        height: 180px !important;
        min-height: 180px;
    }

    .fcu-home-news .sppb-article-info-wrap {
        display: flex !important;
        width: 100%;
        min-height: 0;
        padding: 22px 20px 23px !important;
    }

    .fcu-home-news .sppb-article-info-wrap::before {
        left: 20px;
        width: 46px;
    }

    .fcu-home-news .sppb-article-info-wrap h3 {
        font-size: 20px;
        line-height: 1.27;
    }

    .fcu-home-news .sppb-article-introtext {
        font-size: 15px;
        line-height: 1.55;
    }
}


/* ========================================================================
   KLEINE SMARTPHONES
   ======================================================================== */

@media (max-width: 480px) {

    .fcu-home-news .sppb-article-img-wrap,
    .fcu-home-news .sppb-article-img-wrap > a,
    .fcu-home-news .sppb-article-img-wrap img,
    .fcu-home-news img.sppb-img-responsive {
        height: 155px !important;
        min-height: 155px;
    }

    .fcu-home-news .sppb-article-info-wrap {
        padding: 20px 17px 21px !important;
    }

    .fcu-home-news .sppb-article-info-wrap::before {
        left: 17px;
        width: 42px;
    }

    .fcu-home-news .sppb-article-info-wrap h3 {
        font-size: 19px;
    }

    .fcu-home-news .sppb-readmore {
        font-size: 12px;
    }
}

/* ========================================================================
   16. STARTSEITE – FUSSBALL.DE WIDGET
   Ohne zusätzlichen Textblock „Aktuelle Spiele“
   CSS-Klasse am Raw-HTML-Addon:
   fcu-home-matches
   ======================================================================== */


/* ------------------------------------------------------------------------
   Widget-Karte
   ------------------------------------------------------------------------ */

.fcu-home-matches {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;

    background: var(--union-weiss);
    border: 1px solid rgba(17, 17, 17, 0.11);
    border-radius: 10px;
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.055);

    overflow: hidden;

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


/* ------------------------------------------------------------------------
   Kurzer roter Vereinsakzent
   ------------------------------------------------------------------------ */

.fcu-home-matches::before {
    position: absolute;
    top: 0;
    left: 24px;
    z-index: 10;

    width: 72px;
    height: 3px;

    background: var(--union-rot);
    border-radius: 0 0 3px 3px;

    content: "";
    pointer-events: none;
}


/* ------------------------------------------------------------------------
   Hover-Effekt
   ------------------------------------------------------------------------ */

.fcu-home-matches:hover {
    border-color: rgba(227, 6, 19, 0.28);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}


/* ------------------------------------------------------------------------
   Originales FUSSBALL.DE-Widget
   ------------------------------------------------------------------------ */

.fcu-home-matches .fussballde_widget,
.fcu-home-matches iframe {
    display: block;
    width: 100% !important;
    max-width: 100% !important;

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

    border: 0 !important;
}


/* ------------------------------------------------------------------------
   Tastaturfokus
   ------------------------------------------------------------------------ */

.fcu-home-matches:focus-within {
    border-color: var(--union-rot);
    box-shadow:
        0 0 0 3px rgba(227, 6, 19, 0.12),
        0 10px 26px rgba(0, 0, 0, 0.08);
}


/* ========================================================================
   TABLET
   ======================================================================== */

@media (max-width: 991px) {
.fcu-home-matches {
        border-radius: 10px;
    }

    .fcu-home-matches::before {
        left: 22px;
        width: 64px;
    }
}


/* ========================================================================
   SMARTPHONE
   ======================================================================== */

@media (max-width: 767px) {
.fcu-home-matches {
        border-radius: 8px;
    }

    .fcu-home-matches::before {
        left: 20px;
        width: 56px;
        height: 3px;
    }
}


/* ========================================================================
   KLEINE SMARTPHONES
   ======================================================================== */

@media (max-width: 480px) {
.fcu-home-matches {
        border-radius: 7px;
    }

    .fcu-home-matches::before {
        left: 17px;
        width: 48px;
    }
}


/* ========================================================================
   17. STARTSEITE – EINSTIEG AKTUELLES
   CSS-Klasse am Textblock:
   union-laufend-header
   ======================================================================== */

.union-laufend-header {
    position: relative;
    padding-top: 16px;
}

.union-laufend-header::before {
    position: absolute;
    top: 0;
    left: 0;

    width: 58px;
    height: 3px;

    background: var(--union-rot);
    border-radius: 2px;

    content: "";
}

/* Kleiner Einleitungstext */

.union-laufend-header p:first-child,
.union-laufend-header .sppb-addon-text {
    margin: 0 0 6px;

    color: #777;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .03em;
}

/* Hauptüberschrift */

.union-laufend-header h1,
.union-laufend-header h2,
.union-laufend-header h3 {
    margin: 0 0 10px;

    color: var(--union-dunkelgrau);
    font-weight: 700;
    line-height: 1.15;
}

/* Beschreibung */

.union-laufend-header p:last-child {
    margin: 0;

    color: #555;
    font-size: 16px;
    line-height: 1.55;
}


/* ========================================================================
   TABLET
   ======================================================================== */

@media (max-width:991px){

    .union-laufend-header{
        padding-top:15px;
    }

    .union-laufend-header::before{
        width:52px;
    }

}


/* ========================================================================
   SMARTPHONE
   ======================================================================== */

@media (max-width:767px){

    .union-laufend-header{

        padding-top:14px;

    }

    .union-laufend-header::before{

        width:46px;

    }

    .union-laufend-header p:first-child{

        font-size:12px;

    }

    .union-laufend-header p:last-child{

        font-size:15px;

    }

}

/* ==========================================================================
   FC UNION ERFURT
   KONTAKTBEREICH – FINAL V6
   CSS-Klassen:
   linke Textbox = fc-contact-card
   Joomla-Modul  = fc-contact-form
   ========================================================================== */


/* ==========================================================================
   KONTAKTKARTE LINKS
   ========================================================================== */

.fc-contact-card {
    position: relative;
    height: auto;
    padding: 38px 34px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(227, 6, 19, 0.16),
            transparent 42%
        ),
        linear-gradient(
            160deg,
            #202020 0%,
            #111111 68%,
            #0b0b0b 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.fc-contact-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--union-rot),
        var(--union-dunkelrot)
    );
    content: "";
}

.fc-contact-card::after {
    position: absolute;
    top: -65px;
    right: -65px;
    width: 170px;
    height: 170px;
    background: rgba(227, 6, 19, 0.08);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fc-contact-card h1,
.fc-contact-card h2,
.fc-contact-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(23px, 1.8vw, 27px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.fc-contact-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.6;
}

.fc-contact-card a {
    color: #ffffff;
    text-decoration: none;
}

.fc-contact-card a:hover,
.fc-contact-card a:focus {
    color: var(--union-rot);
}


/* ==========================================================================
   KONTAKTEINTRÄGE
   ========================================================================== */

.fc-contact-item {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
    column-gap: 14px;
    margin: 0 0 24px;
}

.fc-contact-item:first-of-type {
    margin-top: 0;
}

.fc-contact-item:last-of-type {
    margin-bottom: 0;
}

.fc-contact-item > div {
    min-width: 0;
    margin: 0;
    padding: 0;
    color: #d8d8d8;
    font-size: 14px;
    line-height: 1.55;
}

.fc-contact-item > div > div {
    margin: 0;
    padding: 0;
    color: #d8d8d8;
    line-height: 1.55;
}

.fc-contact-item strong {
    display: block;
    margin: 0 0 2px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}


/* ==========================================================================
   PREMIUM-ICONS
   ========================================================================== */

.fc-icon {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 30% 24%,
            #ff5d68 0%,
            #e30613 45%,
            #8b000b 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    box-shadow:
        0 14px 30px rgba(227, 6, 19, 0.45),
        inset 0 2px 3px rgba(255, 255, 255, 0.35),
        inset 0 -8px 14px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.fc-icon::before {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.fc-icon::after {
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    content: "";
}

.fc-contact-item:nth-of-type(1) .fc-icon::before {
    content: "\f3c5";
}

.fc-contact-item:nth-of-type(2) .fc-icon::before {
    content: "\f095";
}

.fc-contact-item:nth-of-type(3) .fc-icon::before {
    content: "\f0e0";
}

.fc-contact-item:hover .fc-icon {
    transform: translateY(-3px) scale(1.06);
    box-shadow:
        0 20px 38px rgba(227, 6, 19, 0.55),
        inset 0 2px 4px rgba(255, 255, 255, 0.35),
        inset 0 -10px 18px rgba(0, 0, 0, 0.30);
}

.fc-icon > i,
.fc-icon > svg,
.fc-icon > img,
.fc-icon > .fa,
.fc-icon > .fas,
.fc-icon > .far,
.fc-icon > .fab {
    display: none !important;
}

.fc-contact-info {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.64);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 13px;
    line-height: 1.6;
}


/* ==========================================================================
   FORMULARKARTE RECHTS
   ========================================================================== */

.fc-contact-form {
    position: relative;
    padding: 42px 40px;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.07);
    border-radius: 12px;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
    overflow: hidden;
}

.fc-contact-form::before {
    position: absolute;
    top: 0;
    left: 40px;
    width: 66px;
    height: 4px;
    background: var(--union-rot);
    border-radius: 0 0 3px 3px;
    content: "";
}

.fc-contact-form .convertforms,
.fc-contact-form form {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

.fc-contact-form .cf-control-group {
    margin-bottom: 20px;
}

.fc-contact-form label {
    display: block;
    margin: 0 0 7px;
    color: #252525;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.4;
}


/* Eingabefelder */

.fc-contact-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.fc-contact-form select,
.fc-contact-form textarea {
    box-sizing: border-box;
    width: 100%;
    height: 52px;
    margin: 0;
    padding: 0 16px;
    color: #242424;
    background: #fbfbfb;
    border: 1px solid #d8d8d8;
    border-radius: 7px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.018);
    font-size: 14px;
    line-height: 1.4;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.fc-contact-form textarea {
    min-height: 175px;
    padding: 15px 16px;
    resize: vertical;
}

.fc-contact-form input::placeholder,
.fc-contact-form textarea::placeholder {
    color: #9a9a9a;
    opacity: 1;
}

.fc-contact-form input:not([type="checkbox"]):not([type="radio"]):hover,
.fc-contact-form select:hover,
.fc-contact-form textarea:hover {
    background: #ffffff;
    border-color: #bdbdbd;
}

.fc-contact-form input:not([type="checkbox"]):not([type="radio"]):focus,
.fc-contact-form select:focus,
.fc-contact-form textarea:focus {
    background: #ffffff;
    border-color: var(--union-rot);
    box-shadow:
        0 0 0 4px rgba(227, 6, 19, 0.09),
        0 7px 18px rgba(0, 0, 0, 0.045);
    outline: none;
}


/* Upload */

.fc-contact-form .cfupload,
.fc-contact-form .cf-upload-area,
.fc-contact-form [class*="upload"] [class*="drop"] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 155px;
    padding: 24px;
    color: #676767;
    background: linear-gradient(180deg, #fdfdfd, #f8f8f8);
    border: 2px dashed #d1d1d1;
    border-radius: 9px;
    text-align: center;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.fc-contact-form .cfupload:hover,
.fc-contact-form .cf-upload-area:hover,
.fc-contact-form [class*="upload"] [class*="drop"]:hover {
    color: #252525;
    background: #fff8f8;
    border-color: var(--union-rot);
    box-shadow: 0 8px 22px rgba(227, 6, 19, 0.07);
}

.fc-contact-form .cfupload svg,
.fc-contact-form .cf-upload-area svg {
    color: var(--union-rot);
    fill: currentColor;
    filter: drop-shadow(0 5px 8px rgba(227, 6, 19, 0.16));
}


/* Datenschutz */

.fc-contact-form .cf-control-group:has(input[type="checkbox"]) {
    padding: 15px 16px;
    background: #f8f8f8;
    border: 1px solid #eeeeee;
    border-radius: 8px;
}

.fc-contact-form input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin: 2px 9px 0 0;
    accent-color: var(--union-rot);
    cursor: pointer;
}

.fc-contact-form a {
    color: var(--union-rot);
    font-weight: 700;
    text-decoration: none;
}

.fc-contact-form a:hover,
.fc-contact-form a:focus {
    color: var(--union-dunkelrot);
    text-decoration: underline;
}


/* Captcha */

.fc-contact-form .cf-field-captcha {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    color: #222222;
    font-size: 18px;
    font-weight: 750;
}


/* Button */

.fc-contact-form button,
.fc-contact-form input[type="submit"],
.fc-contact-form .cf-btn {
    position: relative;
    width: 100%;
    min-height: 56px;
    padding: 0 22px;
    color: #ffffff;
    background: linear-gradient(
        100deg,
        #ad0010 0%,
        #e30613 52%,
        #c40011 100%
    );
    border: 0;
    border-radius: 8px;
    box-shadow:
        0 11px 25px rgba(227, 6, 19, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.fc-contact-form button:hover,
.fc-contact-form input[type="submit"]:hover,
.fc-contact-form .cf-btn:hover {
    box-shadow:
        0 16px 32px rgba(227, 6, 19, 0.31),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);
    transform: translateY(-2px);
}


/* Meldungen */

.fc-contact-form .cf-error,
.fc-contact-form .cf-response-error {
    color: var(--union-rot);
    font-size: 13px;
    font-weight: 700;
}

.fc-contact-form .cf-response-success {
    padding: 16px 18px;
    color: #175f30;
    background: #f1fff5;
    border: 1px solid #bfe9ca;
    border-left: 4px solid #2c9c4b;
    border-radius: 7px;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {

    .fc-contact-card {
        margin-bottom: 30px;
        padding: 34px 30px;
    }

    .fc-contact-form {
        padding: 34px 30px;
    }

    .fc-contact-form::before {
        left: 30px;
    }

    .fc-contact-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
    .fc-contact-form select,
    .fc-contact-form textarea {
        font-size: 16px;
    }
}

@media (max-width: 767px) {

    .fc-contact-card,
    .fc-contact-form {
        border-radius: 9px;
    }

    .fc-contact-card {
        padding: 30px 24px;
    }

    .fc-contact-card h1,
    .fc-contact-card h2,
    .fc-contact-card h3 {
        margin-bottom: 12px;
        font-size: 24px;
    }

    .fc-contact-item {
        grid-template-columns: 50px minmax(0, 1fr);
        column-gap: 12px;
        margin-bottom: 22px;
    }

    .fc-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .fc-contact-form {
        padding: 31px 22px 25px;
    }

    .fc-contact-form::before {
        left: 22px;
        width: 54px;
    }

    .fc-contact-form textarea {
        min-height: 155px;
    }

    .fc-contact-form .cf-field-captcha {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 480px) {

    .fc-contact-card {
        padding: 27px 20px;
    }

    .fc-contact-form {
        padding: 29px 18px 22px;
    }

    .fc-contact-form::before {
        left: 18px;
        width: 48px;
    }
}

/* ==========================================================================
   FC UNION ERFURT
   SCHIEDSRICHTER – VORTEILSKARTEN
   3 Karten oben / 2 breite Karten unten
   HTML-Klasse: fcu-referee-benefits
   ========================================================================== */


/* ==========================================================================
   GRID
   ========================================================================== */

.fcu-referee-benefits {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    margin: 28px 0 32px;
}


/* Obere Reihe: jeweils 2 von 6 Spalten */

.fcu-referee-benefit:nth-child(1),
.fcu-referee-benefit:nth-child(2),
.fcu-referee-benefit:nth-child(3) {
    grid-column: span 2;
}


/* Untere Reihe: jeweils 3 von 6 Spalten */

.fcu-referee-benefit--wide-left,
.fcu-referee-benefit--wide-right {
    grid-column: span 3;
}


/* ==========================================================================
   KARTE
   ========================================================================== */

.fcu-referee-benefit {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    min-height: 185px;
    padding: 29px 27px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(227, 6, 19, 0.075),
            transparent 43%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fdfdfd 100%
        );
    border: 1px solid rgba(17, 17, 17, 0.10);
    border-radius: 10px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.055);
    overflow: hidden;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.fcu-referee-benefit::before {
    position: absolute;
    top: 0;
    left: 27px;
    width: 58px;
    height: 3px;
    background: var(--union-rot);
    border-radius: 0 0 3px 3px;
    content: "";
}

.fcu-referee-benefit:hover {
    border-color: rgba(227, 6, 19, 0.30);
    box-shadow:
        0 15px 34px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}


/* ==========================================================================
   ICON
   ========================================================================== */

.fcu-referee-benefit__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    min-width: 58px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 30% 24%,
            #ff5965 0%,
            #e30613 45%,
            #93000b 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    box-shadow:
        0 11px 24px rgba(227, 6, 19, 0.30),
        inset 0 2px 3px rgba(255, 255, 255, 0.30),
        inset 0 -7px 13px rgba(0, 0, 0, 0.24);
    font-size: 21px;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.fcu-referee-benefit__icon::after {
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    content: "";
}

.fcu-referee-benefit__icon i {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.fcu-referee-benefit:hover .fcu-referee-benefit__icon {
    box-shadow:
        0 16px 30px rgba(227, 6, 19, 0.40),
        inset 0 2px 3px rgba(255, 255, 255, 0.32),
        inset 0 -8px 15px rgba(0, 0, 0, 0.26);
    transform: translateY(-2px) scale(1.06);
}


/* ==========================================================================
   TEXT
   ========================================================================== */

.fcu-referee-benefit__content {
    min-width: 0;
}

.fcu-referee-benefit__content h3 {
    margin: 2px 0 9px;
    color: var(--union-dunkelgrau);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.fcu-referee-benefit__content p {
    margin: 0;
    color: #555555;
    font-size: 14px;
    line-height: 1.62;
}


/* ==========================================================================
   FOKUS
   ========================================================================== */

.fcu-referee-benefit:focus-within {
    border-color: var(--union-rot);
    box-shadow:
        0 0 0 3px rgba(227, 6, 19, 0.10),
        0 15px 34px rgba(0, 0, 0, 0.09);
}


/* ==========================================================================
   KLEINERE DESKTOPS / TABLETS
   2 Karten pro Reihe, letzte Karte volle Breite
   ========================================================================== */

@media (max-width: 1199px) {

    .fcu-referee-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .fcu-referee-benefit:nth-child(1),
    .fcu-referee-benefit:nth-child(2),
    .fcu-referee-benefit:nth-child(3),
    .fcu-referee-benefit--wide-left,
    .fcu-referee-benefit--wide-right {
        grid-column: auto;
    }

    .fcu-referee-benefit:last-child {
        grid-column: 1 / -1;
    }
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 991px) {

    .fcu-referee-benefits {
        gap: 18px;
        margin-top: 24px;
    }

    .fcu-referee-benefit {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 15px;
        min-height: 170px;
        padding: 25px 22px;
    }

    .fcu-referee-benefit::before {
        left: 22px;
        width: 52px;
    }

    .fcu-referee-benefit__icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 19px;
    }

    .fcu-referee-benefit__content h3 {
        font-size: 18px;
    }
}


/* ==========================================================================
   SMARTPHONE
   ========================================================================== */

@media (max-width: 767px) {

    .fcu-referee-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 22px 0 28px;
    }

    .fcu-referee-benefit,
    .fcu-referee-benefit:last-child {
        grid-column: auto;
        min-height: 0;
        padding: 23px 20px;
        border-radius: 8px;
    }

    .fcu-referee-benefit::before {
        left: 20px;
        width: 48px;
    }
}


/* ==========================================================================
   KLEINE SMARTPHONES
   ========================================================================== */

@media (max-width: 480px) {

    .fcu-referee-benefit {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 13px;
        padding: 21px 17px;
    }

    .fcu-referee-benefit::before {
        left: 17px;
        width: 44px;
    }

    .fcu-referee-benefit__icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 17px;
    }

    .fcu-referee-benefit__content h3 {
        font-size: 17px;
    }

    .fcu-referee-benefit__content p {
        font-size: 13px;
        line-height: 1.56;
    }
}

/* ==========================================================================
   FC UNION ERFURT
   SCHIEDSRICHTER – PERSONENKARTEN
   Jede Karte als separates Raw-HTML-Addon
   Klasse: fcu-referee-card
   ========================================================================== */

.fcu-referee-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.10);
    border-radius: 11px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.fcu-referee-card__image::before{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;
    background:var(--union-rot);
    z-index:10;
}


.fcu-referee-card:hover{
    transform:translateY(-5px);
    border-color:rgba(227,6,19,.45);
    box-shadow:
        0 22px 50px rgba(0,0,0,.14),
        0 0 0 1px rgba(227,6,19,.25);
}


/* Bildbereich */

.fcu-referee-card__image {
    position: relative;
    width: 100%;
    height: 255px;
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(227, 6, 19, 0.15),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #202326,
            #111315
        );
    overflow: hidden;
}

.fcu-referee-card__image::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 42%;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(0, 0, 0, 0.22)
    );
    content: "";
    pointer-events: none;
}

.fcu-referee-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: center top;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.fcu-referee-card:hover .fcu-referee-card__image img {
    transform: scale(1.045);
}


/* Textbereich */

.fcu-referee-card__content {
    position: relative;
    padding: 20px 22px 22px;
    background: #ffffff;
}

.fcu-referee-card__role {
    display: block;
    margin: 0 0 5px;
    color: var(--union-rot);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fcu-referee-card__content h3 {
    margin: 0;
    color: var(--union-dunkelgrau);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.015em;
}


/* Optionaler Status */

.fcu-referee-card__badge {
    position: absolute;
    top: 18px;
    right: 16px;
    z-index: 4;
    padding: 6px 9px;
    color: #ffffff;
    background: rgba(17, 17, 17, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}


/* Gleiche Kartenhöhe innerhalb einer SP-Page-Builder-Zeile */

.fcu-referee-card,
.fcu-referee-card > * {
    box-sizing: border-box;
}

.sppb-row > div:has(.fcu-referee-card),
.sppb-column:has(.fcu-referee-card),
.sppb-column-addons:has(.fcu-referee-card),
.sppb-addon-wrapper:has(.fcu-referee-card),
.sppb-addon-wrapper:has(.fcu-referee-card) .sppb-addon,
.sppb-addon-wrapper:has(.fcu-referee-card) .sppb-addon-content {
    height: 100%;
}


/* Tablet */

@media (max-width: 991px) {

    .fcu-referee-card__image {
        height: 235px;
    }

    .fcu-referee-card__content {
        padding: 18px 19px 20px;
    }

}


/* Smartphone */

@media (max-width: 767px) {

    .fcu-referee-card {
        border-radius: 9px;
    }

    .fcu-referee-card__image {
        height: 300px;
    }

    .fcu-referee-card__content h3 {
        font-size: 20px;
    }
}


/* Kleine Smartphones */

@media (max-width: 480px) {

    .fcu-referee-card__image {
        height: 245px;
    }

    .fcu-referee-card__content {
        padding: 17px 17px 19px;
    }


    .fcu-referee-card__content h3 {
        font-size: 18px;
    }
}

/* ==========================================================================
   FC UNION ERFURT
   MANNSCHAFTEN – PREMIUM-NAVIGATIONSKARTEN FINAL V2
   Ohne Nummern / Wasserzeichen
   Klasse: fcu-team-card
   ========================================================================== */


/* ==========================================================================
   GRUNDKARTE
   ========================================================================== */

.fcu-team-card {
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    min-height: 335px;
    padding: 38px 32px 30px;
    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(227, 6, 19, 0.105) 0%,
            rgba(227, 6, 19, 0.035) 38%,
            transparent 66%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #ffffff 58%,
            #fff5f6 100%
        );
    border: 1px solid rgba(17, 17, 17, 0.10);
    border-radius: 12px;
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.065);
    overflow: hidden;
    isolation: isolate;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* Oberer roter Akzent */

.fcu-team-card::before {
    position: absolute;
    top: 0;
    left: 32px;
    z-index: 4;
    width: 66px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--union-rot),
        var(--union-dunkelrot)
    );
    border-radius: 0 0 4px 4px;
    content: "";
    transition:
        width 0.3s ease,
        box-shadow 0.3s ease;
}


/* Dezente Lichtfläche */

.fcu-team-card::after {
    position: absolute;
    right: -90px;
    bottom: -100px;
    z-index: -1;
    width: 280px;
    height: 280px;
    background: radial-gradient(
        circle,
        rgba(227, 6, 19, 0.12) 0%,
        rgba(227, 6, 19, 0.04) 45%,
        transparent 72%
    );
    border-radius: 50%;
    content: "";
    opacity: 0.75;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}


/* Hover */

.fcu-team-card:hover {
    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(227, 6, 19, 0.15) 0%,
            rgba(227, 6, 19, 0.045) 40%,
            transparent 68%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #ffffff 52%,
            #ffecee 100%
        );
    border-color: rgba(227, 6, 19, 0.36);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.14),
        0 10px 28px rgba(227, 6, 19, 0.09);
    transform: translateY(-8px);
}

.fcu-team-card:hover::before {
    width: 96px;
    box-shadow: 0 4px 14px rgba(227, 6, 19, 0.22);
}

.fcu-team-card:hover::after {
    opacity: 1;
    transform: scale(1.16);
}


/* Alte Nummern sicher ausblenden */

.fcu-team-card__number {
    display: none !important;
}


/* ==========================================================================
   ICON
   ========================================================================== */

.fcu-team-card__icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    min-width: 66px;
    margin: 0 0 26px;
    color: #ffffff;
    background: radial-gradient(
        circle at 30% 24%,
        #ff6470 0%,
        #ed101e 35%,
        #d00614 62%,
        #8b0009 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50%;
    box-shadow:
        0 14px 30px rgba(227, 6, 19, 0.36),
        0 0 0 5px rgba(227, 6, 19, 0.055),
        inset 0 2px 3px rgba(255, 255, 255, 0.34),
        inset 0 -9px 16px rgba(0, 0, 0, 0.27);
    font-size: 23px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.fcu-team-card__icon::after {
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    content: "";
}

.fcu-team-card__icon i {
    position: relative;
    z-index: 2;
}

.fcu-team-card:hover .fcu-team-card__icon {
    box-shadow:
        0 20px 37px rgba(227, 6, 19, 0.49),
        0 0 0 7px rgba(227, 6, 19, 0.075),
        inset 0 2px 3px rgba(255, 255, 255, 0.36),
        inset 0 -10px 18px rgba(0, 0, 0, 0.29);
    transform: translateY(-3px) rotate(-3deg) scale(1.07);
}


/* ==========================================================================
   INHALT
   ========================================================================== */

.fcu-team-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
}

.fcu-team-card__content h3 {
    margin: 0 0 14px;
    color: var(--union-dunkelgrau);
    font-size: clamp(24px, 2vw, 29px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.fcu-team-card__content p {
    max-width: 95%;
    margin: 0;
    color: #595959;
    font-size: 15px;
    line-height: 1.68;
}


/* ==========================================================================
   BUTTON
   ========================================================================== */

.fcu-team-card__button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    margin-top: auto;
    padding: 0 22px;
    color: #ffffff !important;
    background: linear-gradient(
        100deg,
        #b40012 0%,
        #e30613 56%,
        #c40011 100%
    );
    border: 1px solid rgba(227, 6, 19, 0.18);
    border-radius: 40px;
    box-shadow:
        0 9px 21px rgba(227, 6, 19, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.015em;
    text-decoration: none !important;
    overflow: hidden;
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.fcu-team-card__button::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -45%;
    width: 34%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );
    content: "";
    transform: skewX(-20deg);
    transition: left 0.45s ease;
}

.fcu-team-card__button i {
    position: relative;
    z-index: 2;
    transition: transform 0.25s ease;
}

.fcu-team-card__button:hover,
.fcu-team-card__button:focus {
    color: #ffffff !important;
    background: linear-gradient(
        100deg,
        #151515 0%,
        #252525 100%
    );
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.fcu-team-card__button:hover::before,
.fcu-team-card__button:focus::before {
    left: 120%;
}

.fcu-team-card__button:hover i,
.fcu-team-card__button:focus i {
    transform: translateX(4px);
}


/* ==========================================================================
   DOWNLOAD-KARTE
   ========================================================================== */

.fcu-team-card--downloads {
    min-height: 275px;
}

.fcu-team-card--downloads .fcu-team-card__content {
    flex: 0 1 auto;
}

.fcu-team-card--downloads .fcu-team-card__content p {
    max-width: 780px;
}

.fcu-team-card--downloads .fcu-team-card__button {
    margin-top: 28px;
}


/* ==========================================================================
   SP PAGE BUILDER – GLEICHE HÖHE
   ========================================================================== */

.sppb-column:has(.fcu-team-card),
.sppb-column-addons:has(.fcu-team-card),
.sppb-addon-wrapper:has(.fcu-team-card),
.sppb-addon-wrapper:has(.fcu-team-card) .sppb-addon,
.sppb-addon-wrapper:has(.fcu-team-card) .sppb-addon-content {
    height: 100%;
}


/* ==========================================================================
   FOKUS
   ========================================================================== */

.fcu-team-card:focus-within {
    border-color: var(--union-rot);
    box-shadow:
        0 0 0 4px rgba(227, 6, 19, 0.09),
        0 20px 42px rgba(0, 0, 0, 0.11);
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 991px) {

    .fcu-team-card {
        min-height: 325px;
        padding: 34px 28px 28px;
    }

    .fcu-team-card::before {
        left: 28px;
        width: 58px;
    }

    .fcu-team-card:hover::before {
        width: 84px;
    }

    .fcu-team-card__icon {
        width: 61px;
        height: 61px;
        min-width: 61px;
        margin-bottom: 23px;
        font-size: 21px;
    }

    .fcu-team-card__content h3 {
        font-size: 25px;
    }

    .fcu-team-card__content p {
        max-width: 100%;
    }

    .fcu-team-card--downloads {
        min-height: 250px;
    }
}


/* ==========================================================================
   SMARTPHONE
   ========================================================================== */

@media (max-width: 767px) {

    .fcu-team-card {
        min-height: 0;
        padding: 30px 23px 25px;
        border-radius: 9px;
    }

    .fcu-team-card::before {
        left: 23px;
        width: 52px;
    }

    .fcu-team-card:hover {
        transform: translateY(-4px);
    }

    .fcu-team-card__icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        margin-bottom: 21px;
        font-size: 20px;
    }

    .fcu-team-card__content h3 {
        font-size: 23px;
    }

    .fcu-team-card__content p {
        font-size: 14px;
        line-height: 1.64;
    }

    .fcu-team-card__button,
    .fcu-team-card--downloads .fcu-team-card__button {
        margin-top: 25px;
    }

    .fcu-team-card--downloads {
        min-height: 0;
    }
}


/* ==========================================================================
   KLEINE SMARTPHONES
   ========================================================================== */

@media (max-width: 480px) {

    .fcu-team-card {
        padding: 28px 19px 23px;
    }

    .fcu-team-card::before {
        left: 19px;
        width: 46px;
    }

    .fcu-team-card__icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 18px;
    }

    .fcu-team-card__content h3 {
        font-size: 21px;
    }

    .fcu-team-card__button {
        min-height: 44px;
        padding: 0 19px;
        font-size: 12px;
    }
}
/* ==========================================================================
   FC UNION ERFURT
   INFORMATIONEN & DOWNLOADS
   Klasse: fcu-downloads
   ========================================================================== */


/* ==========================================================================
   BEREICH UND EINLEITUNG
   ========================================================================== */

.fcu-downloads {
    width: 100%;
}

.fcu-downloads__intro {
    position: relative;
    max-width: 900px;
    margin: 0 0 30px;
    padding-top: 17px;
}

.fcu-downloads__intro::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 62px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--union-rot),
        var(--union-dunkelrot)
    );
    border-radius: 2px;
    content: "";
}

.fcu-downloads__eyebrow {
    display: block;
    margin: 0 0 7px;
    color: #757575;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fcu-downloads__intro h2 {
    margin: 0 0 12px;
    color: var(--union-dunkelgrau);
    font-size: clamp(27px, 2.6vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.fcu-downloads__intro p {
    max-width: 820px;
    margin: 0;
    color: #555555;
    font-size: 16px;
    line-height: 1.65;
}


/* ==========================================================================
   KARTENRASTER
   ========================================================================== */

.fcu-downloads__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
    align-items: stretch;
    gap: 22px;
}


/* ==========================================================================
   KARTEN
   ========================================================================== */

.fcu-download-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 32px;
    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(227, 6, 19, 0.10),
            transparent 48%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #ffffff 65%,
            #fff5f6 100%
        );
    border: 1px solid rgba(17, 17, 17, 0.10);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.fcu-download-card::before {
    position: absolute;
    top: 0;
    left: 32px;
    width: 68px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--union-rot),
        var(--union-dunkelrot)
    );
    border-radius: 0 0 4px 4px;
    content: "";
    transition: width 0.3s ease;
}

.fcu-download-card:hover {
    border-color: rgba(227, 6, 19, 0.30);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(227, 6, 19, 0.07);
    transform: translateY(-6px);
}

.fcu-download-card:hover::before {
    width: 98px;
}


/* ==========================================================================
   KARTENKOPF
   ========================================================================== */

.fcu-download-card__header {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 27px;
}

.fcu-download-card__icon {
    position: relative;
    display: inline-flex;
    flex: 0 0 62px;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    color: #ffffff;
    background: radial-gradient(
        circle at 30% 24%,
        #ff6470 0%,
        #ed101e 35%,
        #d00614 62%,
        #8b0009 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50%;
    box-shadow:
        0 14px 30px rgba(227, 6, 19, 0.34),
        0 0 0 5px rgba(227, 6, 19, 0.055),
        inset 0 2px 3px rgba(255, 255, 255, 0.34),
        inset 0 -9px 16px rgba(0, 0, 0, 0.27);
    font-size: 22px;    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fcu-download-card:hover .fcu-download-card__icon {
    transform: translateY(-3px) scale(1.05);
}

.fcu-download-card__icon::after {
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    content: "";
}

.fcu-download-card__icon i {
    position: relative;
    z-index: 2;
}

.fcu-download-card__label {
    display: block;
    margin-bottom: 4px;
    color: var(--union-rot);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.fcu-download-card__header h3 {
    margin: 0;
    color: var(--union-dunkelgrau);
    font-size: clamp(23px, 2vw, 28px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}


/* ==========================================================================
   DOKUMENTLISTE
   ========================================================================== */

.fcu-download-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fcu-download-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 40px;
    align-items: center;
    gap: 14px;
    min-height: 78px;
    padding: 11px 13px;
    color: var(--union-dunkelgrau) !important;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 17, 17, 0.085);
    border-radius: 9px;
    text-decoration: none !important;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.fcu-download-item:hover,
.fcu-download-item:focus {
    color: var(--union-dunkelgrau) !important;
    background: #ffffff;
    border-color: rgba(227, 6, 19, 0.34);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.075);
    transform: translateX(4px);
}

.fcu-download-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--union-rot);
    background: rgba(227, 6, 19, 0.075);
    border-radius: 8px;
    font-size: 20px;    transition: transform 0.25s ease;
}

.fcu-download-item__content {
    min-width: 0;
}

.fcu-download-item__content strong {
    display: block;
    color: var(--union-dunkelgrau);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.fcu-download-item__content small {
    display: block;
    margin-top: 3px;
    color: #828282;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.fcu-download-item__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: var(--union-rot);
    border-radius: 50%;
    font-size: 12px;
    box-shadow: 0 7px 17px rgba(227, 6, 19, 0.24);
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.fcu-download-item:hover .fcu-download-item__action {
    background: var(--union-schwarz);
    transform: translateY(-2px);
}

.fcu-download-item:hover .fcu-download-item__icon,
.fcu-download-item:focus .fcu-download-item__icon {
    transform: scale(1.08);
}


/* ==========================================================================
   MITGLIEDSCHAFT
   ========================================================================== */

.fcu-download-card--membership {
    color: #ffffff;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(227, 6, 19, 0.30),
            transparent 45%
        ),
        linear-gradient(
            155deg,
            #242424 0%,
            #111111 63%,
            #080808 100%
        );
    border-color: rgba(255, 255, 255, 0.08);
    padding: 42px 34px;
}

.fcu-download-card--membership .fcu-download-card__header h3 {
    color: #ffffff;
}

.fcu-download-card--membership .fcu-download-card__label {
    color: #ff5964;
}

.fcu-membership-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.fcu-membership-content h4 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
}

.fcu-membership-content > p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.65;
}

.fcu-membership-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.fcu-membership-benefits span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.fcu-membership-benefits i {
    position: relative;
    top: 1px;
    display: inline-flex;
    flex: 0 0 22px;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #ffffff;
    background: var(--union-rot);
    border-radius: 50%;
    font-size: 10px;
}

.fcu-membership-button {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    justify-content: center;
    gap: 11px;
    min-height: 47px;
    margin-top: auto;
    padding: 0 22px;
    color: #ffffff !important;
    background: linear-gradient(
        100deg,
        var(--union-dunkelrot),
        var(--union-rot)
    );
    border-radius: 40px;
    box-shadow: 0 10px 24px rgba(227, 6, 19, 0.30);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.fcu-membership-button:hover,
.fcu-membership-button:focus {
    color: var(--union-schwarz) !important;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 991px) {

    .fcu-downloads__grid {
        grid-template-columns: 1fr;
    }

    .fcu-download-card {
        padding: 30px 27px;
    }

    .fcu-download-card::before {
        left: 27px;
    }
}


/* ==========================================================================
   SMARTPHONE
   ========================================================================== */

@media (max-width: 767px) {

    .fcu-downloads__intro {
        margin-bottom: 24px;
    }

    .fcu-downloads__intro h2 {
        font-size: 28px;
    }

    .fcu-downloads__intro p {
        font-size: 15px;
    }

    .fcu-download-card {
        padding: 27px 21px;
        border-radius: 9px;
    }

    .fcu-download-card::before {
        left: 21px;
        width: 54px;
    }

    .fcu-download-card__header {
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 23px;
    }

    .fcu-download-card__icon {
        flex-basis: 55px;
        width: 55px;
        height: 55px;
        font-size: 19px;
    }

    .fcu-download-card__header h3 {
        font-size: 23px;
    }

    .fcu-download-item {
        grid-template-columns: 42px minmax(0, 1fr) 36px;
        gap: 11px;
        padding: 10px;
    }

    .fcu-download-item__icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .fcu-download-item__action {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
}


/* ==========================================================================
   KLEINE SMARTPHONES
   ========================================================================== */

@media (max-width: 480px) {

    .fcu-download-card {
        padding-right: 17px;
        padding-left: 17px;
    }

    .fcu-download-card::before {
        left: 17px;
    }

    .fcu-download-item {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .fcu-download-item__icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .fcu-download-item__action {
        display: none;
    }

    .fcu-membership-button {
        width: 100%;
        padding-right: 16px;
        padding-left: 16px;
    }
}

/* ==========================================================================
   MITGLIEDSCHAFT – ZWEI DOWNLOADS
   ========================================================================== */

.fcu-membership-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.fcu-membership-actions .fcu-membership-button {
    min-width: 0;
    margin-top: 0;    justify-content: center;    max-width: 100%;
}

.fcu-membership-button--secondary {
    color: #ffffff !important;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: none;
}

.fcu-membership-button--secondary:hover,
.fcu-membership-button--secondary:focus {
    color: var(--union-schwarz) !important;
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

@media (max-width: 480px) {

    .fcu-membership-actions {
        width: 100%;
    }

    .fcu-membership-actions .fcu-membership-button {
        width: 100%;
        min-width: 0;
    }
}

/* ==========================================================================
   FC UNION ERFURT
   SPORTSTÄTTE – PREMIUM-KARTEN
   ========================================================================== */


/* ==========================================================================
   GEMEINSAME GRUNDLAGEN
   ========================================================================== */

.fcu-venue-card,
.fcu-location-card {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.fcu-venue-card::before,
.fcu-location-card::before {
    position: absolute;
    top: 0;
    left: 32px;
    z-index: 5;
    width: 68px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--union-rot, #e30613),
        var(--union-dunkelrot, #9f000b)
    );
    border-radius: 0 0 4px 4px;
    content: "";
    transition: width 0.3s ease;
}

.fcu-venue-card:hover,
.fcu-location-card:hover {
    transform: translateY(-6px);
}

.fcu-venue-card:hover::before,
.fcu-location-card:hover::before {
    width: 98px;
}


/* ==========================================================================
   LINKE SPORTSTÄTTENKARTE
   ========================================================================== */

.fcu-venue-card {
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(227, 6, 19, 0.11),
            transparent 48%
        ),
        linear-gradient(
            145deg,
            #ffffff 0%,
            #ffffff 65%,
            #fff4f5 100%
        );
    border: 1px solid rgba(17, 17, 17, 0.10);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.fcu-venue-card:hover {
    border-color: rgba(227, 6, 19, 0.30);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.13),
        0 8px 24px rgba(227, 6, 19, 0.07);
}


/* Bild */

.fcu-venue-card__image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #eeeeee;
}

.fcu-venue-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.55s ease,
        filter 0.55s ease;
}

.fcu-venue-card:hover .fcu-venue-card__image img {
    transform: scale(1.04);
    filter: saturate(1.05) contrast(1.03);
}


/* Inhalt */

.fcu-venue-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 27px 32px 30px;
}

.fcu-venue-card__header {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 20px;
}


/* Rote Premium-Icons */

.fcu-venue-card__icon,
.fcu-location-card__icon {
    position: relative;
    display: inline-flex;
    flex: 0 0 62px;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    color: #ffffff;
    background: radial-gradient(
        circle at 30% 24%,
        #ff6671 0%,
        #ed101e 35%,
        #d00614 62%,
        #8b0009 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50%;
    box-shadow:
        0 14px 30px rgba(227, 6, 19, 0.34),
        0 0 0 5px rgba(227, 6, 19, 0.055),
        inset 0 2px 3px rgba(255, 255, 255, 0.34),
        inset 0 -9px 16px rgba(0, 0, 0, 0.27);
    font-size: 22px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.fcu-venue-card__icon::after,
.fcu-location-card__icon::after {
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    content: "";
}

.fcu-venue-card__icon i,
.fcu-location-card__icon i {
    position: relative;
    z-index: 2;
}

.fcu-venue-card:hover .fcu-venue-card__icon,
.fcu-location-card:hover .fcu-location-card__icon {
    transform: translateY(-3px) scale(1.05);
}


/* Überschriften */

.fcu-venue-card__label,
.fcu-location-card__label {
    display: block;
    margin-bottom: 4px;
    color: var(--union-rot, #e30613);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.fcu-venue-card__header h3,
.fcu-location-card__header h3 {
    margin: 0;
    color: var(--union-dunkelgrau, #202020);
    font-size: clamp(23px, 2vw, 28px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.fcu-venue-card__content > p {
    margin: 0 0 22px;
    color: #565656;
    font-size: 15px;
    line-height: 1.7;
}


/* Ausstattung */

.fcu-venue-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin-top: auto;
}

.fcu-venue-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: #303030;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.fcu-venue-features span > i {
    display: inline-flex;
    flex: 0 0 22px;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #ffffff;
    background: var(--union-rot, #e30613);
    border-radius: 50%;
    font-size: 10px;
}

.fcu-venue-features .fcu-venue-feature--wide {
    grid-column: 1 / -1;
    margin-top: 2px;
    padding-top: 13px;
    border-top: 1px solid rgba(227, 6, 19, 0.13);
}

.fcu-venue-features .fcu-venue-feature--wide > i {
    background: linear-gradient(
        135deg,
        #ed101e,
        #a9000b
    );
}


/* ==========================================================================
   RECHTE STANDORTKARTE
   ========================================================================== */

.fcu-location-card {
    display: flex;
    flex-direction: column;
    padding: 38px 34px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(227, 6, 19, 0.30),
            transparent 45%
        ),
        linear-gradient(
            155deg,
            #242424 0%,
            #111111 63%,
            #080808 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.19),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fcu-location-card:hover {
    border-color: rgba(227, 6, 19, 0.38);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(227, 6, 19, 0.10);
}

.fcu-location-card__header {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 24px;
}

.fcu-location-card__header h3 {
    color: #ffffff;
}

.fcu-location-card__label {
    color: #ff5964;
}


/* Adresse */

.fcu-location-card__address {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 17px 19px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 9px;
}

.fcu-location-card__address strong {
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
}

.fcu-location-card__address span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.55;
}

.fcu-location-card__text {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.65;
}


/* Nüßle-Hinweis */

.fcu-location-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
    padding: 16px 17px;
    background:
        linear-gradient(
            135deg,
            rgba(227, 6, 19, 0.14),
            rgba(255, 255, 255, 0.045)
        );
    border: 1px solid rgba(227, 6, 19, 0.25);
    border-radius: 10px;
}

.fcu-location-info__icon {
    display: inline-flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #ffffff;
    background: var(--union-rot, #e30613);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.26);
    font-size: 15px;
}

.fcu-location-info__content {
    min-width: 0;
}

.fcu-location-info__content strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}

.fcu-location-info__content span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.55;
}


/* Buttons */

.fcu-location-card__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.fcu-location-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    box-sizing: border-box;
    width: 290px;
    max-width: 100%;
    min-height: 47px;
    padding: 0 22px;
    color: #ffffff !important;
    background: linear-gradient(
        100deg,
        var(--union-dunkelrot, #a9000b),
        var(--union-rot, #e30613)
    );
    border: 1px solid rgba(227, 6, 19, 0.18);
    border-radius: 40px;
    box-shadow: 0 10px 24px rgba(227, 6, 19, 0.30);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    text-decoration: none !important;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.fcu-location-button:hover,
.fcu-location-button:focus {
    color: #111111 !important;
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.fcu-location-button--secondary {
    color: #ffffff !important;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: none;
}

.fcu-location-button--secondary:hover,
.fcu-location-button--secondary:focus {
    color: #111111 !important;
    background: #ffffff;
    border-color: #ffffff;
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 991px) {

    .fcu-venue-card__image {
        height: 250px;
    }

    .fcu-venue-card__content,
    .fcu-location-card {
        padding-right: 27px;
        padding-left: 27px;
    }

    .fcu-venue-card::before,
    .fcu-location-card::before {
        left: 27px;
    }
}


/* ==========================================================================
   SMARTPHONE
   ========================================================================== */

@media (max-width: 767px) {

    .fcu-venue-card,
    .fcu-location-card {
        height: auto;
        border-radius: 9px;
    }

    .fcu-venue-card__image {
        height: 220px;
    }

    .fcu-venue-card__content,
    .fcu-location-card {
        padding: 28px 21px;
    }

    .fcu-venue-card::before,
    .fcu-location-card::before {
        left: 21px;
        width: 54px;
    }

    .fcu-venue-card__header,
    .fcu-location-card__header {
        align-items: flex-start;
        gap: 14px;
    }

    .fcu-venue-card__icon,
    .fcu-location-card__icon {
        flex-basis: 55px;
        width: 55px;
        height: 55px;
        font-size: 19px;
    }

    .fcu-venue-card__header h3,
    .fcu-location-card__header h3 {
        font-size: 23px;
    }

    .fcu-venue-features {
        grid-template-columns: 1fr;
    }

    .fcu-venue-features .fcu-venue-feature--wide {
        grid-column: auto;
    }
}


/* ==========================================================================
   KLEINE SMARTPHONES
   ========================================================================== */

@media (max-width: 480px) {

    .fcu-venue-card__image {
        height: 190px;
    }

    .fcu-venue-card__content,
    .fcu-location-card {
        padding-right: 17px;
        padding-left: 17px;
    }

    .fcu-venue-card::before,
    .fcu-location-card::before {
        left: 17px;
    }

    .fcu-location-info {
        padding: 15px;
    }

    .fcu-location-button {
        width: 100%;
        padding-right: 16px;
        padding-left: 16px;
    }
}


/* ==========================================================================
   REDUZIERTE BEWEGUNGEN
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    .fcu-venue-card,
    .fcu-location-card,
    .fcu-venue-card__image img,
    .fcu-venue-card__icon,
    .fcu-location-card__icon,
    .fcu-location-button {
        transition: none;
    }

    .fcu-venue-card:hover,
    .fcu-location-card:hover,
    .fcu-location-button:hover {
        transform: none;
    }
}

/* ==========================================================================
FC UNION ERFURT - PREMIUM PROFILE CARD (FINAL)
========================================================================== */

.fcu-profile-card{
    position:relative;
    display:flex;
    flex-direction:column;
    height:100%;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 16px 40px rgba(0,0,0,.08);
    transition:.3s ease;
}
.fcu-profile-card:hover{
    transform:translateY(-5px);
    border-color:rgba(227,6,19,.45);
    box-shadow:
        0 22px 50px rgba(0,0,0,.14),
        0 0 0 1px rgba(227,6,19,.25);
}
.fcu-profile-card::before{
    content:"";
    position:absolute;
    top:0;left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,var(--union-rot),var(--union-dunkelrot));
}
.fcu-profile-card__image{
    position:relative;
    height:225px;
    overflow:hidden;
    background:#111;
    border-bottom:2px solid var(--union-rot);
}
.fcu-profile-card__image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center top;
    transition:.5s;
}
.fcu-profile-card:hover .fcu-profile-card__image img{transform:scale(1.04);}

.fcu-profile-card__content{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:20px;
}

.fcu-profile-card__category{
    margin-bottom:6px;
    color:var(--union-rot);
    font-size:11px;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.fcu-profile-card__name{
    margin:0;
    font-size:24px;
    font-weight:900;
    line-height:1.15;
}
.fcu-profile-card__position{
    display:flex;
    align-items:flex-start;
    min-height:58px;
    margin-top:8px;
    padding-bottom:16px;
    border-bottom:1px solid rgba(0,0,0,.08);
    color:#666;
    font-size:15px;
    font-weight:600;
    line-height:1.45;
}


.fcu-profile-card__phone{
    display:flex;
    align-items:center;
    gap:8px;
    min-height:64px;
    padding:14px 0;
    border-bottom:1px solid rgba(0,0,0,.08);
}

.fcu-profile-card__icon{
    width:36px;
    height:36px;
    flex:0 0 36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg,var(--union-rot),var(--union-dunkelrot));
    color:#fff;
}
.fcu-profile-card__phone-text span{
    display:block;
    font-size:10px;
    color:#888;
    letter-spacing:.1em;
    text-transform:uppercase;
}
.fcu-profile-card__phone-text a{
    color:#222;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
}

.fcu-profile-card__info{
    display:flex;
    align-items:flex-start;
    gap:8px;
    min-height:108px;
    margin:12px 0;
    padding:10px 11px;
    border:1px solid rgba(227,6,19,.12);
    border-left:3px solid var(--union-rot);
    border-radius:10px;
    background:#fff;
}
.fcu-profile-card__info-icon{
    width:28px;
    height:28px;
    flex:0 0 28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(227,6,19,.08);
    color:var(--union-rot);
}
.fcu-profile-card__info strong{
    display:block;
    margin-bottom:4px;
    font-size:13px;
}
.fcu-profile-card__info p{
    margin:0;
    font-size:11px;
    line-height:1.45;
    color:#666;
}

.fcu-profile-card__button{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    min-height:38px;
    margin-top:auto;
    padding:0 22px;
    border-radius:30px;
    text-decoration:none!important;
    color:#fff!important;
    background:linear-gradient(90deg,var(--union-dunkelrot),var(--union-rot));
    box-shadow:0 8px 18px rgba(227,6,19,.16);
    font-size:12px;
    font-weight:800;
    letter-spacing:.02em;
    transition:.25s;
}
.fcu-profile-card__button:hover{
    color:#fff!important;
    transform:translateY(-2px);
    filter:brightness(1.06);
    box-shadow:0 14px 28px rgba(227,6,19,.26);
}

@media (max-width:991px){
    .fcu-profile-card__image{height:210px;}
}
@media (max-width:767px){
    .fcu-profile-card__image{height:240px;}
    .fcu-profile-card__content{padding:18px;}
    .fcu-profile-card__name{font-size:22px;}
}

/* ==========================================================================
   FC UNION ERFURT
   OBERKATEGORIE VEREIN – NAVIGATIONSKARTEN
   ========================================================================== */

.fcu-club-card{
position:relative;
display:flex;
flex-direction:column;
width:100%;
height:100%;
min-height:370px;
padding:30px 28px 26px;
color:#fff;
background:linear-gradient(155deg,#242426,#0d0d0e);
border:1px solid rgba(255,255,255,.08);
border-radius:12px;
box-shadow:0 16px 38px rgba(0,0,0,.14);
overflow:hidden;
transition:.3s ease;
}
.fcu-club-card:before{
content:"";
position:absolute;
top:0;
left:28px;
width:62px;
height:4px;
background:linear-gradient(90deg,var(--union-rot),var(--union-dunkelrot));
border-radius:0 0 4px 4px;
}
.fcu-club-card:hover{
transform:translateY(-6px);
border-color:rgba(227,6,19,.45);
box-shadow:0 22px 50px rgba(0,0,0,.22),0 0 0 1px rgba(227,6,19,.18);
}
.fcu-club-card__icon{display:inline-flex;align-items:center;justify-content:center;width:62px;height:62px;margin-bottom:24px;border-radius:50%;background:linear-gradient(135deg,var(--union-rot),var(--union-dunkelrot));color:#fff;font-size:23px;box-shadow:0 13px 28px rgba(227,6,19,.3);}
.fcu-club-card__eyebrow{margin:0 0 8px;color:var(--union-rot);font-size:11px;font-weight:800;letter-spacing:.13em;text-transform:uppercase;}
.fcu-club-card__title{margin:0 0 12px;color:#fff;font-size:27px;font-weight:800;line-height:1.15;}
.fcu-club-card__text{
margin:0;
min-height:110px;
color:rgba(255,255,255,.72);
font-size:14px;
line-height:1.6;
}
.fcu-club-card__link{
display:inline-flex;
align-items:center;
gap:8px;
margin-top:auto;
padding:12px 18px;
border-radius:24px;
background:linear-gradient(90deg,var(--union-dunkelrot),var(--union-rot));
color:#fff!important;
text-decoration:none!important;
font-size:12px;
font-weight:800;
}
.fcu-club-card__link:hover{filter:brightness(1.05);transform:translateY(-2px);}


/* Verein-Karten mobil wieder flexibel */
@media (max-width:767px){
    .fcu-club-card{
        min-height:0;
    }

    .fcu-club-card__text{
        min-height:0;
        margin-bottom:22px;
    }
}

/* ==========================================================================
   VEREIN-KARTEN – EINHEITLICHE HÖHE UND AUSRICHTUNG
   ========================================================================== */

/* SP Page Builder: Spalten und Addons auf volle Höhe strecken */
.fcu-club-card-row .sppb-row,
.fcu-club-card-row .sppb-row-container,
.fcu-club-card-row .sppb-column,
.fcu-club-card-row .sppb-column-addons,
.fcu-club-card-row .sppb-addon-wrapper,
.fcu-club-card-row .sppb-addon,
.fcu-club-card-row .sppb-addon-content {
    height: 100%;
}

/* Karte selbst erhält eine feste, identische Desktop-Höhe */
.fcu-club-card {
    height: 395px;
    min-height: 395px;
}

/* Unterschiedlich lange Überschriften sauber ausgleichen */
.fcu-club-card__title {
    display: flex;
    align-items: flex-start;
    min-height: 62px;
}

/* Textbereiche ebenfalls angleichen */
.fcu-club-card__text {
    min-height: 112px;
}

/* Button bleibt immer exakt am unteren Rand */
.fcu-club-card__link {
    margin-top: auto;
}

/* Tablet: weiterhin identische Höhe */
@media (max-width: 991px) and (min-width: 768px) {
    .fcu-club-card {
        height: 395px;
        min-height: 395px;
    }
}

/* Smartphone: wieder natürliche Höhe */
@media (max-width: 767px) {
    .fcu-club-card {
        height: auto;
        min-height: 0;
    }

    .fcu-club-card__title,
    .fcu-club-card__text {
        min-height: 0;
    }
}


/* ==========================================================================
   FC UNION ERFURT
   BREITE SPONSORING-KARTE
   ========================================================================== */

.fcu-sponsor-card{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:34px;
    width:100%;
    margin-top:28px;
    padding:30px 32px;
    color:#fff;
    background:
        radial-gradient(circle at 100% 0,rgba(227,6,19,.18),transparent 38%),
        linear-gradient(155deg,#242426 0%,#151516 62%,#0d0d0e 100%);
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    box-shadow:0 16px 38px rgba(0,0,0,.14);
    overflow:hidden;
    transition:.3s ease;
}

.fcu-sponsor-card::before{
    content:"";
    position:absolute;
    top:0;
    left:32px;
    width:72px;
    height:4px;
    background:linear-gradient(90deg,var(--union-rot),var(--union-dunkelrot));
    border-radius:0 0 4px 4px;
}

.fcu-sponsor-card:hover{
    transform:translateY(-5px);
    border-color:rgba(227,6,19,.45);
    box-shadow:
        0 22px 50px rgba(0,0,0,.22),
        0 0 0 1px rgba(227,6,19,.18);
}

.fcu-sponsor-card__content{
    display:flex;
    align-items:center;
    gap:24px;
    min-width:0;
}

.fcu-sponsor-card__icon{
    display:inline-flex;
    flex:0 0 68px;
    align-items:center;
    justify-content:center;
    width:68px;
    height:68px;
    color:#fff;
    background:linear-gradient(135deg,var(--union-rot),var(--union-dunkelrot));
    border-radius:50%;
    box-shadow:0 13px 28px rgba(227,6,19,.30);
    font-size:25px;
}

.fcu-sponsor-card__text{
    min-width:0;
}

.fcu-sponsor-card__eyebrow{
    margin:0 0 7px;
    color:var(--union-rot);
    font-size:11px;
    font-weight:800;
    letter-spacing:.13em;
    text-transform:uppercase;
}

.fcu-sponsor-card__title{
    margin:0 0 9px;
    color:#fff;
    font-size:clamp(24px,2vw,31px);
    font-weight:900;
    line-height:1.12;
}

.fcu-sponsor-card__description{
    max-width:760px;
    margin:0;
    color:rgba(255,255,255,.72);
    font-size:14px;
    line-height:1.62;
}

.fcu-sponsor-card__button{
    display:inline-flex;
    flex:0 0 auto;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:44px;
    padding:0 22px;
    color:#fff!important;
    background:linear-gradient(90deg,var(--union-dunkelrot),var(--union-rot));
    border-radius:24px;
    box-shadow:0 9px 20px rgba(227,6,19,.20);
    font-size:12px;
    font-weight:800;
    text-decoration:none!important;
    white-space:nowrap;
}

.fcu-sponsor-card__button:hover{
    color:#fff!important;
    filter:brightness(1.06);
    transform:translateY(-2px);
}

@media (max-width:991px){
    .fcu-sponsor-card{
        align-items:flex-start;
        flex-direction:column;
    }
}

@media (max-width:767px){
    .fcu-sponsor-card{
        padding:27px 22px 24px;
    }

    .fcu-sponsor-card::before{
        left:22px;
        width:56px;
    }

    .fcu-sponsor-card__content{
        align-items:flex-start;
        flex-direction:column;
        gap:18px;
    }

    .fcu-sponsor-card__button{
        width:100%;
    }
}

/* ==========================================================================
   FC UNION ERFURT
   VEREINSGESCHICHTE – TIMELINE OHNE DOPPELTE ÜBERSCHRIFT
   Passend zum vorhandenen HTML mit .fcu-history und BEM-Klassen
   ========================================================================== */

.fcu-history{
    position:relative;
    width:100%;
    margin-top:0;
    padding:28px 38px 36px;
    color:#fff;
    background:
        radial-gradient(circle at 100% 0,rgba(227,6,19,.16),transparent 38%),
        linear-gradient(155deg,#242426 0%,#151516 62%,#0d0d0e 100%);
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    box-shadow:0 18px 44px rgba(0,0,0,.16);
    overflow:hidden;
}

.fcu-history::before{
    content:"";
    position:absolute;
    top:0;
    left:38px;
    width:72px;
    height:4px;
    background:linear-gradient(90deg,var(--union-rot),var(--union-dunkelrot));
    border-radius:0 0 4px 4px;
}

/* Überschrift und Einleitung kommen aus dem SP Page Builder */
.fcu-history__header{
    display:none !important;
    margin:0 !important;
    padding:0 !important;
}

.fcu-history__timeline{
    position:relative;
    z-index:2;
    margin:0;
    padding:0;
    list-style:none;
}

.fcu-history__timeline::before{
    content:"";
    position:absolute;
    top:10px;
    bottom:10px;
    left:92px;
    width:2px;
    background:linear-gradient(180deg,var(--union-rot),rgba(227,6,19,.16));
}

.fcu-history__item{
    position:relative;
    display:grid;
    grid-template-columns:74px minmax(0,1fr);
    gap:38px;
    margin-bottom:24px;
}

.fcu-history__item:last-child{
    margin-bottom:0;
}

.fcu-history__year{
    position:relative;
    z-index:3;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:74px;
    min-height:92px;
    padding:0 10px;
    color:#fff;
    background:linear-gradient(180deg,var(--union-rot),var(--union-dunkelrot));
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    box-shadow:0 8px 18px rgba(227,6,19,.20);
    font-size:13px;
    font-weight:900;
    line-height:1;
    text-align:center;
}

.fcu-history__content{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:92px;
    padding:18px 20px 19px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.075);
    border-left:3px solid var(--union-rot);
    border-radius:10px;
    transition:
        transform .25s ease,
        background-color .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.fcu-history__content::before{
    content:"";
    position:absolute;
    top:50%;
    left:-23px;
    width:14px;
    height:14px;
    background:var(--union-rot);
    border:3px solid #181819;
    border-radius:50%;
    box-shadow:0 0 0 4px rgba(227,6,19,.12);
    transform:translateY(-50%);
}

.fcu-history__item:hover .fcu-history__content{
    background:rgba(255,255,255,.055);
    border-color:rgba(227,6,19,.32);
    box-shadow:0 12px 28px rgba(0,0,0,.16);
    transform:translateX(5px);
}

.fcu-history__content h3{
    margin:0 0 7px;
    color:#fff;
    font-size:19px;
    font-weight:800;
    line-height:1.25;
}

.fcu-history__content p{
    margin:0;
    color:rgba(255,255,255,.68);
    font-size:14px;
    line-height:1.62;
}

.fcu-history__notice{
    position:relative;
    z-index:2;
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-top:30px;
    padding:14px 16px;
    color:rgba(255,255,255,.70);
    background:rgba(227,6,19,.075);
    border:1px solid rgba(227,6,19,.18);
    border-radius:9px;
    font-size:13px;
    line-height:1.55;
}

.fcu-history__notice i{
    margin-top:2px;
    color:var(--union-rot);
}

@media (max-width:991px){
    .fcu-history{
        padding:26px 30px 32px;
    }

    .fcu-history::before{
        left:30px;
    }

    .fcu-history__timeline::before{
        left:84px;
    }

    .fcu-history__item{
        grid-template-columns:68px minmax(0,1fr);
        gap:34px;
    }

    .fcu-history__year{
        width:68px;
    }
}

@media (max-width:767px){
    .fcu-history{
        padding:25px 21px 28px;
        border-radius:11px;
    }

    .fcu-history::before{
        left:21px;
        width:56px;
    }

    .fcu-history__timeline::before{
        left:20px;
    }

    .fcu-history__item{
        display:block;
        margin-bottom:26px;
        padding-left:42px;
    }

    .fcu-history__year{
        width:auto;
        min-width:72px;
        min-height:48px;
        margin-bottom:10px;
    }

    .fcu-history__content{
        min-height:0;
    }

    .fcu-history__content::before{
        top:22px;
        left:-30px;
        transform:none;
    }

    .fcu-history__item:hover .fcu-history__content{
        transform:none;
    }
}

/* ==========================================================================
   FC UNION ERFURT
   MANNSCHAFTS-HERO – FLEXIBLER BAUKASTEN
   Funktioniert mit 1 bis 5+ Trainern
   Raw-HTML-Klasse: fcu-team-hero
   ========================================================================== */

.fcu-team-hero{
    position:relative;
    width:100%;
    padding:48px;
    color:#fff;
    background:
        radial-gradient(circle at 92% 18%,rgba(227,6,19,.16),transparent 34%),
        linear-gradient(145deg,#2a2a2c 0%,#1c1c1e 58%,#111 100%);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    box-shadow:0 20px 48px rgba(0,0,0,.18);
    overflow:hidden;
    isolation:isolate;
}

.fcu-team-hero::before{
    content:"";
    position:absolute;
    top:0;
    left:38px;
    width:74px;
    height:4px;
    background:linear-gradient(90deg,var(--union-rot),var(--union-dunkelrot));
    border-radius:0 0 4px 4px;
}

.fcu-team-hero::after{
    content:"U13";
    position:absolute;
    right:28px;
    bottom:-22px;
    z-index:-1;
    color:rgba(255,255,255,.025);
    font-size:clamp(150px,22vw,310px);
    font-weight:900;
    line-height:.78;
    letter-spacing:-.08em;
    pointer-events:none;
}

.fcu-team-hero__top{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:minmax(0,1.3fr) minmax(260px,.7fr);
    gap:34px;
    align-items:start;
}

.fcu-team-hero__eyebrow{
    margin:0 0 12px;
    color:var(--union-rot);
    font-size:11px;
    font-weight:800;
    line-height:1.3;
    letter-spacing:.16em;
    text-transform:uppercase;
}

.fcu-team-hero__title{
    margin:0;
    color:#fff;
    font-size:clamp(44px,5vw,72px);
    font-weight:900;
    line-height:.96;
    letter-spacing:-.04em;
    text-transform:uppercase;
}

.fcu-team-hero__age{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    margin-top:18px;
    padding:0 16px;
    color:#fff;
    background:linear-gradient(90deg,var(--union-dunkelrot),var(--union-rot));
    border-radius:20px;
    font-size:12px;
    font-weight:800;
}

.fcu-team-hero__claim{
    max-width:650px;
    margin:24px 0 0;
    color:rgba(255,255,255,.74);
    font-size:18px;
    line-height:1.55;
}


/* Sponsor */

.fcu-team-hero__sponsor{
    position:relative;
    display:flex;
    min-height:150px;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    padding:24px;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.085);
    border-left:3px solid var(--union-rot);
    border-radius:12px;
    backdrop-filter:blur(8px);
}

.fcu-team-hero__sponsor-label{
    margin-bottom:12px;
    color:rgba(255,255,255,.50);
    font-size:10px;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.fcu-team-hero__sponsor img{
    display:block;
    width:auto;
    max-width:100%;
    max-height:76px;
    object-fit:contain;
    object-position:left center;
    filter:drop-shadow(0 7px 14px rgba(0,0,0,.20));
}

.fcu-team-hero__sponsor-note{
    margin:12px 0 0;
    color:rgba(255,255,255,.62);
    font-size:12px;
    line-height:1.45;
}


/* Fakten */

.fcu-team-hero__facts{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
    margin:34px 0 0;
}

.fcu-team-hero__fact{
    padding:15px 17px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.065);
    border-radius:9px;
}

.fcu-team-hero__fact span{
    display:block;
    margin-bottom:4px;
    color:rgba(255,255,255,.46);
    font-size:9px;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.fcu-team-hero__fact strong{
    color:#fff;
    font-size:15px;
    font-weight:800;
}


/* Trainerbereich */

.fcu-team-hero__staff{
    position:relative;
    z-index:2;
    margin-top:30px;
}

.fcu-team-hero__staff-heading{
    margin:0 0 12px;
    color:rgba(255,255,255,.50);
    font-size:10px;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
}

/*
   auto-fit + minmax:
   1 Trainer = volle Breite
   2 Trainer = zwei gleichmäßige Karten
   3–5 Trainer = automatischer sauberer Umbruch
*/
.fcu-team-hero__staff-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
    gap:14px;
}

.fcu-team-hero__staff-card{
    position:relative;
    min-width:0;
    padding:17px 18px 18px;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.07);
    border-left:3px solid var(--union-rot);
    border-radius:10px;
    transition:
        transform .25s ease,
        border-color .25s ease,
        background-color .25s ease,
        box-shadow .25s ease;
}

.fcu-team-hero__staff-card:hover{
    background:rgba(255,255,255,.075);
    border-color:rgba(227,6,19,.30);
    box-shadow:0 12px 26px rgba(0,0,0,.14);
    transform:translateY(-3px);
}

.fcu-team-hero__staff-role{
    display:block;
    margin-bottom:6px;
    color:rgba(255,255,255,.48);
    font-size:9px;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.fcu-team-hero__staff-name{
    display:block;
    color:#fff;
    font-size:18px;
    font-weight:850;
    line-height:1.2;
    overflow-wrap:anywhere;
}


/* Tablet */

@media (max-width:991px){
    .fcu-team-hero{
        padding:40px 30px;
    }

    .fcu-team-hero::before{
        left:30px;
    }

    .fcu-team-hero__top{
        grid-template-columns:1fr;
    }

    .fcu-team-hero__sponsor{
        min-height:0;
    }

    .fcu-team-hero__facts{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}


/* Smartphone */

@media (max-width:767px){
    .fcu-team-hero{
        padding:34px 22px 26px;
        border-radius:12px;
    }

    .fcu-team-hero::before{
        left:22px;
        width:58px;
    }

    .fcu-team-hero::after{
        right:8px;
        bottom:-8px;
        font-size:150px;
    }

    .fcu-team-hero__title{
        font-size:42px;
    }

    .fcu-team-hero__claim{
        margin-top:20px;
        font-size:16px;
    }

    .fcu-team-hero__facts{
        grid-template-columns:1fr;
    }

    .fcu-team-hero__staff-grid{
        grid-template-columns:1fr;
    }
}


/* Kleine Smartphones */

@media (max-width:480px){
    .fcu-team-hero{
        padding:31px 18px 24px;
    }

    .fcu-team-hero::before{
        left:18px;
        width:50px;
    }

    .fcu-team-hero__title{
        font-size:36px;
    }

    .fcu-team-hero__sponsor{
        padding:20px;
    }
}


/* ==========================================================================
   FC UNION ERFURT
   MANNSCHAFTS-HERO – PREMIUM V2
   Erweiterung für Sponsor, Saison, Fakten-Icons, Spielerbild und flexibles Staff
   ========================================================================== */

.fcu-team-hero--premium{
    position:relative;
    overflow:hidden;
    isolation:isolate;
}

.fcu-team-hero--premium::after{
    content:"FCU";
    position:absolute;
    right:34px;
    bottom:-34px;
    z-index:-2;
    color:rgba(255,255,255,.024);
    font-size:clamp(150px,22vw,320px);
    font-weight:900;
    line-height:.78;
    letter-spacing:-.08em;
    pointer-events:none;
}

.fcu-team-hero--premium .fcu-team-hero__brush{
    position:absolute;
    top:-60px;
    right:-80px;
    z-index:-3;
    width:52%;
    height:120%;
    background:
        linear-gradient(
            135deg,
            transparent 0%,
            rgba(227,6,19,.03) 22%,
            rgba(227,6,19,.11) 48%,
            rgba(227,6,19,.025) 72%,
            transparent 100%
        );
    transform:skewX(-12deg);
    pointer-events:none;
}

.fcu-team-hero--premium .fcu-team-hero__top{
    grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr);
    align-items:stretch;
}

.fcu-team-hero__season{
    display:block;
    margin-top:11px;
    color:rgba(255,255,255,.52);
    font-size:11px;
    font-weight:800;
    letter-spacing:.13em;
    text-transform:uppercase;
}

.fcu-team-hero__visual{
    position:absolute;
    right:24%;
    bottom:0;
    z-index:-1;
    width:min(34%,430px);
    height:88%;
    pointer-events:none;
}

.fcu-team-hero__visual img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center bottom;
    opacity:.28;
    filter:
        grayscale(1)
        contrast(1.08)
        drop-shadow(0 18px 28px rgba(0,0,0,.32));
    mix-blend-mode:screen;
}


/* Sponsorbereich größer und zentriert */

.fcu-team-hero--premium .fcu-team-hero__sponsor{
    align-items:center;
    justify-content:center;
    min-height:184px;
    padding:28px;
    text-align:center;
    background:
        radial-gradient(circle at 50% 15%,rgba(227,6,19,.10),transparent 52%),
        rgba(255,255,255,.045);
}

.fcu-team-hero--premium .fcu-team-hero__sponsor-label{
    margin-bottom:16px;
}

.fcu-team-hero--premium .fcu-team-hero__sponsor img{
    max-width:220px;
    max-height:92px;
    object-position:center;
}

.fcu-team-hero--premium .fcu-team-hero__sponsor-note{
    max-width:270px;
    margin-top:15px;
}


/* Fakten mit Icons */

.fcu-team-hero--premium .fcu-team-hero__fact{
    position:relative;
    min-height:76px;
    padding:16px 18px 16px 50px;
}

.fcu-team-hero__fact-icon{
    position:absolute;
    top:18px;
    left:17px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:24px;
    height:24px;
    color:var(--union-rot);
    font-size:15px;
}

.fcu-team-hero--premium .fcu-team-hero__fact span{
    margin-bottom:5px;
}

.fcu-team-hero--premium .fcu-team-hero__fact strong{
    font-size:16px;
}


/* Trainerkarten mit stärkerer Typografie */

.fcu-team-hero--premium .fcu-team-hero__staff-grid{
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}

.fcu-team-hero--premium .fcu-team-hero__staff-card{
    min-height:84px;
    padding:18px 20px 19px;
}

.fcu-team-hero--premium .fcu-team-hero__staff-role{
    margin-bottom:7px;
    color:rgba(255,255,255,.52);
    font-size:10px;
}

.fcu-team-hero--premium .fcu-team-hero__staff-name{
    font-size:20px;
    text-transform:uppercase;
    letter-spacing:.01em;
}


/* Optionale Akzentvarianten pro Mannschaft */

.fcu-team-hero--premium[data-team-accent="fresh"]{
    --team-accent:#ef3340;
}

.fcu-team-hero--premium[data-team-accent="deep"]{
    --team-accent:#b70812;
}

.fcu-team-hero--premium[data-team-accent="dark"]{
    --team-accent:#7f0710;
}


/* Tablet */

@media (max-width:1199px){
    .fcu-team-hero__visual{
        right:21%;
        width:min(31%,350px);
        opacity:.82;
    }
}

@media (max-width:991px){
    .fcu-team-hero--premium .fcu-team-hero__top{
        grid-template-columns:1fr;
    }

    .fcu-team-hero__visual{
        right:-25px;
        bottom:0;
        width:280px;
        height:62%;
    }

    .fcu-team-hero--premium .fcu-team-hero__sponsor{
        align-items:flex-start;
        min-height:0;
        text-align:left;
    }

    .fcu-team-hero--premium .fcu-team-hero__sponsor img{
        object-position:left center;
    }

    .fcu-team-hero--premium .fcu-team-hero__sponsor-note{
        max-width:100%;
    }
}


/* Smartphone */

@media (max-width:767px){
    .fcu-team-hero__visual{
        display:none;
    }

    .fcu-team-hero--premium::after{
        right:6px;
        bottom:-6px;
        font-size:145px;
    }

    .fcu-team-hero--premium .fcu-team-hero__sponsor{
        align-items:center;
        text-align:center;
    }

    .fcu-team-hero--premium .fcu-team-hero__sponsor img{
        object-position:center;
    }

    .fcu-team-hero--premium .fcu-team-hero__fact{
        min-height:68px;
    }

    .fcu-team-hero--premium .fcu-team-hero__staff-name{
        font-size:18px;
    }
}


/* ==========================================================================
   FC UNION ERFURT
   MANNSCHAFTS-HERO – PREMIUM V3
   Logo-Wasserzeichen statt Spielerbild
   ========================================================================== */

/* Spielerbild aus der vorherigen Version vollständig deaktivieren */
.fcu-team-hero--premium .fcu-team-hero__visual{
    display:none !important;
}

/* Das zusätzliche große FCU-Pseudoelement wird nicht mehr benötigt */
.fcu-team-hero--premium::after{
    display:none !important;
}

/* Vereinslogo als dezentes Wasserzeichen */
.fcu-team-hero__watermark{
    position:absolute;
    right:-42px;
    bottom:-92px;
    z-index:-2;
    width:min(33vw,430px);
    opacity:.075;
    pointer-events:none;
    user-select:none;
}

.fcu-team-hero__watermark img{
    display:block;
    width:100%;
    height:auto;
    filter:
        grayscale(1)
        brightness(2.1)
        contrast(.85);
}

/* Inhalt bleibt sicher über dem Wasserzeichen */
.fcu-team-hero__top,
.fcu-team-hero__facts,
.fcu-team-hero__staff{
    position:relative;
    z-index:2;
}

/* Tablet */
@media (max-width:991px){
    .fcu-team-hero__watermark{
        right:-34px;
        bottom:-58px;
        width:300px;
        opacity:.06;
    }
}

/* Smartphone */
@media (max-width:767px){
    .fcu-team-hero__watermark{
        right:-28px;
        bottom:-24px;
        width:190px;
        opacity:.045;
    }
}


/* ==========================================================================
   FC UNION ERFURT
   MANNSCHAFTS-HERO – PREMIUM V4
   Zwei Faktenkarten, größeres Sponsorlogo, Wasserzeichen feinjustiert
   ========================================================================== */

/* Nach Entfernung des Trainingsortes: zwei gleich breite Faktenkarten */
.fcu-team-hero--premium .fcu-team-hero__facts{
    grid-template-columns:repeat(2,minmax(0,1fr));
}

/* Sponsorlogo sichtbarer und großzügiger */
.fcu-team-hero--premium .fcu-team-hero__sponsor img{
    max-width:260px;
    max-height:116px;
}

/* Wasserzeichen etwas weiter aus dem Inhalt schieben */
.fcu-team-hero__watermark{
    right:-68px;
    bottom:-105px;
    width:min(35vw,455px);
    opacity:.07;
}

@media (max-width:991px){
    .fcu-team-hero--premium .fcu-team-hero__facts{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .fcu-team-hero--premium .fcu-team-hero__sponsor img{
        max-width:245px;
        max-height:106px;
    }

    .fcu-team-hero__watermark{
        right:-52px;
        bottom:-70px;
        width:315px;
        opacity:.055;
    }
}

@media (max-width:767px){
    .fcu-team-hero--premium .fcu-team-hero__facts{
        grid-template-columns:1fr;
    }

    .fcu-team-hero--premium .fcu-team-hero__sponsor img{
        max-width:220px;
        max-height:96px;
    }

    .fcu-team-hero__watermark{
        right:-34px;
        bottom:-28px;
        width:190px;
        opacity:.04;
    }
}


/* ==========================================================================
   FC UNION ERFURT
   MANNSCHAFTS-HERO – FUSSBALL.DE DIREKTLINK
   ========================================================================== */

.fcu-team-hero--premium .fcu-team-hero__top{
    grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
}

.fcu-team-hero__football{
    position:relative;
    display:grid;
    grid-template-columns:44px minmax(0,1fr) 28px;
    align-items:center;
    gap:14px;
    min-height:88px;
    padding:16px 18px;
    color:#fff !important;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.085);
    border-left:3px solid var(--union-rot);
    border-radius:12px;
    text-decoration:none !important;
    transition:
        transform .25s ease,
        border-color .25s ease,
        background-color .25s ease,
        box-shadow .25s ease;
}

.fcu-team-hero__football:hover,
.fcu-team-hero__football:focus{
    color:#fff !important;
    background:rgba(255,255,255,.07);
    border-color:rgba(227,6,19,.34);
    box-shadow:0 14px 30px rgba(0,0,0,.16);
    transform:translateY(-3px);
}

.fcu-team-hero__football:focus-visible{
    outline:2px solid var(--union-rot);
    outline-offset:3px;
}

.fcu-team-hero__football-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    color:#fff;
    background:linear-gradient(135deg,var(--union-rot),var(--union-dunkelrot));
    border-radius:50%;
    box-shadow:0 10px 22px rgba(227,6,19,.26);
    font-size:17px;
}

.fcu-team-hero__football-copy{
    min-width:0;
}

.fcu-team-hero__football-copy small{
    display:block;
    margin-bottom:3px;
    color:rgba(255,255,255,.48);
    font-size:9px;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.fcu-team-hero__football-copy strong{
    display:block;
    color:#fff;
    font-size:17px;
    font-weight:850;
    line-height:1.25;
}

.fcu-team-hero__football-copy span{
    display:block;
    margin-top:3px;
    color:rgba(255,255,255,.62);
    font-size:12px;
    line-height:1.4;
}

.fcu-team-hero__football-arrow{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:var(--union-rot);
    font-size:14px;
    transition:transform .25s ease;
}

.fcu-team-hero__football:hover .fcu-team-hero__football-arrow,
.fcu-team-hero__football:focus .fcu-team-hero__football-arrow{
    transform:translateX(4px);
}

/* Sponsor und Fußball.de bilden rechts eine saubere Spalte */
.fcu-team-hero--premium .fcu-team-hero__sponsor{
    grid-column:2;
}

.fcu-team-hero--premium .fcu-team-hero__football{
    grid-column:2;
}

@media (min-width:992px){
    .fcu-team-hero--premium .fcu-team-hero__top{
        grid-template-rows:auto auto;
    }

    .fcu-team-hero--premium .fcu-team-hero__main{
        grid-column:1;
        grid-row:1 / span 2;
    }

    .fcu-team-hero--premium .fcu-team-hero__sponsor{
        grid-column:2;
        grid-row:1;
    }

    .fcu-team-hero--premium .fcu-team-hero__football{
        grid-column:2;
        grid-row:2;
    }
}

@media (max-width:991px){
    .fcu-team-hero--premium .fcu-team-hero__top{
        grid-template-columns:1fr;
    }

    .fcu-team-hero--premium .fcu-team-hero__sponsor,
    .fcu-team-hero--premium .fcu-team-hero__football{
        grid-column:auto;
    }
}

@media (max-width:767px){
    .fcu-team-hero__football{
        grid-template-columns:40px minmax(0,1fr) 24px;
        min-height:82px;
        padding:15px 16px;
    }

    .fcu-team-hero__football-icon{
        width:40px;
        height:40px;
    }
}


/* ==========================================================================
   FC UNION ERFURT
   MANNSCHAFTS-HERO – PREMIUM V6 KOMPAKT
   Fakten direkt unter dem Claim, geringere Gesamthöhe
   ========================================================================== */

.fcu-team-hero--premium{
    padding-top:48px;
    padding-bottom:48px;
}

.fcu-team-hero--premium .fcu-team-hero__main .fcu-team-hero__facts{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    margin-top:24px;
}

.fcu-team-hero--premium .fcu-team-hero__main .fcu-team-hero__fact{
    min-height:70px;
    padding:14px 16px 14px 48px;
}

.fcu-team-hero--premium .fcu-team-hero__claim{
    margin-bottom:0;
}

.fcu-team-hero--premium .fcu-team-hero__staff{
    margin-top:26px;
}

.fcu-team-hero--premium .fcu-team-hero__top{
    align-items:stretch;
}

@media (min-width:992px){
    .fcu-team-hero--premium .fcu-team-hero__main{
        align-self:center;
    }
}

@media (max-width:767px){
    .fcu-team-hero--premium{
        padding-top:34px;
        padding-bottom:34px;
    }

    .fcu-team-hero--premium .fcu-team-hero__main .fcu-team-hero__facts{
        grid-template-columns:1fr;
        margin-top:20px;
    }

    .fcu-team-hero--premium .fcu-team-hero__staff{
        margin-top:22px;
    }
}


/* ==========================================================================
   FC UNION ERFURT
   MANNSCHAFTS-HERO – PREMIUM V7 SYMMETRIE
   Klare Achsen, identische rechte Kartenbreite und ruhige Proportionen
   ========================================================================== */

@media (min-width:992px){

    /* Linker Informationsbereich und rechte Aktionsspalte */
    .fcu-team-hero--premium .fcu-team-hero__top{
        grid-template-columns:minmax(0,1.34fr) minmax(360px,.96fr);
        grid-template-rows:238px 92px;
        column-gap:34px;
        row-gap:24px;
        align-items:stretch;
    }

    /* Linke Seite füllt exakt die Höhe der beiden rechten Karten */
    .fcu-team-hero--premium .fcu-team-hero__main{
        grid-column:1;
        grid-row:1 / span 2;
        display:flex;
        flex-direction:column;
        min-width:0;
        align-self:stretch;
    }

    /* Fakten schließen den linken Block unten sauber ab */
    .fcu-team-hero--premium .fcu-team-hero__main .fcu-team-hero__facts{
        width:100%;
        margin-top:auto;
    }

    /* Beide rechten Elemente verwenden exakt dieselbe Breite */
    .fcu-team-hero--premium .fcu-team-hero__sponsor,
    .fcu-team-hero--premium .fcu-team-hero__football{
        width:100%;
        max-width:none;
        margin:0;
        box-sizing:border-box;
    }

    .fcu-team-hero--premium .fcu-team-hero__sponsor{
        grid-column:2;
        grid-row:1;
        min-height:238px;
        height:238px;
        padding:26px 28px;
    }

    .fcu-team-hero--premium .fcu-team-hero__football{
        grid-column:2;
        grid-row:2;
        min-height:92px;
        height:92px;
        padding:16px 20px;
    }

    /* Einheitliche Zweierspalten über die volle Breite */
    .fcu-team-hero--premium .fcu-team-hero__staff{
        margin-top:30px;
    }

    .fcu-team-hero--premium .fcu-team-hero__staff-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:14px;
    }

    .fcu-team-hero--premium .fcu-team-hero__staff-card{
        min-height:86px;
    }

    /* Call-to-Action etwas präsenter, ohne größer zu wirken */
    .fcu-team-hero__football{
        grid-template-columns:48px minmax(0,1fr) 30px;
        gap:16px;
    }

    .fcu-team-hero__football-icon{
        width:48px;
        height:48px;
        font-size:18px;
    }

    .fcu-team-hero__football-arrow{
        font-size:17px;
    }
}

@media (max-width:991px){
    .fcu-team-hero--premium .fcu-team-hero__sponsor,
    .fcu-team-hero--premium .fcu-team-hero__football{
        width:100%;
        max-width:none;
        box-sizing:border-box;
    }
}

@media (max-width:767px){
    .fcu-team-hero--premium .fcu-team-hero__staff-grid{
        grid-template-columns:1fr;
    }
}

/* ==========================================================================
   FC UNION ERFURT
   MANNSCHAFTSSEITEN – SCHLICHTE TABS V2
   Ruhig, flach und nur mit roter Unterkante beim aktiven Tab.
   CSS-Klasse am Tabs-Addon: fcu-team-tabs
   ========================================================================== */

.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav {
    position: relative;
    z-index: 5;
    display: flex !important;
    align-items: flex-end;
    gap: 4px;
    margin: 0 0 8px !important;
    padding: 0 0 0 28px !important;
    border: 0 !important;
    list-style: none;
}

.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li {
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li
> a {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 17px !important;
    color: #3a3a3a !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
    transition:
        color .2s ease,
        background-color .2s ease;
}

/* Dezenter Hover */
.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li:not(.active)
> a:hover,
.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li:not(.active)
> a:focus {
    color: var(--union-rot) !important;
    background: rgba(227, 6, 19, 0.035) !important;
}

/* Aktiver Tab: nur Text + feine rote Linie */
.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li.active
> a,
.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li
> a[aria-selected="true"] {
    color: var(--union-rot) !important;
    background: transparent !important;
    font-weight: 800;
}

.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li.active
> a::after,
.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li
> a[aria-selected="true"]::after {
    position: absolute;
    right: 12px;
    bottom: 0;
    left: 12px;
    height: 3px;
    background: var(--union-rot);
    border-radius: 3px 3px 0 0;
    content: "";
}

.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li
> a:focus-visible {
    outline: 2px solid var(--union-rot);
    outline-offset: 3px;
}

@media (max-width: 991px) {
    .sppb-addon.sppb-addon-tab.fcu-team-tabs
    > .sppb-addon-content.sppb-tab
    > ul.sppb-nav {
        padding-left: 18px !important;
    }
}

@media (max-width: 767px) {
    .sppb-addon.sppb-addon-tab.fcu-team-tabs
    > .sppb-addon-content.sppb-tab
    > ul.sppb-nav {
        gap: 2px;
        padding-right: 8px !important;
        padding-left: 8px !important;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .sppb-addon.sppb-addon-tab.fcu-team-tabs
    > .sppb-addon-content.sppb-tab
    > ul.sppb-nav::-webkit-scrollbar {
        display: none;
    }

    .sppb-addon.sppb-addon-tab.fcu-team-tabs
    > .sppb-addon-content.sppb-tab
    > ul.sppb-nav
    > li {
        flex: 0 0 auto;
    }

    .sppb-addon.sppb-addon-tab.fcu-team-tabs
    > .sppb-addon-content.sppb-tab
    > ul.sppb-nav
    > li
    > a {
        min-height: 40px;
        padding-right: 14px !important;
        padding-left: 14px !important;
        font-size: 13px;
    }
}


/* Override aktiver Tab */

/* Aktiver Tab: dezent hellrot hinterlegt */
.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li.active
> a,
.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li
> a[aria-selected="true"]{
    color:var(--union-rot)!important;
    background:rgba(227,6,19,.08)!important;
    border:1px solid rgba(35,35,35,.18)!important;
    border-radius:8px 8px 0 0!important;
    font-weight:800;
    box-shadow:none!important;
}

/* Keine zusätzliche rote Linie */
.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li.active>a::after,
.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li>a[aria-selected="true"]::after{
    display:none;
}

/* Tastaturfokus */
.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li
> a:focus-visible{
    outline:2px solid var(--union-rot);
    outline-offset:3px;
}


/* ==========================================================================
   FC UNION ERFURT
   TABS – FINALER FEINSCHLIFF
   ========================================================================== */

/* Beide Tabs gleich breit und ruhiger */
.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li > a{
    min-width:132px;
    justify-content:center;
    letter-spacing:.01em;
}

/* Aktiver Tab noch eleganter */
.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li.active > a,
.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li > a[aria-selected="true"]{
    background:rgba(227,6,19,.07)!important;
    border:1px solid rgba(227,6,19,.16)!important;
    color:var(--union-rot)!important;
}

/* Inaktive Tabs etwas hochwertiger */
.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li:not(.active)>a{
    color:#2f2f2f!important;
}

/* Mobil keine feste Breite */
@media (max-width:767px){
.sppb-addon.sppb-addon-tab.fcu-team-tabs
> .sppb-addon-content.sppb-tab
> ul.sppb-nav
> li > a{
    min-width:auto;
}
}

/* =========================================================
   FC UNION ERFURT – TRAININGSZEITEN
   ========================================================= */

.fcu-training-card {
    --fcu-training-red: #e21b1b;
    --fcu-training-red-dark: #b70f15;
    --fcu-training-black: #202022;
    --fcu-training-black-soft: #29292c;
    --fcu-training-border: rgba(255, 255, 255, 0.11);
    --fcu-training-text: #ffffff;
    --fcu-training-muted: rgba(255, 255, 255, 0.66);

    position: relative;
    isolation: isolate;
    width: 100%;
    overflow: hidden;
    padding: 40px;
    color: var(--fcu-training-text);
    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(226, 27, 27, 0.19),
            transparent 38%
        ),
        linear-gradient(
            120deg,
            #242426 0%,
            #202022 60%,
            #2a1719 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fcu-training-card::before {
    content: "";
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--fcu-training-red),
        var(--fcu-training-red-dark)
    );
}

.fcu-training-card::after {
    content: "";
    position: absolute;
    z-index: -3;
    right: -95px;
    bottom: -145px;
    width: 360px;
    height: 360px;
    border: 45px solid rgba(255, 255, 255, 0.018);
    border-radius: 50%;
}

.fcu-training-card__brush {
    position: absolute;
    z-index: -1;
    right: -60px;
    top: 95px;
    width: 390px;
    height: 115px;
    opacity: 0.14;
    transform: rotate(-8deg);
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            var(--fcu-training-red) 18%,
            var(--fcu-training-red) 72%,
            transparent 100%
        );
    filter: blur(1px);
}

.fcu-training-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--fcu-training-border);
}

.fcu-training-card__heading {
    display: flex;
    align-items: center;
    gap: 17px;
    min-width: 0;
}

.fcu-training-card__heading-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    font-size: 22px;
    color: #ffffff;
    background: linear-gradient(
        145deg,
        var(--fcu-training-red),
        var(--fcu-training-red-dark)
    );
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(226, 27, 27, 0.25);
}

.fcu-training-card__eyebrow {
    margin: 0 0 4px;
    color: var(--fcu-training-red);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.fcu-training-card__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1.3px;
    text-transform: uppercase;
}


.fcu-training-card__content {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.8fr);
    gap: 24px;
}

.fcu-training-card__schedule,
.fcu-training-card__location {
    position: relative;
    min-width: 0;
    padding: 26px;
    background: rgba(255, 255, 255, 0.038);
    border: 1px solid var(--fcu-training-border);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.fcu-training-card__schedule {
    border-left: 3px solid var(--fcu-training-red);
}

.fcu-training-card__section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 19px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.fcu-training-card__section-title i {
    color: var(--fcu-training-red);
    font-size: 15px;
}

.fcu-training-card__times {
    display: grid;
    gap: 9px;
}

.fcu-training-card__time-row {
    display: grid;
    grid-template-columns: minmax(110px, 0.65fr) minmax(150px, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 50px;
    padding: 11px 15px;
    background: rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 7px;
}

.fcu-training-card__day {
    color: var(--fcu-training-muted);
    font-size: 13px;
    font-weight: 700;
}

.fcu-training-card__time {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.fcu-training-card__notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    padding: 15px 17px;
    background: rgba(226, 27, 27, 0.09);
    border: 1px solid rgba(226, 27, 27, 0.25);
    border-radius: 8px;
}

.fcu-training-card__notice-icon {
    flex: 0 0 auto;
    padding-top: 1px;
    color: var(--fcu-training-red);
    font-size: 16px;
}

.fcu-training-card__notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.65;
}

.fcu-training-card__notice strong {
    color: #ffffff;
}

.fcu-training-card__location {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(226, 27, 27, 0.09),
            rgba(255, 255, 255, 0.025)
        );
}

.fcu-training-card__location-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    background: var(--fcu-training-red);
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 8px 22px rgba(226, 27, 27, 0.22);
}

.fcu-training-card__location-content {
    min-width: 0;
}

.fcu-training-card__location-label {
    display: block;
    margin-bottom: 7px;
    color: var(--fcu-training-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.fcu-training-card__location-name {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.fcu-training-card__location-address {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.65;
}

.fcu-training-card__footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 13px 16px;
    color: rgba(255, 255, 255, 0.62);
    background: rgba(0, 0, 0, 0.14);
    border-radius: 7px;
    font-size: 12px;
    line-height: 1.5;
}

.fcu-training-card__footer i {
    flex: 0 0 auto;
    color: var(--fcu-training-red);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .fcu-training-card {
        padding: 30px;
    }

    .fcu-training-card__content {
        grid-template-columns: 1fr;
    }

    .fcu-training-card__location {
        align-items: center;
    }

}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 600px) {

    .fcu-training-card {
        padding: 24px 18px;
        border-radius: 10px;
    }

    .fcu-training-card__header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 23px;
        padding-bottom: 20px;
    }

    .fcu-training-card__heading {
        align-items: flex-start;
    }

    .fcu-training-card__heading-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .fcu-training-card__title {
        font-size: 28px;
        letter-spacing: -0.7px;
    }

    .fcu-training-card__schedule,
    .fcu-training-card__location {
        padding: 20px 17px;
    }

    .fcu-training-card__time-row {
        grid-template-columns: 1fr;
        gap: 3px;
        padding: 12px 14px;
    }

    .fcu-training-card__time {
        font-size: 14px;
    }

    .fcu-training-card__notice {
        padding: 14px;
    }

    .fcu-training-card__location {
        align-items: flex-start;
    }

}


/* =========================================================
   SEHR KLEINE DISPLAYS
   ========================================================= */

@media (max-width: 390px) {

    .fcu-training-card__heading-icon {
        display: none;
    }

}

/* ==========================================================================
   FC UNION ERFURT
   SPONSORING – PARTNERSCHAFTSKARTEN
   Bereinigte Arbeitsfassung V4
   Stand: 20.07.2026

   SP-Page-Builder-Zeilenklasse:
   fcu-partnership-row

   Aufbau je Karte:
   .fcu-partnership-card
   .fcu-partnership-card__icon
   .fcu-partnership-card__content
   .fcu-partnership-card__kicker
   .fcu-partnership-card__title
   .fcu-partnership-card__claim
   .fcu-partnership-card__text
   .fcu-partnership-card__list
   .fcu-partnership-card__footer
   ========================================================================== */


/* ==========================================================================
   01. OPTIONALER EINLEITUNGSBEREICH
   ========================================================================== */

.fcu-partnerships {
    position: relative;
    width: 100%;
    padding: clamp(36px, 5vw, 72px) 0;
    overflow: hidden;
}

.fcu-partnerships__intro {
    width: min(820px, 100%);
    margin: 0 auto clamp(32px, 4vw, 52px);
    padding: 0 20px;
    text-align: center;
}

.fcu-partnerships__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: #c9151e;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fcu-partnerships__eyebrow::before,
.fcu-partnerships__eyebrow::after {
    width: 28px;
    height: 2px;
    background: #c9151e;
    content: "";
}

.fcu-partnerships__title {
    margin: 0;
    color: #151515;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.fcu-partnerships__lead {
    max-width: 760px;
    margin: 20px auto 0;
    color: #5f5f5f;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.75;
}


/* ==========================================================================
   02. SP PAGE BUILDER – GLEICHE HÖHE ALLER DREI KARTEN
   ========================================================================== */

.fcu-partnership-row .sppb-row,
.fcu-partnership-row > .sppb-row-container > .sppb-row {
    align-items: stretch;
}

.fcu-partnership-row .sppb-row-column,
.fcu-partnership-row .sppb-column,
.fcu-partnership-row .sppb-column-addons,
.fcu-partnership-row .sppb-addon,
.fcu-partnership-row .sppb-addon-wrapper,
.fcu-partnership-row .sppb-addon-content {
    display: flex;
    width: 100%;
    min-height: 100%;
}

.fcu-partnership-row .sppb-column-addons {
    flex-direction: column;
}

.fcu-partnership-row .sppb-addon,
.fcu-partnership-row .sppb-addon-wrapper,
.fcu-partnership-row .sppb-addon-content {
    flex: 1 1 auto;
}

@media (min-width: 992px) {

    .fcu-partnership-row .sppb-row {
        display: flex;
        flex-wrap: nowrap;
    }

    .fcu-partnership-row .sppb-row > [class*="sppb-col"] {
        display: flex;
        flex: 1 1 0;
        width: 33.333333%;
        max-width: 33.333333%;
    }

}


/* ==========================================================================
   03. EINZELNE KARTE
   ========================================================================== */

.fcu-partnership-card {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    min-height: 660px;
    margin: 0;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(227, 6, 19, 0.045),
            transparent 34%
        ),
        linear-gradient(
            155deg,
            #ffffff 0%,
            #ffffff 58%,
            #fafafa 100%
        );
    border: 1px solid rgba(17, 17, 17, 0.085);
    border-radius: 22px;
    box-shadow:
        0 22px 54px rgba(0, 0, 0, 0.085),
        0 6px 18px rgba(0, 0, 0, 0.035);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.fcu-partnership-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background:
        linear-gradient(
            90deg,
            #8f0710 0%,
            #d71920 55%,
            #ff4248 100%
        );
    content: "";
}

.fcu-partnership-card::after {
    position: absolute;
    top: -100px;
    right: -105px;
    width: 220px;
    height: 220px;
    background: rgba(201, 21, 30, 0.055);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.fcu-partnership-card:hover {
    border-color: rgba(227, 6, 19, 0.22);
    box-shadow:
        0 30px 72px rgba(0, 0, 0, 0.13),
        0 10px 24px rgba(227, 6, 19, 0.055);
    transform: translateY(-6px);
}


/* ==========================================================================
   04. ICON
   ========================================================================== */

.fcu-partnership-card__icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin: 38px 34px 0;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #e02028 0%,
            #a50911 100%
        );
    border-radius: 18px;
    box-shadow:
        0 15px 30px rgba(183, 8, 18, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.30);
    font-size: 26px;
    transform: rotate(-3deg);
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.fcu-partnership-card__icon i {
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.fcu-partnership-card:hover .fcu-partnership-card__icon {
    box-shadow:
        0 16px 32px rgba(185, 10, 20, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transform: rotate(0deg) translateY(-2px);
}

.fcu-partnership-card:hover .fcu-partnership-card__icon i {
    transform: rotate(0deg);
}


/* ==========================================================================
   05. KARTENINHALT
   ========================================================================== */

.fcu-partnership-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 28px 34px 34px;
}

.fcu-partnership-card__kicker {
    margin: 0 0 9px;
    color: #c9151e;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fcu-partnership-card__title {
    margin: 0;
    color: #171717;
    font-size: clamp(23px, 2vw, 29px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.025em;
    hyphens: auto;
    overflow-wrap: normal;
    word-break: normal;
}

.fcu-partnership-card__title::after {
    display: block;
    width: 44px;
    height: 3px;
    margin-top: 15px;
    background:
        linear-gradient(
            90deg,
            #a80710 0%,
            #e21b23 100%
        );
    border-radius: 999px;
    content: "";
}

.fcu-partnership-card__claim {
    position: relative;
    margin: 17px 0 0;
    padding-left: 17px;
    color: #2d2d2d;
    font-size: 16px;
    font-weight: 750;
    line-height: 1.5;
}

.fcu-partnership-card__claim::before {
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 0;
    width: 4px;
    background: #c9151e;
    border-radius: 999px;
    content: "";
}

.fcu-partnership-card__text {
    margin: 20px 0 0;
    color: #676767;
    font-size: 15px;
    line-height: 1.72;
}


/* ==========================================================================
   06. LEISTUNGSLISTE
   ========================================================================== */

.fcu-partnership-card__list {
    display: grid;
    gap: 12px;
    margin: auto 0 0;
    padding: 23px 0 0;
    border-top: 1px solid rgba(17, 17, 17, 0.09);
    list-style: none;
}

.fcu-partnership-card__list li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    margin: 0;
    color: #393939;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.5;
}

.fcu-partnership-card__list li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    margin-top: 1px;
    color: #ffffff;
    background: #c9151e;
    border-radius: 50%;
    font-size: 9px;
}


/* ==========================================================================
   07. KLICKBARE FUSSLEISTE
   Feste Höhe sorgt trotz ein- oder zweizeiligem Text für gleiche Proportionen.
   ========================================================================== */

.fcu-partnership-card__footer,
.fcu-partnership-card__footer:link,
.fcu-partnership-card__footer:visited,
.fcu-partnership-card__footer:hover,
.fcu-partnership-card__footer:active,
.fcu-partnership-card__footer:focus {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 0 0 82px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-sizing: border-box;
    width: 100%;
    height: 82px;
    margin: 0;
    padding: 18px 34px;
    color: #ffffff !important;
    background:
        linear-gradient(
            115deg,
            #171717 0%,
            #222222 58%,
            #1c1c1c 100%
        );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    text-decoration: none !important;
}

.fcu-partnership-card__footer::before {
    position: absolute;
    top: 0;
    left: 34px;
    width: 46px;
    height: 3px;
    background: #d71920;
    content: "";
    transition: width 0.25s ease;
}

.fcu-partnership-card__footer span,
.fcu-partnership-card__footer:visited span,
.fcu-partnership-card__footer:hover span,
.fcu-partnership-card__footer:active span,
.fcu-partnership-card__footer:focus span {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fcu-partnership-card__footer i {
    flex: 0 0 auto;
    color: #e21b23;
    font-size: 17px;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.fcu-partnership-card__footer:hover::before,
.fcu-partnership-card__footer:focus::before {
    width: 76px;
}

.fcu-partnership-card__footer:hover i,
.fcu-partnership-card__footer:focus i {
    color: #ff3038;
    transform: translateX(6px);
}

.fcu-partnership-card__footer:focus {
    outline: none;
}

.fcu-partnership-card__footer:focus-visible {
    outline: 3px solid rgba(227, 6, 19, 0.55);
    outline-offset: -3px;
}


/* ==========================================================================
   08. TABLET
   ========================================================================== */

@media (max-width: 991px) {

    .fcu-partnership-row .fcu-partnership-card {
        min-height: 0;
    }

    .fcu-partnership-row .sppb-row > [class*="sppb-col"] {
        margin-bottom: 24px;
    }

    .fcu-partnership-row .sppb-row > [class*="sppb-col"]:last-child {
        margin-bottom: 0;
    }

    .fcu-partnership-card__title {
        font-size: 25px;
    }

}


/* ==========================================================================
   09. SMARTPHONE
   ========================================================================== */

@media (max-width: 767px) {

    .fcu-partnerships {
        padding: 38px 0;
    }

    .fcu-partnerships__intro {
        margin-bottom: 28px;
        padding: 0 18px;
        text-align: left;
    }

    .fcu-partnerships__eyebrow::before {
        display: none;
    }

    .fcu-partnerships__eyebrow::after {
        width: 35px;
    }

    .fcu-partnerships__lead {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.65;
    }

    .fcu-partnership-card {
        min-height: 0;
        border-radius: 18px;
    }

    .fcu-partnership-card:hover {
        transform: none;
    }

    .fcu-partnership-card__icon {
        width: 60px;
        height: 60px;
        margin: 30px 25px 0;
        border-radius: 16px;
        font-size: 23px;
    }

    .fcu-partnership-card__content {
        padding: 25px 25px 28px;
    }

    .fcu-partnership-card__title {
        font-size: 25px;
    }

    .fcu-partnership-card__title::after {
        margin-top: 13px;
    }

    .fcu-partnership-card__list {
        margin-top: 25px;
    }

    .fcu-partnership-card__footer,
    .fcu-partnership-card__footer:link,
    .fcu-partnership-card__footer:visited,
    .fcu-partnership-card__footer:hover,
    .fcu-partnership-card__footer:active,
    .fcu-partnership-card__footer:focus {
        flex-basis: 78px;
        height: 78px;
        padding-right: 25px;
        padding-left: 25px;
    }

    .fcu-partnership-card__footer::before {
        left: 25px;
    }

}


/* ==========================================================================
   10. SEHR KLEINE DISPLAYS
   ========================================================================== */

@media (max-width: 390px) {

    .fcu-partnership-card__content {
        padding-right: 21px;
        padding-left: 21px;
    }

    .fcu-partnership-card__title {
        font-size: 23px;
    }

    .fcu-partnership-card__footer,
    .fcu-partnership-card__footer:link,
    .fcu-partnership-card__footer:visited,
    .fcu-partnership-card__footer:hover,
    .fcu-partnership-card__footer:active,
    .fcu-partnership-card__footer:focus {
        padding-right: 21px;
        padding-left: 21px;
    }

    .fcu-partnership-card__footer::before {
        left: 21px;
    }

}

/* ==========================================================================
   MANNSCHAFTS-HERO – ZWEI SPONSOREN
   ========================================================================== */

@media (min-width: 992px) {

    /* Sponsorbereich übernimmt die bisherige Position des Sponsors */
    .fcu-team-hero--premium .fcu-team-hero__sponsors {
        grid-column: 2;
        grid-row: 1;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;

        width: 100%;
        height: 238px;
        min-width: 0;
    }

    /* Alte direkte Grid-Positionierung des Sponsors aufheben */
    .fcu-team-hero--premium
    .fcu-team-hero__sponsors
    .fcu-team-hero__sponsor {
        grid-column: auto;
        grid-row: auto;

        width: 100%;
        height: 238px;
        min-height: 238px;
        min-width: 0;
        margin: 0;
        padding: 22px 20px;

        box-sizing: border-box;
    }

    /* Logos an zwei kleinere Karten anpassen */
    .fcu-team-hero--premium
    .fcu-team-hero__sponsors
    .fcu-team-hero__sponsor img {
        width: auto;
        max-width: 100%;
        max-height: 90px;
        object-fit: contain;
    }

    /* Fußball.de bleibt wie bisher rechts unten */
    .fcu-team-hero--premium .fcu-team-hero__football {
        grid-column: 2;
        grid-row: 2;
    }
}


/* TABLET */
@media (max-width: 991px) {

    .fcu-team-hero--premium .fcu-team-hero__sponsors {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        width: 100%;
    }

    .fcu-team-hero--premium
    .fcu-team-hero__sponsors
    .fcu-team-hero__sponsor {
        width: 100%;
        height: auto;
        min-height: 210px;
        margin: 0;
        box-sizing: border-box;
    }
}


/* SMARTPHONE */
@media (max-width: 767px) {

    .fcu-team-hero--premium .fcu-team-hero__sponsors {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .fcu-team-hero--premium
    .fcu-team-hero__sponsors
    .fcu-team-hero__sponsor {
        min-height: 0;
    }
}

/* ==========================================================================
   FC UNION ERFURT
   MANNSCHAFTS-HERO – PARTNERLAYOUT + TRAINERPORTRAITS
   Klasse im HTML:
   fcu-team-hero fcu-team-hero--premium fcu-team-hero--partners
   ========================================================================== */


/* ==========================================================================
   DESKTOP
   ========================================================================== */

@media (min-width: 992px) {

    /* ----------------------------------------------------------------------
       HAUPTLAYOUT
       ---------------------------------------------------------------------- */

    .fcu-team-hero--partners .fcu-team-hero__top {
        grid-template-columns:
            minmax(0, 1.34fr)
            minmax(360px, .96fr);

        grid-template-rows: auto;

        column-gap: 34px;
        row-gap: 0;

        align-items: stretch;
    }


    /* ----------------------------------------------------------------------
       LINKE SPALTE
       ---------------------------------------------------------------------- */

    .fcu-team-hero--partners .fcu-team-hero__main {
        grid-column: 1;
        grid-row: 1;

        display: flex;
        flex-direction: column;

        min-width: 0;
        align-self: stretch;
    }


    /* Jahrgänge + Spielklasse */

    .fcu-team-hero--partners
    .fcu-team-hero__main
    .fcu-team-hero__facts {
        width: 100%;
        margin-top: auto;
    }


    /* ----------------------------------------------------------------------
       FUSSBALL.DE
       Unter Jahrgänge + Spielklasse
       ---------------------------------------------------------------------- */

    .fcu-team-hero--partners
    .fcu-team-hero__main
    .fcu-team-hero__football {

        grid-column: auto;
        grid-row: auto;

        width: 100%;
        max-width: none;

        height: 92px;
        min-height: 92px;

        margin-top: 14px;

        box-sizing: border-box;
    }


    /* ----------------------------------------------------------------------
       RECHTE SPALTE
       ---------------------------------------------------------------------- */

    .fcu-team-hero--partners .fcu-team-hero__partner-column {

        grid-column: 2;
        grid-row: 1;

        display: grid;

        /*
           Oben: Hauptsponsor
           Unten: Ausstattungspartner
        */

        grid-template-rows: 1fr 92px;

        gap: 14px;

        width: 100%;
        min-width: 0;
    }


    /* ----------------------------------------------------------------------
       HAUPTSPONSOR
       ---------------------------------------------------------------------- */

    .fcu-team-hero--partners
    .fcu-team-hero__partner-column
    .fcu-team-hero__sponsor {

        grid-column: auto;
        grid-row: auto;

        width: 100%;
        max-width: none;

        height: auto;
        min-height: 0;

        margin: 0;

        box-sizing: border-box;
    }


    .fcu-team-hero--partners
    .fcu-team-hero__partner-column
    .fcu-team-hero__sponsor img {

        width: auto;

        max-width: 260px;
        max-height: 116px;

        object-fit: contain;
        object-position: center;
    }


    /* ----------------------------------------------------------------------
       AUSSTATTUNGSPARTNER
       ---------------------------------------------------------------------- */

    .fcu-team-hero--partners .fcu-team-hero__equipment {

        position: relative;

        display: flex;
        flex-direction: column;
        justify-content: center;

        width: 100%;

        height: 92px;
        min-height: 92px;

        padding: 14px 20px;

        color: #fff;

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

        border: 1px solid rgba(255, 255, 255, .085);
        border-left: 3px solid var(--union-rot);
        border-radius: 12px;

        box-sizing: border-box;
    }


    .fcu-team-hero--partners
    .fcu-team-hero__equipment-kicker {

        display: block;

        margin: 0 0 7px;

        color: rgba(255, 255, 255, .50);

        font-size: 10px;
        font-weight: 800;
        line-height: 1.2;

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


    .fcu-team-hero--partners
    .fcu-team-hero__equipment-list {

        display: flex;
        flex-wrap: wrap;
        align-items: center;

        gap: 4px 18px;

        margin: 0;
        padding: 0;
    }


    .fcu-team-hero--partners
    .fcu-team-hero__equipment-list span {

        position: relative;

        color: #fff;

        font-size: 14px;
        font-weight: 750;
        line-height: 1.35;
    }


    /* Rote Punkte zwischen Ausstattungspartnern */

    .fcu-team-hero--partners
    .fcu-team-hero__equipment-list
    span:not(:last-child)::after {

        position: absolute;

        top: 50%;
        right: -10px;

        width: 3px;
        height: 3px;

        background: var(--union-rot);
        border-radius: 50%;

        content: "";

        transform: translateY(-50%);
    }

}



/* ==========================================================================
   TRAINERPORTRAITS
   ========================================================================== */


/* Trainerkarte mit Bild */

.fcu-team-hero--partners
.fcu-team-hero__staff-card--photo {

    display: flex;

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

    gap: 20px;

    /*
       Rechts etwas weniger Padding,
       damit das Portrait schön am Rand sitzt.
    */

    padding-top: 10px;
    padding-right: 16px;
    padding-bottom: 10px;
}


/* Textbereich */

.fcu-team-hero--partners
.fcu-team-hero__staff-info {

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;
}


/* Trainerportrait */

.fcu-team-hero--partners
.fcu-team-hero__staff-photo {

    display: block;

    flex: 0 0 78px;

    width: 78px;
    height: 78px;

    object-fit: cover;
    object-position: center;

    border: 2px solid rgba(255, 255, 255, .16);
    border-radius: 50%;

    background: rgba(255, 255, 255, .06);

    box-shadow:
        0 4px 14px rgba(0, 0, 0, .22);

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


/* Hover */

.fcu-team-hero--partners
.fcu-team-hero__staff-card--photo:hover
.fcu-team-hero__staff-photo {

    transform: scale(1.06);

    border-color: var(--union-rot);

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .30);
}



/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 991px) {

    /* Partner-Spalte */

    .fcu-team-hero--partners
    .fcu-team-hero__partner-column {

        display: grid;

        width: 100%;

        gap: 14px;
    }


    /* Fußball.de */

    .fcu-team-hero--partners
    .fcu-team-hero__main
    .fcu-team-hero__football {

        width: 100%;

        margin-top: 14px;
    }


    /* Ausstattungspartner */

    .fcu-team-hero--partners
    .fcu-team-hero__equipment {

        width: 100%;

        height: auto;
        min-height: 82px;

        padding: 16px 20px;

        color: #fff;

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

        border: 1px solid rgba(255, 255, 255, .085);
        border-left: 3px solid var(--union-rot);
        border-radius: 12px;

        box-sizing: border-box;
    }


    .fcu-team-hero--partners
    .fcu-team-hero__equipment-list {

        display: flex;
        flex-wrap: wrap;

        gap: 5px 18px;
    }


    /* Trainerportrait */

    .fcu-team-hero--partners
    .fcu-team-hero__staff-photo {

        flex-basis: 70px;

        width: 70px;
        height: 70px;
    }

}



/* ==========================================================================
   SMARTPHONE
   ========================================================================== */

@media (max-width: 767px) {

    /* Ausstattungspartner untereinander */

    .fcu-team-hero--partners
    .fcu-team-hero__equipment-list {

        flex-direction: column;
        align-items: flex-start;

        gap: 5px;
    }


    /* Keine roten Trenner auf Smartphone */

    .fcu-team-hero--partners
    .fcu-team-hero__equipment-list
    span::after {

        display: none !important;
    }


    /* Trainerkarten */

    .fcu-team-hero--partners
    .fcu-team-hero__staff-card--photo {

        gap: 12px;

        padding-top: 10px;
        padding-right: 12px;
        padding-bottom: 10px;
    }


    /* Portrait etwas kleiner */

    .fcu-team-hero--partners
    .fcu-team-hero__staff-photo {

        flex: 0 0 62px;

        width: 62px;
        height: 62px;
    }

}



/* ==========================================================================
   SEHR KLEINE SMARTPHONES
   ========================================================================== */

@media (max-width: 480px) {

    .fcu-team-hero--partners
    .fcu-team-hero__staff-photo {

        flex: 0 0 56px;

        width: 56px;
        height: 56px;
    }


    .fcu-team-hero--partners
    .fcu-team-hero__staff-card--photo {

        gap: 10px;
        padding-right: 10px;
    }

}

/* =========================================================
   FC UNION ERFURT – JOOMLA BEITRÄGE
   ========================================================= */


/* =========================================================
   BEITRAGSBEREICH
   ========================================================= */

.view-article .article,
.view-category .article {
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   HAUPTÜBERSCHRIFT
   ========================================================= */

.view-article .article-header h1,
.view-article .article-header h2 {
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
    font-weight: 700;
    color: #151515;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}


/* Roter Akzent unter Titel */

.view-article .article-header::after {
    content: "";
    display: block;
    width: 65px;
    height: 3px;
    background: #e30613;
    margin-top: 15px;
}


/* =========================================================
   META-DATEN
   Kategorie / Datum
   ========================================================= */

.view-article .article-info,
.view-article .article-info dd,
.view-article .article-info a {
    font-size: 13px;
    color: #777;
}

.view-article .article-info {
    margin-bottom: 26px;
}


/* =========================================================
   FLIESSTEXT
   ========================================================= */

.view-article .article-body,
.view-article .article-body p,
.view-article .com-content-article__body {
    font-size: 17px;
    line-height: 1.7;
    color: #252525;
}


/* Absätze */

.view-article .com-content-article__body p {
    margin-bottom: 18px;
}


/* =========================================================
   ZWISCHENÜBERSCHRIFTEN
   ========================================================= */

.view-article .com-content-article__body h2,
.view-article .com-content-article__body h3,
.view-article .com-content-article__body h4 {
    font-weight: 700;
    color: #151515;
    margin-top: 28px;
    margin-bottom: 12px;
}


/* =========================================================
   LISTEN
   ========================================================= */

.view-article .com-content-article__body ul {
    padding-left: 24px;
    margin: 12px 0 22px;
}

.view-article .com-content-article__body li {
    margin-bottom: 6px;
    line-height: 1.55;
}


/* =========================================================
   LINKS IM BEITRAG
   ========================================================= */

body.view-article .article-details a:not(.page-link),
body.view-article .com-content-article a:not(.page-link),
body.view-article .item-page a:not(.page-link),
.view-article .com-content-article__body a,
.view-article .article-body a {
    color: #e30613 !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: color 0.2s ease;
}

body.view-article .article-details a:not(.page-link):hover,
body.view-article .com-content-article a:not(.page-link):hover,
body.view-article .item-page a:not(.page-link):hover,
.view-article .com-content-article__body a:hover,
.view-article .article-body a:hover {
    color: #a80009 !important;
    text-decoration: underline !important;
}


/* =========================================================
   BEITRAGSNAVIGATION
   ZURÜCK / WEITER
   ========================================================= */

body.view-article .pagenavigation {
    margin-top: 45px;
}


/* Navigation über komplette Breite */

body.view-article .pagenavigation .pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
}


/* Listenelemente zurücksetzen */

body.view-article .pagenavigation .page-item {
    list-style: none;
    border: 0 !important;
    background: transparent !important;
}


/* Dezente Buttons */

body.view-article .pagenavigation .page-link,
body.view-article .pagenavigation a {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;

    background: #f5f5f5 !important;
    color: #444444 !important;

    border: 1px solid #dddddd !important;
    border-radius: 4px !important;

    padding: 8px 13px !important;

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

    text-decoration: none !important;

    box-shadow: none !important;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease !important;
}


/* Hover – schlicht und dezent */

body.view-article .pagenavigation .page-link:hover,
body.view-article .pagenavigation a:hover {
    background: #ffffff !important;
    border-color: #e30613 !important;
    color: #e30613 !important;

    text-decoration: none !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Runde Ecken auch bei Bootstrap erzwingen */

body.view-article .pagenavigation .page-item:first-child .page-link,
body.view-article .pagenavigation .page-item:last-child .page-link {
    border-radius: 4px !important;
}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 767px) {

    .view-article .article-header h1,
    .view-article .article-header h2 {
        font-size: 28px;
    }

    .view-article .article-body,
    .view-article .article-body p,
    .view-article .com-content-article__body {
        font-size: 16px;
    }

    body.view-article .pagenavigation {
        margin-top: 30px;
    }

    body.view-article .pagenavigation .page-link,
    body.view-article .pagenavigation a {
        padding: 8px 11px !important;
        font-size: 12px !important;
    }
}

/* =========================================================
   BLOGANSICHT – LINKS IM BEITRAG IMMER UNION-ROT
   ========================================================= */

/* Normal */
body.view-category .blog-item .item-content a:not(.btn),
body.view-category .article-introtext a,
body.view-category .article-body a {
    color: #e30613 !important;
    text-decoration: none !important;
}

/* Hover / Focus / Active */
body.view-category .blog-item .item-content a:not(.btn):hover,
body.view-category .blog-item .item-content a:not(.btn):focus,
body.view-category .blog-item .item-content a:not(.btn):active,
body.view-category .article-introtext a:hover,
body.view-category .article-introtext a:focus,
body.view-category .article-body a:hover,
body.view-category .article-body a:focus {
    color: #a80009 !important;
    text-decoration: underline !important;
}

/* Links im Einleitungstext */

.fcu-home-news .sppb-article-introtext a {
    color: var(--union-rot) !important;
    text-decoration: none !important;
    font-weight: 500;
}

.fcu-home-news .sppb-article-introtext a:hover,
.fcu-home-news .sppb-article-introtext a:focus {
    color: var(--union-dunkelrot) !important;
    text-decoration: underline !important;
}

/* =========================================
   FC UNION ERFURT – QR LANDINGPAGE
   ========================================= */

.fcu-qr-card {
    background: #ffffff;
    border-top: 4px solid #d71920;
    border-radius: 14px;
    padding: 30px 26px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* dezenter roter Hintergrund-Akzent */
.fcu-qr-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -50px;
    top: -50px;
    background: rgba(215, 25, 32, 0.07);
    border-radius: 50%;
}

.fcu-qr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
}

/* Icon */
.fcu-qr-icon {
    width: 58px;
    height: 58px;
    background: #d71920;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    box-shadow: 0 5px 15px rgba(215, 25, 32, 0.25);
}

/* kleine rote Überschrift */
.fcu-qr-kicker {
    color: #d71920;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 7px;
}

/* Hauptüberschrift */
.fcu-qr-card h3 {
    color: #181818;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 14px 0;
}

/* kurzer roter Strich */
.fcu-qr-card h3::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    background: #d71920;
    margin-top: 13px;
}

/* Beschreibung */
.fcu-qr-card p {
    color: #555555;
    font-size: 16px;
    line-height: 1.55;
    margin: 0 0 25px 0;
}

/* Button */
.fcu-qr-button {
    display: inline-block;
    background: #d71920;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 22px;
    border-radius: 7px;
    transition: all 0.2s ease;
}

.fcu-qr-button:hover {
    background: #111111;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Smartphone */
@media (max-width: 767px) {

    .fcu-qr-card {
        padding: 24px 20px;
        margin-bottom: 20px;
    }

    .fcu-qr-card h3 {
        font-size: 22px;
    }

    .fcu-qr-card p {
        font-size: 15px;
    }

    .fcu-qr-button {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 15px;
    }
}

/* Abstand zwischen den QR-Karten */
.fcu-qr-cards .sppb-row {
    row-gap: 25px;
}

/* QR-Karten auf gleiche Höhe bringen */
.fcu-qr-cards .sppb-column,
.fcu-qr-cards .sppb-column-addons {
    height: 100%;
}

/* Smartphone */
@media (max-width: 767px) {
    .fcu-qr-cards .sppb-column {
        margin-bottom: 20px;
    }

    .fcu-qr-cards .sppb-column:last-child {
        margin-bottom: 0;
    }
}