/* =========================================================
   MeinVerein des Jahres 2026 – Landingpage
   Design-Tokens aus Figma (MVDJ-2026-LP)
   ========================================================= */

@font-face {
    font-family: 'Geologica';
    src: url('../font/Geologica-VariableFont_CRSV-SHRP-slnt-wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Primärfarben */
    --mvdj-darkblue: #0c254e;
    --mvdj-blue: #023e84;
    --mvdj-yellow: #ffe620;
    --mvdj-orange: #fa7d19;

    /* Sekundärfarben */
    --mvdj-lightblue: #eff4fa;
    --mvdj-white: #ffffff;
    --mvdj-black: #000000;
    --mvdj-grey-100: #fafafa;
    --mvdj-grey-200: #f5f5f5;
    --mvdj-grey-400: #454545;
    --mvdj-grey-500: #222222;
    --mvdj-blue-grey-100: #f4f5f7;
    --mvdj-blue-grey-150: #cbd1d9;
    --mvdj-blue-grey-200: #7c8289;

    /* Bootstrap-Variablen überschreiben */
    --bs-primary: var(--mvdj-blue);
    --bs-body-color: var(--mvdj-grey-500);
    --bs-body-font-family: "Geologica", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    --mvdj-gradient: linear-gradient(160deg, #0c254e 0%, #023e84 100%);
}

/* ---------- Basis ---------- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Geologica', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--mvdj-grey-500);
    background-color: var(--mvdj-white);
}

section {
    scroll-margin-top: 90px;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    color: var(--mvdj-darkblue);
    letter-spacing: -0.01em;
}

.text-darkblue {
    color: var(--mvdj-darkblue) !important;
}

.text-blue {
    color: var(--mvdj-blue) !important;
}

.text-orange {
    color: var(--mvdj-orange) !important;
}

.text-yellow {
    color: var(--mvdj-yellow) !important;
}

.bg-darkblue {
    background-color: var(--mvdj-darkblue) !important;
}

.bg-blue {
    background-color: var(--mvdj-blue) !important;
}

.bg-lightblue {
    background-color: var(--mvdj-lightblue) !important;
}

.bg-mvdj-gradient {
    background: var(--mvdj-gradient) !important;
}

.btn-white-border-hover{
    border: 2px solid transparent !important;
    &:hover {
        border: 2px solid #FFF !important;
    }
}

/* ---------- Buttons ---------- */
.btn-mvdj {
    background-color: var(--mvdj-orange);
    color: var(--mvdj-white);
    border: none;
    border-radius: 999px;
    padding: 14px 18px !important;
    font-weight: 300;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-mvdj:hover {
    background-color: #e96e0d;
    color: var(--mvdj-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 125, 25, 0.35);
}

.btn-mvdj-outline {
    background-color: transparent;
    color: var(--mvdj-darkblue);
    border: 1.5px solid var(--mvdj-blue-grey-150);
    border-radius: 999px;
    padding: 0.75rem 1.75rem;
    font-weight: 400;
    transition: all 0.15s ease;
}

.btn-mvdj-outline:hover {
    border-color: var(--mvdj-blue);
    color: var(--mvdj-blue);
}

.btn-mvdj-light {
    background-color: var(--mvdj-white);
    color: var(--mvdj-darkblue);
    border: none;
    border-radius: 999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    transition: all 0.15s ease;
}

.btn-mvdj-light:hover {
    color: var(--mvdj-blue);
    transform: translateY(-2px);
}

.btn-white-border-hover {
    border: 2px solid transparent;
}
.btn-white-border-hover:hover {
    border: 2px solid #FFF;
}
/* ---------- Badge / Eyebrow ---------- */
.mvdj-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 7px;
    padding: 6px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid #D1D5DB;
    color: var(--color-secondary-grey-500, #222);
    text-align: center;
    font-family: Geologica;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    /* 150% */
    letter-spacing: 1px;
    text-transform: uppercase;
}
.small-brow {
    padding: 6px 8px;
    display: inline-flex;
    align-items: center;
  
}
.mvdj-eyebrow--light {
    color: var(--mvdj-white);
  
    border-color: rgba(255, 255, 255, 0.25);
}

/* ---------- Navbar ---------- */
.navbar-mvdj {
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--mvdj-blue-grey-100);
    transition: box-shadow 0.2s ease;
}

.navbar-mvdj.scrolled {
    box-shadow: 0 4px 24px rgba(12, 37, 78, 0.08);
}

.navbar-mvdj .navbar-brand {
    font-weight: 800;
    color: var(--mvdj-darkblue);
    font-size: 1.25rem;
}

.navbar-mvdj .nav-link {
    color: var(--mvdj-grey-500);
    font-weight: 300;
    padding: 0.5rem 0.9rem;
}

li.nav-item a::after {
    content: ' ';
    display: inline-block;
    width: 1px;
    height: 10px;
    background-color: #7C8289;
   position: relative;
    opacity: 0.5;
    left:10px;
    margin-left: 10px;
margin-right: 10px;
    
}
li.nav-item:last-child a::after{
    display: none;
}

/* Mobile: Keine Separator-Striche unter 1200px */
@media (max-width: 1199.98px) {
    li.nav-item a::after {
        display: none;
    }
}
.navbar-mvdj .nav-link:hover,
.navbar-mvdj .nav-link.active {
    color: var(--mvdj-blue);
}

/* ---------- Hero ---------- */
.hero {
    background: var(--blue-gradient, linear-gradient(297deg, #1C4993 27.33%, #002259 85.04%));
    color: var(--mvdj-white);
    position: relative;
    overflow: hidden;
    padding: 8rem 0 13rem;

}


.hero-title {
    color: var(--mvdj-white);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
}



/* Gläserner Award-Orb */
.hero-award {
    margin: 0 auto 2.5rem;
    width: 100%;
    margin-top: -100px;
    margin-left: -88px;
}

.hero-buttons {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}
img.undoder{
    position: absolute;
    top: 60.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

@media(max-width: 992px){

    img.undoder{
         position: relative;
    top: 0px;
    }
    .hero-award {
        margin-left: -15%;
    }
}

/*

Buttons

*/
.btn-base {
    display: flex;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    padding: 8px 16px;
}

.btn-shimmer {
    background: rgba(255, 255, 255, 0.07);
    ;
}

.btn-orange {
  background: var(--color-primary-orange, #FA7D19);
}




#worum-gehts {
    border-radius: 40px 40px 0 0;
    position: relative;
    z-index: 1;
    top: -30px;

}
@media (max-width: 1200px) {
    #worum-gehts {
        top: -120px;
    }
}
#worum-gehts .mvdj-card,#worum-gehts .mvdj-card-dark{

box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.05);
}
.headline24 {
    color: var(--color-secondary-grey-500, #222);
    text-align: center;
    font-family: Geologica;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    /* 141.667% */
}
#btn-testen-footer{
    text-decoration: none;
}
.headline16 {
    color: var(--color-secondary-grey-500, #222);
font-family: Geologica;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25.949px; /* 162.18% */
letter-spacing: -0.117px;
}
.headline18 {
    color: var(--color-secondary-grey-500, #222);
font-family: Geologica;
font-size: 18px !important;
font-style: normal;
font-weight: 400 !important;
line-height: 25.949px; /* 162.18% */
letter-spacing: -0.117px;
}
.paragraph18 {
    color: var(--color-secondary-blue-grey-200, #7C8289);
    text-align: center;
    font-family: Geologica;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    /* 166.667% */
    letter-spacing: -0.078px;
}
.paragraph18 span {
    color: #222
}
@media (max-width: 992px) {
    .paragraph18 {
        font-size: 15px;
    }
    .paragraph18.mobile14 {
        font-size: 14px;
    }
    
}

.span28 span {
    font-size: 28px;
}
.paragraph18.whity {
    color: #CBD1D9;
}



.paragraph18.whity span {
    color: #fff;
}

.preisgeld-card {
    background-image: url(../img/wave.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;

    width: 100%;
    z-index: 100;
}

.blue-badge {
    display: inline-flex;
    
    padding: 10px 20px;
    flex-direction: row;
    align-items: flex-start;
    gap: 2px;
    background-color: #4D85C6;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.47);
    text-align: center;
    font-family: Geologica;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.078px;
}
.blue-badge span {
    color: var(--color-secondary-white, #fff);
}
.preisgeld-badge-abs {
left: 45%;
position: absolute;
}
.grey-badge {
    display: inline-flex;
  flex-direction: row;
    padding: 10px 20px;
    
    align-items: flex-start;
    gap: 2px;
    background: var(--color-secondary-blue-grey-100, #F4F5F7);
    border-radius: 10px;
    color: var(--color-secondary-grey-500, #919DAB);
    text-align: center;
    font-family: Geologica;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.078px;

}
.grey-badge span {
    color: var(--color-secondary-blue, #222);
}

.white-badge{
        display: inline-flex;
  flex-direction: row;
    padding: 10px 20px;
    
    align-items: flex-start;
    gap: 2px;
    background: var(--color-secondary-blue-grey-100, #F4F5F7);
    border-radius: 10px;
    color: var(--color-secondary-grey-500, #919DAB);
    text-align: center;
    font-family: Geologica;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.078px;
    border-radius: 12px;
border: 1px solid #F1F1F1;
background: #FFF;
box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.05);
}
.white-badge span {
    color: var(--color-secondary-blue, #222);
}

.preisgeld-line {
    width: 1px;
    height: 60px;
    background-color: #4D85C6;
    position: absolute;
    left: 60%;
    top:35%
}
.frm_message{
    color:white !important;
}
.img-buzz {
    width: 100%;
    max-width: 240px;
}

@media (max-width: 768px) {
    .img-buzz {
       max-width: 185px;
    padding-bottom: 10px;
    }
    .img-stadium{
        padding-bottom: 1rem;
    }
}
.bt-lightblue{
    border-top: 1.535px solid var(--Hellblau, #EFF4FA);
}

/* ---------- Cards / Bento ---------- */
.mvdj-card {
    background-color: var(--mvdj-white);
    border: 1px solid var(--mvdj-blue-grey-100);
    border-radius: 1.25rem;
    padding: 1.75rem;
    height: 97%;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.mini{
     padding: 10px 20px;
     padding-bottom:30px
}
.greyi{
    border-radius: 7px;
background: var(--color-secondary-grey-200, #F5F5F5);
}

.awardpadding{
    padding:46px !important;
}
.whiter{
     background: rgba(255, 255, 255, 0.06);    border: 1px solid rgba(255, 255, 255, 0.08);
}
.no-border.br-500{
    border: none !important;
    border-radius: 500px !important;
}
.no-border{
    border: none !important;
}
.fw400{
    font-weight: 300;
}
.border-white-light{
    border-color:rgba(255,255,255,.17) !important;
}
.mvdj-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(12, 37, 78, 0.1);
}

.mvdj-card .stat {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--mvdj-blue);
}
.bedingungen {
    color:white;font-size:12px;opacity:0.8;
}


.mvdj-card-dark {
    background: var(--mvdj-gradient);
    color: var(--mvdj-white);
    border: none;
    border-radius: 1.25rem;
    padding: 1.75rem;
    height: 100%;
}

@media (max-width: 768px) {
    .mvdj-card-dark, .mvdj-card {
        padding: 0.5rem 1rem;
    }
   
}
@media (max-width: 1200px) {
   .mvdj-card-dark-mobile {
    background: var(--mvdj-gradient);
    color: var(--mvdj-white);
    border: none;
    border-radius: 1.25rem;
    padding: 1.75rem;
    height: 100%;
}

.mvdj-card-dark-mobile  span, .mvdj-card-dark-mobile  p {
    color: rgba(255,255,255,.6);
}
.mvdj-card-dark-mobile  br {
   display: none;
}
.mvdj-card-dark-mobile .blue-badge span {
    color: rgba(255,255,255,1);
}
.bluecard{
    height: auto;
    padding: 1rem 1.5rem !important;
}
}



.mvdj-card-dark h3,
.mvdj-card-dark .stat {
    color: var(--mvdj-white);
}

.p-1-2 {
    padding:6px
}
.fs14{
    font-size: 14px;
    line-height: 23.031px; /* 164.511% */
letter-spacing: 0.18px;
font-weight: 300;
}
.fs12{
    font-size: 14px !important;
    line-height: 23.031px; /* 191.929% */
    letter-spacing: 0.18px;
    font-weight: 300;

}
.fs10{
    font-size: 10px !important;
    line-height: 23.031px; /* 191.929% */
    letter-spacing: 0.18px;
    font-weight: 300;

}
.fs11{

font-family: Geologica;
font-size: 13px;
font-style: normal;
font-weight: 400;
line-height: 17.05px; /* 155% */
letter-spacing: 0.066px;}
.fswhitegrey{
   color: var(--color-secondary-blue-grey-150, #CBD1D9) !important;
}
.fswhiter{
   color:  #F4F5F7 !important;
}
.fsgrey{
    color: var(--Grau, #6A7282);
}
.small-icon{
    width: 14.997px;
height: 15px;
aspect-ratio: 15.00/15.00;
margin-right: -4px;
}
.mvdj-card-white {
    background: #fff;
  color: #6B7280;

font-family: Geologica;
font-size: 11px;
font-style: normal;
font-weight: 400;
line-height: 17.05px; /* 155% */
letter-spacing: 0.066px;
    border: none;
    border-radius: 1.25rem;
    padding: 1.75rem;
    height: 100%;
}
.card-small-icon{
    width: 28px;
    height: 28px;
    border-radius: 9999px;
    border: 1px solid #D1D5DB;
}
.pricing-image{
    width: 80px;
    max-width: 120px;
}
.pricing-image-portrait{
    width: 50px;
    max-width: 120px;
}

/* Bild-Platzhalter */
.mvdj-placeholder {
    background: linear-gradient(135deg, var(--mvdj-lightblue), var(--mvdj-blue-grey-100));
    border: 1px dashed var(--mvdj-blue-grey-150);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mvdj-blue-grey-200);
    font-size: 0.85rem;
    text-align: center;
    min-height: 180px;
}

.mvdj-placeholder--video {
    position: relative;
    min-height: 420px;
    background: #fff;
    color: rgba(255, 255, 255, 0.7);
}

.mvdj-placeholder--video .play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--mvdj-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.mvdj-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mvdj-lightblue), var(--mvdj-blue-grey-150));
    margin: 0 auto;
}

.mvdj-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}


.mvdj-logobar,.blue-gradient-bg {
    background: var(--blue-gradient, linear-gradient(297deg, #1C4993 27.33%, #002259 85.04%));  
}



.footer-link-gewinner {
    border-top: 1.535px solid var(--Hellblau, #EFF4FA);

}
.footer-link-gewinner a {
    color: var(--color-secondary-grey-400, #454545);
    font-family: Geologica;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.031px; /* 191.929% */
    letter-spacing: 0.18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-link-gewinner a::after {
    content: '';
    display: inline-block;
background-repeat: no-repeat;
    background-image: url('../img/chevron-right.svg');
    width: 8px;
height: 8px;
background-size: contain;
transition: transform 0.15s ease;
}
.footer-link-gewinner a:hover::after {
    transform: rotate(90deg);transition: transform 0.15s ease;
}
.h-96{
    height: 96% !important;
}
/* ---------- Kategorie-Tabs ---------- */
.category-item {
    position: relative;
    border: 1px solid var(--mvdj-blue-grey-100);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--mvdj-white);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(12, 37, 78, 0.05);
    transition: all 0.15s ease;
}

.category-item:hover {
    border-color: var(--mvdj-blue-grey-150);
}

.category-item.active {
    border: 5px solid transparent;
    background:
        linear-gradient(var(--mvdj-white), var(--mvdj-white)) padding-box,
        var(--gold-gradient, linear-gradient(51deg, #B07E10 -6.21%, #E1BF5C 55.77%, #F5DA7B 85.36%, #FFEEA1 140.08%, #F5DA7B 197.6%, #B07E10 272.98%)) border-box;
}

/* Pointer der aktiven Kategorie zum Detail-Panel */
.category-item.active::after {
    content: '';
    position: absolute;
    top: 40%;
    right: -12px;
    transform: translateY(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    border-radius: 0 4px 0 0;
    border: 5px solid transparent;
    border-bottom: 0;
    border-left: 0;
    background:
        linear-gradient(var(--mvdj-white), var(--mvdj-white)) padding-box,
        linear-gradient(#F5DA7B, #F5DA7B) border-box;
}

@media (max-width: 991.98px) {
    .category-item.active::after {
        display: none;
    }
}

.category-item .cat-title {
    font-weight: 700;
    color: var(--mvdj-darkblue);
}

/* Trenner zwischen Community und Projekt-Awards */
.category-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0 0.5rem;
}

.category-divider::before,
.category-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--mvdj-blue-grey-150);
}

.category-divider span {
  background: var(--gold-gradient, linear-gradient(51deg, #B07E10 -6.21%, #E1BF5C 55.77%, #F5DA7B 85.36%, #FFEEA1 140.08%, #F5DA7B 197.6%, #B07E10 272.98%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size:30PX;
MARGIN: 0 20px;
}

/* Beschreibungsbox im Detail-Panel */
.prize-intro {
    background: var(--color-secondary-grey-100, #FAFAFA);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
}

/* Preis-Tier-Zeilen */
.prize-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--mvdj-blue-grey-100);
}

.prize-row:last-child {
    border-bottom: 0;
}

.prize-row .rank {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    background: var(--mvdj-darkblue);
    color: var(--mvdj-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.prize-row .rank--gold {
    background: linear-gradient(135deg, #f5da7b, #b07e10);
}

.prize-row .rank--silver {
    background: linear-gradient(135deg, #e4e4e4, #9a9a9a);
}

.prize-row .rank--bronze {
    background: linear-gradient(135deg, #d99b63, #a85e1f);
}

.prize-row .rank--brown {
    background: #8a5a2b;
    border-radius: 0.5rem;
}

/* ---------- Ablauf / Timeline ---------- */
.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 2rem;
    position: relative;
}

/* Vertikale Linie durch alle Steps */
.timeline-container::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    background: rgba(255, 255, 255, 0.18);
    z-index: 0;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;left: -30px;
}
.timeline-step h3{
    text-align: left !important;
    font-size: 15px !important;
}
.timeline-step .step-num {
    position: relative;
    flex-shrink: 0;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2F5491;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.timeline-step .step-num.active {
    background: var(--mvdj-orange);
    box-shadow: 0 0 0 6px rgba(250, 125, 25, 0.18);
}

.timeline-step .step-content {
    padding-top: 0.25rem;
}
.timeline-step .step-content p{
    text-align: left !important;
}
.timeline-step:hover .step-num:not(.active) {
    background: var(--mvdj-orange);
    box-shadow: 0 0 0 6px rgba(250, 125, 25, 0.18);
    transform: translateY(-2px);
}

/* Desktop: 5 Spalten horizontal */
@media (min-width: 768px) {
    .timeline-container {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        padding: 0;
    }

    .timeline-container::before {
        display: none;
    }

    .timeline-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        position: relative;
    }

    /* Graue Grundlinie zwischen den Kreisen */
    .timeline-step:not(:last-child)::before {
        content: "";
        position: absolute;
        top: 23px;
        left: 50%;
        width: 100%;
        height: 2px;
        background: rgba(255, 255, 255, 0.18);
        transform: translateY(-50%);
        z-index: 0;
    }

    /* Orangefarbener Fortschritt nach dem aktiven Schritt */
    .timeline-step:has(.step-num.active):not(:last-child)::after {
        content: "";
        position: absolute;
        top: 23px;
        left: 50%;
        width: 50%;
        height: 4px;
        background: var(--mvdj-orange);
        border-radius: 4px;
        transform: translateY(-50%);
        z-index: 0;
    }
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem 2rem;
    margin-bottom: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step .step-num {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--mvdj-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.process-step h3 {
    color: var(--mvdj-white);
    font-size: 1.375rem;
    font-weight: 700;
}

.process-step p {
  
    font-size: 0.95rem;
}

/* ---------- Partner-Logos ---------- */
.partner-logo {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mvdj-blue-grey-200);
    font-weight: 600;
    opacity: 0.75;
}

/* ---------- FAQ ---------- */
.accordion-mvdj {
    background: transparent;
}

.accordion-mvdj .accordion-item {
    border: 0;
    border-radius: 1rem !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--mvdj-white);
    box-shadow: 0 4px 16px rgba(12, 37, 78, 0.06);
}

.accordion-mvdj .accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-mvdj .accordion-button {
    font-weight: 400;
    color: var(--color-secondary-grey-500, #222);
font-family: Geologica;
font-size: 18px;
    background: var(--mvdj-white);
    padding: 1.45rem 1.75rem;
}

.accordion-mvdj .accordion-button:not(.collapsed) {
    color: var(--mvdj-blue);
    background: var(--mvdj-white);
    box-shadow: none;
}

.accordion-mvdj .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* Chevron als runder Button rechts */
.accordion-mvdj .accordion-button::after {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--mvdj-blue-grey-100);
    background-position: center;
    background-size: 1.1rem;
    border-radius: 999px;
    flex-shrink: 0;
}

.accordion-mvdj .accordion-button:not(.collapsed)::after {
    background-color: var(--mvdj-lightblue);
}

.accordion-mvdj .accordion-body {
    padding: 0 1.5rem 1.5rem;
}
.br-10{
    border-radius: 10px !important;
}
/* ---------- Newsletter ---------- */
.newsletter-input {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 0.95rem 1.75rem;
    height: 56px;
}
button[type="submit"] {
    border: none !important;
    border-radius: 10px !important;
    background-color: var(--color-primary-blue, #023E84) !important;
}
.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.12);
}

/* Button im Newsletter-Bereich: dezenter, transluzenter Pill (laut Screenshot) */
.blue-gradient-bg .btn-mvdj {
    
    color: var(--mvdj-white);
  
    font-weight: 600;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.75rem !important;
}

.blue-gradient-bg .btn-mvdj:hover {
    background-color: rgba(255, 255, 255, 0.16);
    color: var(--mvdj-white);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: none;
    transform: translateY(-1px);
}

/* Social-Icons im Newsletter-Bereich: schlichte Ghost-Glyphen (laut Screenshot) */
.blue-gradient-bg .social-icon {
    width: 44px;
    height: 44px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.35rem;
    transition: color 0.15s ease, transform 0.15s ease;
}

.blue-gradient-bg .social-icon:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
}

#nlshortcode .frm_forms,
#nlshortcode .frm_form_fields,
#nlshortcode fieldset,
#nlshortcode .frm_fields_container {
    margin: 0;
    padding: 0;
    border: 0;
}

#nlshortcode .frm_fields_container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    grid-template-areas:
        "email button"
        "checkbox checkbox";
    gap: 12px 16px;
    align-items: start;
}

#nlshortcode .frm_screen_reader,
#nlshortcode .mvdj-newsletter > .frm_primary_label,
#nlshortcode .frm_section_heading > h3,
#nlshortcode .swapsubmit > .frm_primary_label {
    display: none;
}

#nlshortcode .mvdj-newsletter {
    grid-area: email;
    margin: 0;
}

#nlshortcode .frm_section_heading {
    display: contents !important;
}

#nlshortcode .swapsubmit {
    grid-area: checkbox;
    margin: 0;
    width: 100%;
}

#nlshortcode .swapsubmit .frm_opt_container,
#nlshortcode .swapsubmit .frm_checkbox {
    width: 100%;
}

#nlshortcode .swapcheckbox {
    grid-area: button;
    margin: 0;
}

#nlshortcode .frm_form_field {
    margin-bottom: 0;
}

#nlshortcode input[type="email"] {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff;
    padding: 0.95rem 1.75rem;
    height: 56px;
    box-shadow: none;
}
.jury-mh{
    min-height: 50px;
}
#nlshortcode input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#nlshortcode input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.55) !important;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.12);
    outline: none;
}

#nlshortcode .frm_submit,
#nlshortcode .frm_submit .frm_button_submit {
    height: 100%;
}

#nlshortcode .frm_submit .frm_button_submit {
    width: 100%;
    min-height: 56px;
    border: none !important;
    border-radius: 10px !important;
    background-color: var(--color-primary-blue, #023E84) !important;
    color: var(--mvdj-white) !important;
    font-weight: 600;
    padding: 0 1.75rem !important;
    transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

#nlshortcode .frm_submit .frm_button_submit:hover {
    background-color: #0a4f9f !important;
    box-shadow: none;
    transform: translateY(-1px);
}

#nlshortcode .frm_checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.5;
}

#nlshortcode .frm_checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0 0.2rem 0 0;
    flex: 0 0 18px;
    accent-color: var(--mvdj-orange);
}

#nlshortcode .frm_error,
#nlshortcode .frm_error_style,
#nlshortcode .frm_required {
    color: rgba(255, 255, 255, 0.85);
}

#nlshortcode .frm_verify {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.newsletter-success-alert {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    font-weight: 500;
    line-height: 1.45;
}

@media (max-width: 767.98px) {
    #nlshortcode .frm_fields_container {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "email"
            "checkbox"
            "button";
    }
}

/* ---------- Teilnahmebedingungen ---------- */
.terms-conditions {
    font-size: 13px;
    line-height: 1.7;
    color: var(--mvdj-darkblue);
}

.terms-conditions ol {
    margin: 0;
    padding-left: 1.5rem;
}

.terms-conditions li {
    margin-bottom: 1rem;
}

.terms-conditions li::marker {
    font-weight: 700;
}

/* ---------- Footer ---------- */
.footer-mvdj {
    background: var(--mvdj-darkblue);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 1.5rem;
}

.footer-mvdj h5 {
    color: var(--mvdj-white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-mvdj a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.footer-mvdj a:hover {
    color: var(--mvdj-yellow);
}

.footer-mvdj .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.15s ease;
}

.social-icon:hover {
    background: var(--mvdj-orange);
    color: #fff;
}

/* ---------- Utilities ---------- */
.section-padding {
    padding: 5rem 0;
}

.rounded-2xl {
    border-radius: 1.5rem !important;
}

.back-to-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--mvdj-orange);
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* =========================================================
   Impressionen – Foto-Slider mit Scrollbar
   ========================================================= */
.mvdj-slider {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--mvdj-blue-grey-200, #9aa7c7) var(--mvdj-blue-grey-100, #e6ebf5);
}

.mvdj-slider-track {
    display: flex;
    gap: 1rem;
    width: max-content;
}

.mvdj-slide {
    flex: 0 0 auto;
    width: 340px;
    max-width: 80vw;
    margin: 0;
    scroll-snap-align: start;
}

.mvdj-slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
    border:8px solid #fff;
}

/* Sichtbare, gestaltete Scrollbar (WebKit/Blink) */
.mvdj-slider::-webkit-scrollbar {
    height: 10px;
}

.mvdj-slider::-webkit-scrollbar-track {
    background: var(--mvdj-blue-grey-100, #e6ebf5);
    border-radius: 999px;
}

.mvdj-slider::-webkit-scrollbar-thumb {
    background: var(--mvdj-blue-grey-200, #9aa7c7);
    border-radius: 999px;
}

.mvdj-slider::-webkit-scrollbar-thumb:hover {
    background: var(--mvdj-orange, #f08c00);
}

@media (max-width: 575.98px) {
    .mvdj-slide {
        width: 260px;
    }

    .mvdj-slide img {
        height: 200px;
    }
}

/* =========================================================
   Gewinner – Karten-Slider (ab 5 Karten)
   ========================================================= */
.mvdj-card-slide {
    flex: 0 0 auto;
    width: 300px;
    max-width: 85vw;
    scroll-snap-align: start;
}

.mvdj-card-slide .mvdj-card {
    height: 100%;
}

@media (max-width: 575.98px) {
    .mvdj-card-slide {
        width: 260px;
    }
}
@media (max-width: 768px) {
    .gewinne-prices img {
        max-width: 140px !important;
    }
    .gewinne-awards-icons{
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .gewinne-awards-icons img {
        width: 40% !important;
}
}


/* =========================================================
   Video-Overlay (Erklärvideos)
   ========================================================= */
.mvdj-video-trigger {
    cursor: pointer;
}

.mvdj-placeholder--video.mvdj-video-trigger {
    position: relative;
    text-decoration: none;
}

.mvdj-placeholder--video .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    background-color: var(--mvdj-orange);
    border-radius: 50%;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mvdj-placeholder--video.mvdj-video-trigger:hover .play-btn {
    background: var(--mvdj-orange, #f08c00);
    transform: translate(-50%, -50%) scale(1.06);
}

/* Inline-Wiedergabe direkt im Bildcontainer (Award-Kategorien) */
.mvdj-video-inline.is-playing .play-btn {
    display: none;
}

.mvdj-video-inline.is-playing {
    min-height: 0;
}

.mvdj-video-inline__stage iframe,
.mvdj-video-inline__stage video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 0.75rem;
}

.mvdj-video-inline__stage.is-portrait iframe,
.mvdj-video-inline__stage.is-portrait video {
    width: auto;
    max-width: 100%;
    height: min(80vh, 640px);
    margin-inline: auto;
    aspect-ratio: 9 / 16;
}

.mvdj-video-modal {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.mvdj-video-modal.is-open {
    opacity: 1;
}

.mvdj-video-modal[hidden] {
    display: none;
}

body.mvdj-video-open {
    overflow: hidden;
}

.mvdj-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.mvdj-video-modal__dialog {
    position: relative;
    z-index: 1;
    max-width: 100%;
    transform: scale(0.97);
    transition: transform 0.25s ease;
}

.mvdj-video-modal.is-open .mvdj-video-modal__dialog {
    transform: scale(1);
}

.mvdj-video-modal__close {
    position: absolute;
    top: -2.75rem;
    right: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.mvdj-video-modal__close:hover {
    opacity: 1;
}

.mvdj-video-modal__frame {
    background: #fff;
    border: 12px solid #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    line-height: 0;
}

.mvdj-video-modal__frame iframe,
.mvdj-video-modal__frame video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0.5rem;
}

/* Desktop: klassisches 16:9-Querformat */
.mvdj-video-modal__dialog.is-landscape .mvdj-video-modal__frame {
    width: min(90vw, 1040px);
    aspect-ratio: 16 / 9;
}

/* Mobile / Short: 9:16-Hochformat */
.mvdj-video-modal__dialog.is-portrait .mvdj-video-modal__frame {
    width: auto;
    height: min(82vh, 760px);
    aspect-ratio: 9 / 16;
}

@media (max-width: 575.98px) {
    .mvdj-video-modal {
        padding: 1rem;
    }

    .mvdj-video-modal__frame {
        border-width: 8px;
    }
}

/* =========================================================
   Hinweis: Die Editor-Seitenleisten-Styles (Medien-Steuerelemente
   & Galerie-Vorschau) liegen in css/editor.css und werden nur im
   Block-Editor geladen.
   ========================================================= */




   /*====THEME FOOTER =====*/

/* ---------- Footer ---------- */



/* source-sans-pro-200 - latin */
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-200.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-200.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-200.woff2') format('woff2'), /* Super Modern Browsers */
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-200.woff') format('woff'), /* Modern Browsers */
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-200.ttf') format('truetype'), /* Safari, Android, iOS */
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-200.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}

/* source-sans-pro-300 - latin */
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-300.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-300.woff') format('woff'), /* Modern Browsers */
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-300.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}

/* source-sans-pro-regular - latin */
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-regular.woff') format('woff'), /* Modern Browsers */
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-regular.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}

/* source-sans-pro-600 - latin */
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-600.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-600.woff') format('woff'), /* Modern Browsers */
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
    url('https://www.meinverein.de/wp-content/themes/meinverein-2023/fonts/sourcesanspro/source-sans-pro-v14-latin-600.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}



.footer-mvdj * {
    font-family: 'Source Sans Pro', sans-serif;
}
.footer-mvdj {
    background: var(--mvdj-darkblue);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 1.5rem;
}

.footer-mvdj h5 {
    color: var(--mvdj-white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-mvdj a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.footer-mvdj a:hover {
    color: var(--mvdj-yellow);
}

.footer-mvdj .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.15s ease;
}

.social-icon:hover {
    background: var(--mvdj-orange);
    color: #fff;
}

/* ---------- Utilities ---------- */
.section-padding {
    padding: 5rem 0;
}

.rounded-2xl {
    border-radius: 1.5rem !important;
}

.back-to-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--mvdj-orange);
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}



/* ===== Footer ====== */
.mv-footer-2026 {
    color: #fff;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .mv-footer-2026 ul.nav {
        width: 80%;
    }
}

.mv-footer-2026 .brmobil br {
    display: none;
}

@media (max-width: 992px) {
    .mv-footer-2026 .brmobil br {
        display: block;
    }
}

@media (max-width: 1400px) {
    .mv-footer-2026 a.pricing-test {
        width: 100%;
        max-width: 240px;
    }
}

.mv-footer-2026 .badge-orange {
    background-color: #FA7D19;
    color: #fff;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.84px;
    font-weight: 500;
    position: relative;
    z-index: 11;
    padding: 5px 12px !important;
    border-radius: 5px;
    line-height: inherit !important;
}

@media (max-width: 1400px) {
    .mv-footer-2026 .badge-orange {
        width: 100%;
        max-width: 240px;
        padding: 7px 16px !important;
        font-size: 16px;
        display: block;
    }
}

.mv-footer-2026 ul li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

.mv-footer-2026 ul li a:hover {
    text-decoration: underline !important;
}

.mv-footer-2026 li {
    white-space: nowrap;
}

.mv-footer-2026 .footer-mitglieder-icon {
    position: relative;
}

.mv-footer-2026 .footer-mitglieder-icon::before {
    display: inline-block;
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
    background-image: url(https://www.meinverein.de/wp-content/themes/meinverein-2023x/img/footer/users.svg);
    width: 19px;
    height: 19px;
    position: absolute;
    left: -35px;
    z-index: 999;
    top: 5px;
}

.mv-footer-2026 .footer-finanzen-icon {
    position: relative;
}

.mv-footer-2026 .footer-finanzen-icon::before {
    display: inline-block;
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
    background-image: url(https://www.meinverein.de/wp-content/themes/meinverein-2023/img/footer/finanzen.svg);
    width: 19px;
    height: 19px;
    position: absolute;
    left: -35px;
    z-index: 999;
    top: 5px;
}

.mv-footer-2026 .footer-vereinsportal-icon {
    position: relative;
}

.mv-footer-2026 .footer-vereinsportal-icon::before {
    display: inline-block;
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
    background-image: url(https://www.meinverein.de/wp-content/themes/meinverein-2023/img/footer/vereinsportal.svg);
    width: 26px;
    height: 26px;
    position: absolute;
    left: -35px;
    z-index: 999;
    top: 5px;
}

.mv-footer-2026 .footer-kalender-icon {
    position: relative;
}

.mv-footer-2026 .footer-kalender-icon::before {
    display: inline-block;
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
    background-image: url(https://www.meinverein.de/wp-content/themes/meinverein-2023/img/footer/kalender.svg);
    width: 19px;
    height: 19px;
    position: absolute;
    left: -35px;
    z-index: 999;
    top: 5px;
}

.mv-footer-2026 .footer-phone-icon {
    position: relative;
}

.mv-footer-2026 .footer-phone-icon::before {
    display: inline-block;
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
    background-image: url(https://www.meinverein.de/wp-content/themes/meinverein-2023/img/footer/tech-support.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    left: -35px;
    z-index: 999;
    top: 6px;
}

@media (max-width: 1200px) {
    .mv-footer-2026 .footer-phone-icon::before {
        left: 0;
        margin-left: -5px;
    }
}

@media (max-width: 768px) {
    .mv-footer-2026 .footer-phone-icon::before {
        left: 0;
        margin-left: 5px;
    }
}

.mv-footer-2026 .footer-mail-icon {
    position: relative;
}

.mv-footer-2026 .footer-mail-icon a::before {
    display: inline-block;
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
    background-image: url(https://www.meinverein.de/wp-content/themes/meinverein-2023/img/footer/support-mail.svg);
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 999;
    top: 6px;
}

.mv-footer-2026 .footertrenner-before {
    display: flex;
    align-items: center;
}

.mv-footer-2026 .footertrenner-before::before {
    width: 1px;
    height: 134px;
    opacity: 0.1;
    background-color: #fff;
    content: "";
    display: inline-block;
    margin-right: 90px;
}

@media (max-width: 1300px) {
    .mv-footer-2026 .footertrenner-before::before {
        margin-right: 40px;
    }
}

@media (max-width: 1200px) {
    .mv-footer-2026 .footertrenner-before::before {
        display: none;
    }
}

.mv-footer-2026 .footertrenner-before-top {
    display: flex;
}

.mv-footer-2026 .footertrenner-before-top::before {
    width: 1px;
    height: 164px;
    opacity: 0.1;
    background-color: #fff;
    content: "";
    display: inline-block;
    margin-right: 90px;
}

@media (max-width: 1300px) {
    .mv-footer-2026 .footertrenner-before-top::before {
        margin-right: 60px;
        margin-left: -30px;
    }
}

@media (max-width: 1200px) {
    .mv-footer-2026 .footertrenner-before-top::before {
        display: none;
    }
}

.mv-footer-2026 .mv-footer-2026-social-link {
    border: 0;
    opacity: 0.4;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
}

.mv-footer-2026 .mv-footer-2026-social-link:hover {
    opacity: 1;
}

.mv-footer-2026 .white_circle {
    width: 400px;
    height: 400px;
    position: absolute;
    opacity: 0.29;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    background-color: #0057ae;
}

.mv-footer-2026 .first_white_circle {
    bottom: -30px;
    left: -60px;
}

.mv-footer-2026 .second_white_circle {
    top: -30px;
    right: -60px;
}

.mv-footer-2026 .img-footer-badge {
    height: 30px;
}

@media (max-width: 1200px) {
    .mv-footer-2026 .img-footer-badge {
        height: auto;
        width: 100%;
    }
}

.mv-footer-2026 .mv-footer-2026-logo img {
    height: 45px;
}

.mv-footer-2026 .mv-footer-2026-awards img {
    max-height: 120px;
    width: 120px;
}

@media (max-width: 1200px) {
    .mv-footer-2026 .mv-footer-2026-awards img {
        max-height: unset;
        width: 140px;
    }
}

@media (max-width: 680px) {
    .mv-footer-2026 .mv-footer-2026-awards img {
        max-height: unset;
        width: 120px;
    }
}

.mv-footer-2026 .mv-footer-2026-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.mv-footer-2026 .mv-footer-2026-help-inner {
    border-radius: 24px;
    background: rgba(7, 42, 97, 0.9);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.15);
}

.mv-footer-2026 .mv-footer-2026-bottom {
    position: relative;
    z-index: 99;
    background-color: #00234d;
    margin-top: 100px;
}

.mv-footer-2026 .mv-footer-2026-buhl-logo img {
    max-height: 22px;
}

.mv-footer-2026 .mv-footer-2026-backtotop {
    width: 44px;
    height: 44px;
    border-width: 1px;
}

.mv-footer-2026 .mv-footer-2026-backtotop-icon {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .mv-footer-2026 .mv-footer-2026-awards {
        justify-content: flex-start;
    }
}

footer {
    background-color: #012857;
    height: auto;
    padding-bottom: 30px;
    font-family: 'Source Sans Pro';
}

footer * {
    font-family: 'Source Sans Pro';
}

footer #footermenu-2024 {
    display: flex;
}

@media (max-width: 992px) {
    footer #footermenu-2024 {
        flex-direction: column;
    }
}



footer #footermenu-2024 li {
    flex-basis: 25%;
}

@media (max-width: 992px) {
    footer #footermenu-2024 li {
        flex-basis: 100%;
    }
}

footer #footermenu-2024 li a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    margin-right: 20px;
}

footer #footermenu-2024 li ul {
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

footer #footermenu-2024 li ul li a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    text-transform: unset;
}

footer #footermenu-2024 li ul li a:hover {
    text-decoration: underline;
}

footer #footermenu-2024 li ul li.twitter a:before {
    display: inline-block;
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
    vertical-align: sub;
    background-image: url(../../../img/icons_2022/twitter_icon_white.svg);
    width: 20px;
    height: 20px;
}

footer #footermenu-2024 li ul li.facebook a:before {
    display: inline-block;
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
    vertical-align: sub;
    background-image: url(../../../img/icons_2022/fb_icon_white.svg);
    width: 20px;
    height: 20px;
}

footer #footermenu-2024 li ul li.whatsapp a:before {
    display: inline-block;
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
    vertical-align: sub;
    background-image: url(../../../img/icons_2022/whatsapp.svg);
    width: 20px;
    height: 20px;
}

footer #footermenu-2024 li ul li.instagram a:before {
    display: inline-block;
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
    vertical-align: sub;
    background-image: url(../../../img/icons_2022/instagram.svg);
    width: 20px;
    height: 20px;
}

footer #footermenu-2024 li ul li.youtube a:before {
    display: inline-block;
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
    vertical-align: sub;
    background-image: url(../../../img/icons_2022/youtube_icon_white.svg);
    width: 20px;
    height: 20px;
}

footer #footermenu-2024 li ul li.footer-phone a:before {
    display: inline-block;
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
    vertical-align: sub;
    background-image: url(../../../img/icons_2022/phone-solid-white.svg);
    width: 20px;
    height: 20px;
}

footer #footermenu-2024 li ul li.footer-mail a:before {
    display: inline-block;
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
    vertical-align: sub;
    background-image: url(../../../img/icons_2022/envelope-regular.svg);
    width: 20px;
    height: 20px;
}

footer .buhl-footer-white img {
    width: 160px;
}

#footerbottom {
    padding-top: 60px !important;
    color: white !important;
}

@media (max-width: 992px) {
    #footerbottom {
        display: flex;
        padding-top: 30px !important;
        flex-direction: column-reverse;
    }
}

#footerbottom p {
    color: white !important;
}

#footerbottom .buhl-footer-white {
    color: white !important;
}

#footerbottom .buhl-footer-white:before {
    display: inline-block;
    content: "";
    height: 1.5rem;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 12px;
    vertical-align: sub;
    background-image: url('../../../img/logos/buhl-logo-white.svg');
    width: 40px;
}

@media (min-width: 993px) {
    #footermenu {
        padding-top: 30px !important;
    }
}

#footermenu li {
    margin-right: 20px;
}

#footermenu li a {
    color: white !important;
    font-size: 18px !important;
}

@media (max-width: 992px) {
    #footermenu {
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }
}

p.footerinfo {
    font-size: 30px !important;
}

.footerkontakt a,
.footerkontakt p:not(.footerinfo) {
    font-size: 20px !important;
}

.whitelogo {
    max-width: 200px;
}

/* ---------- Jury Slider (Splide) ---------- */
.splide {
    margin: 0;
}



.btn.header-join-btn:hover {
    background-color: #ED6D07 !important;
    color: #fff;

}

.splide__slide {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.splide__slide.is-active {
    opacity: 1;
}

.splide__arrow {
    background: var(--mvdj-orange);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.splide__arrow:hover {
    background: var(--mvdj-blue);
}

.splide__arrow--prev {
    left: -60px;
}

.splide__arrow--next {
    right: -60px;
}
li:has(.is-active) {
    border:1px solid #023E84 !important;
    
    border-radius: 50% !important;
    margin: 0 5px!important;
}   
.splide__pagination {
    bottom: -20px !important;
}
.splide__pagination__page.is-active {
    background: #023E84 !important;
    width: 14px !important;
    height: 14px !important;
   
    transform: scale(1) !important;
    opacity: 1 !important;
}

.splide__pagination__page {
    background: #D9D9D9 !important;
    width: 14px !important;
    height: 14px !important;
}
@media (max-width: 767px) {
    .splide__arrow {
        width: 40px;
        height: 40px;
    }

    .splide__arrow--prev {
        left: 0;
    }

    .splide__arrow--next {
        right: 0;
    }
}