/*
Theme Name:     kickerkollektivleipzig
Theme URI:      n/a
Template:       kadence
Author:         Ricardo Lenz
Author URI:     https://lenz-digital-services.de/
Description:     The official child theme for the Kickerkollektivleipzig e.V. website, developed by Ricardo Lenz.
Version:        1.0
License:        GNU General Public License v3.0 (or later)
License URI:    https://www.gnu.org/licenses/gpl-3.0.html
*/


.entry-content-wrap {
    padding: 0px !important;
}

.main-navigation .primary-menu-container > ul li.menu-item > a {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: #fff !important;
}


/* Logo START  */
.kkl-brand {
  position: relative;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
}

a.kkl-brand {
    text-decoration: none !important;
}

.kkl-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(-8deg);
}

.kkl-logo {
  display: block;
  max-height: 150px;
  width: auto;
  height: auto;
  transform: skewX(8deg);
}

.kkl-brand-text {
  display: inline-block;
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.kkl-logo {
  transition: transform 0.3s ease;
}

.kkl-brand:hover .kkl-logo {
  transform: skewX(8deg) scale(1.1);
}



@media (max-width: 768px) {
  .kkl-brand {
    gap: 14px;
  }

  .kkl-logo {
    max-height: 90px;
  }

  .kkl-brand-text {
    font-size: 24px;
  }
}


/* Menü Hover Balken */
/* Menü Hover Balken nur bei Hover */
.header-navigation .menu > li > a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.header-navigation .menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 3px;
  background: #8c8eff;
  transition: width 0.3s ease;
}

.header-navigation .menu > li > a:hover::after {
  width: 100%;
}



/* glowlogo 1. Abschnitt */

.glowlogo .kt-inside-inner-col {
  position: relative;
}

.glowlogo .kt-inside-inner-col::before {
  content: "";
  position: absolute;
  top: 33%;
  left: 33%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: rgba(141, 142, 255, 0.30);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.glowlogo figure,
.glowlogo img {
  position: relative;
  z-index: 2;
}

.glowlogo img {
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.18));
}

/* hero hintergrund 1. Abschnitt */

.bg-grid-pattern {
  position: relative;
  overflow: hidden;
}

.bg-grid-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 40px 40px;
  filter: blur(1.2px);
  opacity: 0.9;
}

.bg-grid-pattern > * {
  position: relative;
  z-index: 2;
}
/* hero buttons 1. Abschnitt */


.kkl-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-left: 5px;
}

.kkl-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 42px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transform: skewX(-8deg) translate(0, 0);
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.kkl-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: skewX(0);
  z-index: 0;
}

.kkl-btn {
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.35);
}

.kkl-btn span,
.kkl-btn {
  overflow: hidden;
}

.kkl-btn-solid {
  background: #8c8eff;
  color: #000000;
  border: 2px solid #8c8eff;
}

.kkl-btn-outline {
  background: transparent;
  color: #8c8eff;
  border: 3px solid #8c8eff;
}

.kkl-btn:hover {
 background: #4a4b84;
 border-color: #323359 !important;
 color: #ffffff !important;
}

.kkl-btn:active {
  transform: skewX(-8deg) translate(5px, 5px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.35);
}

.kkl-btn-solid,
.kkl-btn-outline {
  isolation: isolate;
}

.kkl-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 22%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-20deg);
  opacity: 0;
  pointer-events: none;
}

.kkl-btn:hover::after {
  opacity: 1;
  animation: kkl-btn-shine 0.7s ease;
}

@keyframes kkl-btn-shine {
  0% {
    left: -35%;
  }
  100% {
    left: 120%;
  }
}

.kkl-btn {
  font-family: inherit;
}

.kkl-btn > * {
  transform: skewX(8deg);
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .kkl-btn {
    min-height: 56px;
    padding: 0 28px;
    font-size: 22px;
  }

  .kkl-hero-buttons {
    gap: 18px;
  }
}



/* 2. Abschnitt */


.wirsindkkl > span {
    color: #8c8eff;
}

.iconschraeg .kt-blocks-info-box-link-wrap {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.iconschraeg .kt-blocks-info-box-link-wrap::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -140px;
  width: 380px;
  height: 380px;
  background: url("/wp-content/uploads/2026/03/kicker-silhouette.png") no-repeat center / contain;
  opacity: 0.05;
  transform: rotate(18deg);
  filter: brightness(0) saturate(100%) sepia(1) hue-rotate(8deg) saturate(20) brightness(1.2);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.25s ease;
}

.iconschraeg:hover .kt-blocks-info-box-link-wrap::after {
  opacity: 0.15;
}

.iconschraeg .kt-blocks-info-box-media-container,
.iconschraeg .kt-infobox-textcontent {
  position: relative;
  z-index: 2;
}


.iconschraeg .kt-blocks-info-box-media,
.iconschraeg .kadence-info-box-icon-container,
.iconschraeg .kadence-info-box-icon-inner-container {
  transform: skewX(-8deg) !important;
  border-radius: 0 !important;
  overflow: hidden;
}

.iconschraeg .kt-info-svg-icon,
.iconschraeg .kt-info-svg-icon svg {
  transform: skewX(8deg) !important;
}







.mehrerfahren {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mehrerfahren .kt-blocks-modal-link {
    position: relative;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 64px;
    padding: 0 42px !important;
    font-size: 24px !important;
    font-weight: 800;
    line-height: 1 !important;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transform: skewX(-8deg) translate(0, 0);
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease !important;
    background: transparent !important;
    color: #8c8eff !important;
    border: 3px solid #8c8eff !important;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.35);
    overflow: hidden;
    isolation: isolate;
	border-radius:0px !important;
}

.mehrerfahren .kt-blocks-modal-link-inner {
  display: block;
  transform: skewX(8deg);
  position: relative;
  z-index: 2;
}

.mehrerfahren .kt-blocks-modal-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 22%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-20deg);
  opacity: 0;
  pointer-events: none;
}

.mehrerfahren .kt-blocks-modal-link:hover {
    background: #8c8eff !important;
    border-color: #8c8eff !important;
    color: #000000 !important;
	border-radius:0px !important;
}

.mehrerfahren .kt-blocks-modal-link:hover::after {
  opacity: 1;
  animation: kkl-btn-shine 0.7s ease;
}

.mehrerfahren .kt-blocks-modal-link:active {
  transform: skewX(-8deg) translate(5px, 5px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .mehrerfahren .kt-blocks-modal-link {
    min-height: 56px;
    padding: 0 28px;
    font-size: 22px;
  }
}


/* 2.5. zaehler  */

.zaehlerbox .kb-count-up-title {
  display: block;
  width: 100%;
  text-align: center !important;
}

.zaehlerbox {
  position: relative;
  overflow: hidden;
  background: #8c8eff;
  isolation: isolate;
}

.zaehlerbox .kt-row-column-wrap {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #8c8eff;
}

.zaehlerbox .kt-row-column-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(30deg, rgba(0,0,0,0.28) 12%, transparent 12.5%, transparent 87%, rgba(0,0,0,0.28) 87.5%, rgba(0,0,0,0.28)),
    linear-gradient(150deg, rgba(0,0,0,0.22) 12%, transparent 12.5%, transparent 87%, rgba(0,0,0,0.22) 87.5%, rgba(0,0,0,0.22)),
    linear-gradient(90deg, rgba(0,0,0,0.14) 2%, transparent 2.5%, transparent 97%, rgba(0,0,0,0.14) 97.5%, rgba(0,0,0,0.14));
  background-size: 180px 104px, 180px 104px, 180px 104px;
  background-position: 0 0, 0 0, 90px 52px;
}

.zaehlerbox .wp-block-kadence-column,
.zaehlerbox .kt-inside-inner-col {
  position: relative;
  z-index: 2;
}

/* 2. abgrenzung  */


.zaehlerbox .kb-count-up {
  position: relative;
  padding: 28px 20px;
  z-index: 2;
}

.zaehlerbox .kb-count-up::before {
  content: "";
  position: absolute;
  top: 8px;
  right: -32px;
  bottom: 8px;
  width: 2px;
  background: #222222;
  transform: skewX(-8deg);
  transform-origin: top;
  pointer-events: none;
  z-index: 1;
}

.zaehlerbox .kb-count-up-number,
.zaehlerbox .kb-count-up-title {
  position: relative;
  z-index: 2;
}

.zaehlerbox .kt-has-4-columns > .wp-block-kadence-column:last-child .kb-count-up::before {
  display: none;
}


/* 3. team-card  */



.kkl-team-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 56px;
  min-height: 500px;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.kkl-team-card:hover {
  border-color: #8c8eff;
}

.kkl-team-card-inner {
  position: relative;
  z-index: 2;
}

.kkl-team-bgicon {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 150px;
  height: 150px;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.kkl-team-bgicon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 1.7;
}

.team-card-1 .kkl-team-bgicon {
  opacity: 0.05;
}

.team-card-1 .kkl-team-bgicon svg {
  stroke: #8c8eff;
  transform: rotate(12deg);
}

.team-card-1:hover .kkl-team-bgicon {
  opacity: 0.15;
}

.team-card-2 .kkl-team-bgicon {
  opacity: 0.05;
}

.team-card-2 .kkl-team-bgicon svg {
  stroke: rgba(255, 255, 255, 0.9);
  transform: rotate(-12deg);
}

.team-card-2:hover .kkl-team-bgicon {
  opacity: 0.15;
}

.kkl-team-badge {
  display: inline-block;
  margin-bottom: 34px;
  padding: 12px 22px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: skewX(-8deg);
  border-radius: 6px;
}

.kkl-team-badge span {
  display: block;
  transform: skewX(8deg);
}

.kkl-team-badge-primary {
  background: #8c8eff;
  color: #000;
}

.kkl-team-badge-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.kkl-team-title {
  margin: 0 0 10px !important;
  font-size: 72px;
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

.kkl-team-league {
  margin-bottom: 34px;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.kkl-team-text {
  margin: 0;
  max-width: 620px;
  font-size: 24px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1024px) {
  .kkl-team-card {
    padding: 40px;
    min-height: auto;
  }

  .kkl-team-title {
    font-size: 56px;
  }

  .kkl-team-league {
    font-size: 28px;
  }

  .kkl-team-text {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .kkl-team-card {
    padding: 28px;
    border-radius: 22px;
  }

  .kkl-team-bgicon {
    width: 110px;
    height: 110px;
    top: 22px;
    right: 22px;
  }

  .kkl-team-badge {
    font-size: 14px;
    padding: 10px 16px;
    margin-bottom: 24px;
  }

  .kkl-team-title {
    font-size: 42px;
  }

  .kkl-team-league {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .kkl-team-text {
    font-size: 18px;
  }
}






/* 4. Abschnitt - Komm zu uns */
.kommzuuns {
  position: relative;
  overflow: hidden;
  background: #8c8eff;
  isolation: isolate;
}

.kommzuuns .kt-row-column-wrap {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #8c8eff;
}

.kommzuuns .kt-row-column-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    polygon(0 0, 100% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(62deg, transparent 0 46%, rgba(0,0,0,0.22) 46.5% 47.5%, transparent 48%) ,
    linear-gradient(118deg, transparent 0 43%, rgba(0,0,0,0.18) 43.5% 44.5%, transparent 45%) ,
    linear-gradient(28deg, transparent 0 63%, rgba(0,0,0,0.16) 63.5% 64.5%, transparent 65%) ,
    linear-gradient(152deg, transparent 0 68%, rgba(0,0,0,0.14) 68.5% 69.5%, transparent 70%);
  background-size: 420px 420px, 380px 380px, 520px 520px, 460px 460px;
  background-position: 12% 18%, 78% 22%, 40% 72%, 88% 78%;
  background-repeat: no-repeat;
}

.kommzuuns .wp-block-kadence-column,
.kommzuuns .kt-inside-inner-col {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .kommzuuns .kt-row-column-wrap {
    width: calc(100% - 40px);
  }
}

/* Überschrift */
.kommzuuns .wirsindkkl {
  color: #000000 !important;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 7px 7px 0 rgba(0, 0, 0, 0.22);
}

.kommzuuns p {
  color: #111111 !important;
  text-align: center;
}

/* Button */


.kommzuuns-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.kkl-btn-dark {
  background: #050505;
  color: #ffffff;
}

.kkl-btn-dark:hover {
  background: #111111;

  color: #ffffff;
}

.kkl-btn-dark .kommzuuns-btn-icon,
.kkl-btn-dark .kommzuuns-btn-icon svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: currentColor;
}



/* optional etwas mehr Luft im Abschnitt */
.kommzuuns .kt-inside-inner-col {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .kommzuuns::before {
    background: linear-gradient(100deg, #8c8eff 0%, #8c8eff 46%, hsl(44 100% 39%) 54%, hsl(44 100% 39%) 100%);
  }

  .kommzuuns-btn {
    min-height: 60px;
    padding: 0 28px;
    gap: 12px;
  }

  .kommzuuns-btn-icon {
    font-size: 22px;
  }
}




/* 5. Geschichte */

.kkl-history {
  padding: 24px;
  position: relative;
  overflow: hidden;
  ackground: #6666668c;
}

.kkl-history-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.kkl-history-head {
  text-align: center;
  margin-bottom: 56px;
}

.kkl-history-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #8c8eff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.kkl-history-icon {
  font-size: 24px;
  line-height: 1;
}

.kkl-history-head h2 {
  margin: 0;
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
}

.kkl-history-head h2 span {
  color: #8c8eff;
}

.kkl-history-head-line {
  width: 120px;
  height: 8px;
  border-radius: 999px;
  background: #8c8eff;
  margin: 20px auto 0;
}

.kkl-history-timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 10px 0;
}

.kkl-history-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 135px;
  width: 2px;
  background: rgba(140, 142, 255, 0.14);
}

.kkl-history-item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 24px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 34px;
}

.kkl-history-item:last-child {
  margin-bottom: 0;
}

.kkl-history-year {
  text-align: right;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  padding-top: 2px;
}

.kkl-history-dot {
  position: relative;
  width: 16px;
  height: 16px;
  margin-top: 5px;
  background: #2b2b31;
  border: 2px solid #8c8eff;
  border-radius: 50%;
  z-index: 2;
}

.kkl-history-content {
  color: rgba(255, 255, 255, 0.94) !important;
  font-size: 18px;
  line-height: 1.55;
  padding-bottom: 4px;
}

.kkl-history-content p {
  margin: 0;
}

.kkl-history-item.is-muted .kkl-history-year {
  color: rgba(255, 255, 255, 0.55);
}

.kkl-history-item.is-muted .kkl-history-dot {
  background: transparent;
  border-color: rgba(140, 142, 255, 0.45);
}

.kkl-history-item.is-muted .kkl-history-content {
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 768px) {
  .kkl-history {
    padding: 70px 18px;
  }

  .kkl-history-kicker {
    font-size: 16px;
    gap: 10px;
  }

  .kkl-history-head h2 {
    font-size: 42px;
  }

  .kkl-history-head-line {
    width: 90px;
    height: 6px;
    margin-top: 16px;
  }

  .kkl-history-line {
    left: 9px;
  }

  .kkl-history-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 34px;
    margin-bottom: 28px;
  }

  .kkl-history-year {
    text-align: left;
    padding-top: 0;
  }

  .kkl-history-dot {
    position: absolute;
    left: 1px;
    top: 4px;
    margin-top: 0;
  }

  .kkl-history-content {
    font-size: 16px;
  }
}


.history-extra {
  display: none;
}

.kkl-history.is-open .history-extra {
  display: grid;
}

.kkl-history-toggle-wrap {
  margin-top: 28px;
  text-align: center;
}

.kkl-history-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  background: #0b0b0b;
  color: #ffffff;
  border: 2px solid #8c8eff;
  border-radius: 0 !important;
  appearance: none;
  -webkit-appearance: none;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transform: skewX(-8deg);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.kkl-history-toggle:hover {
  background: #8c8eff;
  color: #000000;
  border-radius:0px !important;
}

.kkl-history-toggle span,
.kkl-history-toggle {
  font-family: inherit;
}


.kkl-history-toggle:active {
  transform: skewX(-8deg) translate(5px, 5px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.35);
}

.kkl-history-toggle::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 22%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-20deg);
  opacity: 0;
  pointer-events: none;
}

.kkl-history-toggle:hover::after {
  opacity: 1;
  animation: kkl-history-shine 0.7s ease;
}

@keyframes kkl-history-shine {
  0% {
    left: -35%;
  }
  100% {
    left: 120%;
  }
}


/* 5. Erfolge */

.kkl-erfolge {
  position: relative;
  padding: 70px 24px;
  background: #0d0d0d9e;
  overflow: hidden;
}

.kkl-erfolge::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(to right, rgba(140, 142, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(140, 142, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
}

.kkl-erfolge-header {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto 28px;
  text-align: center;
}

.kkl-erfolge-header h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.kkl-erfolge-header p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 20px;
  line-height: 1.5;
}

.kkl-erfolge-scroll {
  position: relative;
  z-index: 2;
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 10px;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

.kkl-erfolge-scroll::-webkit-scrollbar {
  width: 8px;
}

.kkl-erfolge-scroll::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
}

.kkl-erfolge-scroll::-webkit-scrollbar-thumb {
  background: #8c8eff;
  border-radius: 20px;
}

.kkl-erfolge-scroll::-webkit-scrollbar-thumb:hover {
  background: #8684af;
}

.kkl-erfolge-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 0 16px;
}

.kkl-erfolge-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(140, 142, 255, 0.05),
    rgba(140, 142, 255, 0.28),
    rgba(140, 142, 255, 0.05)
  );
  transform: translateX(-50%);
}

.kkl-erfolg {
  position: relative;
  width: 100%;
  margin-bottom: 42px;
  scroll-snap-align: start;
}

.kkl-erfolg:last-child {
  margin-bottom: 0;
}

.kkl-erfolg-dot {
  position: absolute;
  left: 50%;
  top: 32px;
  width: 22px;
  height: 22px;
  background: #111111;
  border: 4px solid #8c8eff;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 5;
  box-shadow: 0 0 0 4px rgba(140, 142, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.kkl-erfolg-card {
  position: relative;
  width: calc(50% - 62px);
  min-height: 150px;
  background: rgba(5, 5, 5, 0.96);
  border: 2px solid rgba(134, 132, 175, 0.75);
  border-radius: 18px;
  padding: 26px 30px;
  box-sizing: border-box;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.kkl-erfolg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(140, 142, 255, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.erfolg-left .kkl-erfolg-card {
  margin-right: auto;
}

.erfolg-right .kkl-erfolg-card {
  margin-left: auto;
}

.kkl-erfolg-icon {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 28px;
  line-height: 1;
  opacity: 0.12;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.kkl-erfolg-year {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  color: #8c8eff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kkl-erfolg-title {
  margin: 0 0 12px;
  padding-right: 28px;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
}

.kkl-erfolg-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.kkl-erfolg:hover .kkl-erfolg-card {
  transform: translateY(-4px);
  border-color: #8c8eff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.kkl-erfolg:hover .kkl-erfolg-card::before {
  opacity: 1;
}

.kkl-erfolg:hover .kkl-erfolg-icon {
  opacity: 0.22;
  transform: scale(1.08);
}

.kkl-erfolg:hover .kkl-erfolg-dot {
  background: #8c8eff;
  transform: translateX(-50%) scale(1.08);
  box-shadow: 0 0 0 6px rgba(140, 142, 255, 0.14);
}

@media (max-width: 960px) {
  .kkl-erfolge {
    padding: 60px 18px;
  }

  .kkl-erfolge-header h2 {
    font-size: 42px;
  }

  .kkl-erfolge-header p {
    font-size: 18px;
  }

  .kkl-erfolge-scroll {
    max-height: 70vh;
  }

  .kkl-erfolge-line {
    left: 22px;
    transform: none;
  }

  .kkl-erfolg-dot {
    left: 22px;
    transform: none;
  }

  .kkl-erfolg:hover .kkl-erfolg-dot {
    transform: scale(1.08);
  }

  .kkl-erfolg-card {
    width: calc(100% - 64px);
    margin-left: 64px !important;
    margin-right: 0 !important;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .kkl-erfolge-header h2 {
    font-size: 34px;
  }

  .kkl-erfolge-header p {
    font-size: 16px;
  }

  .kkl-erfolg-card {
    padding: 22px 22px;
  }

  .kkl-erfolg-year {
    font-size: 18px;
  }

  .kkl-erfolg-title {
    font-size: 21px;
  }

  .kkl-erfolg-text {
    font-size: 16px;
  }

  .kkl-erfolg-icon {
    font-size: 24px;
    top: 14px;
    right: 16px;
  }
}


.wirsindkkl_dunkel > span {
    color: #0b0b0b;
}

.kkl-membership {
  background: #0b0b0b;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.kkl-membership-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.kkl-membership-head {
  text-align: center;
  margin-bottom: 36px;
}

.kkl-membership-head h2 {
  margin: 0;
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
}

.kkl-membership-head h2::first-letter {
  color: #8c8eff;
}

.kkl-membership-head-line {
  width: 120px;
  height: 8px;
  border-radius: 999px;
  background: #8c8eff;
  margin: 20px auto 0;
}

.kkl-membership-note {
  max-width: 980px;
  margin: 0 auto 60px;
  padding: 22px 28px;
  border: 1px solid rgba(140, 142, 255, 0.35);
  background: rgba(140, 142, 255, 0.08);
  border-radius: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 22px;
  line-height: 1.45;
}

.kkl-membership-note strong {
  color: #8c8eff;
  font-weight: 800;
}

.kkl-membership-note-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 3px solid #8c8eff;
  color: #8c8eff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
}

.kkl-membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.kkl-member-card {
  position: relative;
  background: #1a1a1d;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 36px 34px 34px;
  color: #ffffff;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: visible;
}

.kkl-member-card:hover {
  transform: translateY(-6px);
  border-color: rgba(140, 142, 255, 0.7);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.kkl-member-card.is-featured {
  border-color: #8c8eff;
  box-shadow: 0 0 30px rgba(140, 142, 255, 0.10);
}

.kkl-member-badge {
  position: absolute;
  top: -14px;
  left: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 18px;
  border-radius: 999px;
  background: #8c8eff;
  color: #0b0b0b;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.kkl-member-badge.is-muted {
  background: #4a4a4f;
  color: #ffffff;
}

.kkl-member-icon {
  width: 56px;
  height: 56px;
  background: #8c8eff;
  color: #0b0b0b;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 28px;
}

.kkl-member-icon.is-muted {
  background: #3d3d42;
  color: #ffffff;
}

.kkl-member-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
}

.kkl-member-desc {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  min-height: 86px;
}

.kkl-member-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 28px;
}

.kkl-member-price .price {
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  color: #8c8eff;
  letter-spacing: -1px;
}

.kkl-member-card:not(.is-featured) .kkl-member-price .price {
  color: #ffffff;
}

.kkl-member-price .period {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.kkl-member-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kkl-member-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.kkl-member-list li:last-child {
  margin-bottom: 0;
}

.kkl-member-list li::before {
  content: "◉";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 14px;
  color: #8c8eff;
}

.kkl-member-list li.is-disabled {
  color: rgba(255, 255, 255, 0.55);
}

.kkl-member-list li.is-disabled::before {
  content: "—";
  font-size: 20px;
  top: -2px;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1100px) {
  .kkl-membership-head h2 {
    font-size: 54px;
  }

  .kkl-membership-note {
    font-size: 18px;
  }

  .kkl-membership-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .kkl-member-desc {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .kkl-membership {
    padding: 70px 18px;
  }

  .kkl-membership-head h2 {
    font-size: 40px;
  }

  .kkl-membership-head-line {
    width: 90px;
    height: 6px;
    margin-top: 16px;
  }

  .kkl-membership-note {
    padding: 18px 18px;
    font-size: 16px;
    gap: 12px;
    margin-bottom: 36px;
  }

  .kkl-member-card {
    padding: 28px 24px 26px;
    border-radius: 22px;
  }

  .kkl-member-badge {
    left: 24px;
    font-size: 13px;
  }

  .kkl-member-card h3 {
    font-size: 22px;
  }

  .kkl-member-price .price {
    font-size: 38px;
  }

  .kkl-member-list li {
    font-size: 16px;
  }
}