/* =========================================================
   WAFFELKATZE – HOME NEU
   Struktur:
   1. Basis / Layout
   2. Gemeinsame Section-Elemente
   3. Buttons
   4. Hero
   5. Hero Sticker + Finder
   6. Kategorien
   7. Carousel-Band
   8. About-Bereich
   9. Header / Footer Sicherheit
   10. Responsive
   ========================================================= */


/* =========================================================
   1. BASIS / LAYOUT, Fixes Cover
   ========================================================= */

.wk-home-neu{
  position: relative;
  z-index: 1;
  background: #f8f6f3;
  color: #2f2a26;
}

.wk-home-hero__picture img,
.wk-home-hero__img,
.wk-home-catsBand__picture img,
.wk-home-catsBand__img,
.wk-home-about__picture img,
.wk-home-about__img,
.wk-home-carouselPlain__picture img,
.wk-home-carouselPlain__img{
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
}

.wk-home-hero__img{ object-position: center 56% !important; }
.wk-home-catsBand__img{ object-position: center 50% !important; }
.wk-home-about__img{ object-position: center 50% !important; }
.wk-home-carouselPlain__img{ object-position: center 50% !important; }

@media (max-width: 768px){
  .wk-home-hero__img{ object-position: center 62% !important; }
  .wk-home-catsBand__img{ object-position: center 58% !important; }
  .wk-home-about__img{ object-position: center 60% !important; }
  .wk-home-carouselPlain__img{ object-position: center 55% !important; }
}

/* =========================================================
   2. GEMEINSAME SECTION-ELEMENTE
   ========================================================= */

.wk-home-section{
  position: relative;
  padding: 84px 20px;
}

.wk-home-section__inner{
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.wk-home-sectionIntro{
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.wk-home-sectionIntro__eyebrow{
  margin: 0 0 10px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #7a6f66;
}

.wk-home-sectionIntro__title{
  margin: 0 0 14px;
  color: #2b2521;
}

.wk-home-sectionIntro__text{
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #2b2521;
}


/* =========================================================
   3. BUTTONS
   ========================================================= */

.wk-btn-primary,
.wk-btn-secondary,
.wk-home-catCard__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease,
    background-color 0.18s ease;
}

.wk-btn-primary{
  background: #215c45;
  color: #fff;
}

.wk-btn-primary:hover{
  transform: translateY(-1px);
  color: #fff;
}

.wk-btn-secondary{
  background: rgb(33 92 69);
  color: #faf3ed;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 5px 16px;
  font-size: 15px;
  border-radius: 999px;
}

.wk-btn-secondary:hover{
  transform: translateY(-1px);
  color: #4a433d;
}

.wk-home-catCard{
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fffdfa;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(50,30,10,0.05);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.wk-home-catCard:hover,
.wk-home-catCard:focus-visible{
  text-decoration: none;
  color: inherit;
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.wk-home-catCard:active{
  text-decoration: none;
  color: inherit;
}

.wk-home-catCard__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  margin-top: auto;
  align-self: center;
  background: #215c45;
  color: #fff;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.wk-home-catCard:hover .wk-home-catCard__link,
.wk-home-catCard:focus-visible .wk-home-catCard__link{
  transform: translateY(-1px);
  color: #fff;
}

.wk-home-catCard__media{
  aspect-ratio: 4 / 2.9;
  overflow: hidden;
  background: #eee8e1;
}

.wk-home-catCard__picture{
  display: block;
  width: 100%;
  height: 100%;
}

.wk-home-catCard__img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.wk-home-catCard:hover .wk-home-catCard__img,
.wk-home-catCard:focus-visible .wk-home-catCard__img{
  transform: scale(1.04);
}


/* =========================================================
   4. HERO
   ========================================================= */

.wk-home-hero{
  position: relative;
  z-index: 2;
  min-height: 790px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  isolation: isolate;
}

.wk-home-hero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.wk-home-hero__picture{
  display: block;
  width: 100%;
  height: 100%;
}

.wk-home-hero__img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wk-home-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.25)
  );
}

.wk-home-hero__overlay{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 72px 20px;
}

.wk-home-hero__content{
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 34px 34px;
  text-align: center;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(25,18,12,0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(8px);
}

.wk-home-hero__eyebrow,
.wk-home-hero__title,
.wk-home-hero__text{
  color: #2b2521;
}

.wk-home-hero__actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}


/* =========================================================
   5. HERO Sticker
   ========================================================= */

.wk-home-finderWrap{
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.wk-home-finderBox{
  position: relative;
  z-index: 2;
}

.wk-home-sticker{
  position: absolute;
  left: -285px;
  top: 50%;
  transform: translateY(-50%) rotate(-1deg);
  z-index: 3;
  width: 620px;
  pointer-events: none;
}

.wk-home-sticker__picture,
.wk-home-sticker__img{
  display: block;
  width: 100%;
  height: auto;
}

.wk-home-sticker--desktop{
  display: block;
}

.wk-home-sticker-mobileWrap,
.wk-home-sticker-mobile,
.wk-home-stickerBlase-mobile{
  display: none;
}

.wk-home-stickerBlase{
  position: absolute;
  left: -180px;
  top: -169px;
  transform: rotate(-4deg);
  z-index: 4;
  width: 620px;
  pointer-events: none;
}

.wk-home-stickerBlase__picture,
.wk-home-stickerBlase__img{
  display: block;
  width: 100%;
  height: auto;
}


/* =========================================================
   5. HERO FINDER
   ========================================================= */

.wk-home-hero__finderBox{
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 980px;
  margin: 0 auto 22px;
  padding: 25px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.wk-home-hero__finderBox,
.wk-home-hero__finderBox *{
  box-sizing: border-box;
  font-family: "Karla", sans-serif;
}

.wk-home-hero__finderBox .wk-rf{
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.wk-home-hero__finderBox .wk-rf__row{
  width: 100%;
  align-items: center;
}

.wk-home-hero__finderBox .wk-rf__row > *{
  min-width: 0;
}

.wk-home-hero__finderBox .wk-rf__label{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5f5750;
}

.wk-home-hero__finderBox .wk-rf__input,
.wk-home-hero__finderBox input[type="text"],
.wk-home-hero__finderBox input[type="search"],
.wk-home-hero__finderBox select{
  font-family: "Karla", sans-serif;
  font-size: 16px;
  color: #2d2a2a;
  background: #fff;
  border: 1px solid #d9d1ca;
  border-radius: 14px;
  box-shadow: none;
}

.wk-home-hero__finderBox .wk-rf__input{
  color: #2d2a2a;
}

.wk-home-hero__finderBox .wk-rf__input::placeholder{
  color: #5f5750;
}

.wk-home-hero__finderBox input::placeholder{
  color: #5f5750 !important;
  opacity: 1 !important;
}

.wk-home-hero__finderBox input::-webkit-input-placeholder{
  color: #5f5750 !important;
  opacity: 1 !important;
}

.wk-home-hero__finderBox input::-moz-placeholder{
  color: #5f5750 !important;
  opacity: 1 !important;
}

.wk-home-hero__finderBox input:-ms-input-placeholder{
  color: #5f5750 !important;
}

.wk-home-hero__finderBox input::-ms-input-placeholder{
  color: #5f5750 !important;
}

.wk-home-hero__finderBox .wk-rf__input{
  min-height: 46px;
}

.wk-home-hero__finderBox .wk-rf__input::placeholder,
.wk-home-hero__finderBox input[type="text"]::placeholder,
.wk-home-hero__finderBox input[type="search"]::placeholder{
  color: #8a817a;
  opacity: 1;
}

.wk-home-hero__finderBox .wk-rf__btn,
.wk-home-hero__finderBox button,
.wk-home-hero__finderBox input[type="submit"]{
  min-height: 46px;
  font-family: "Karla", sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: #1f1f1f;
  color: #fff;
  border: 0;
  border-radius: 14px;
  box-shadow: none;
}

.wk-home-hero__finderBox select{
  min-height: 26px;
  padding-right: 24px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #5f5750 50%),
    linear-gradient(135deg, #5f5750 50%, transparent 50%);
  background-position:
    calc(100% - 14px) calc(50% + 1px),
    calc(100% - 8px) calc(50% + 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.wk-home-hero__finderBox .wk-rf__select,
.wk-home-hero__finderBox .wk-rf__missing,
.wk-home-hero__finderBox .wk-rf__filter,
.wk-home-hero__finderBox .wk-rf__dropdownWrap{
  color: #5f5750;
}

.wk-home-hero__finderBox .wk-rf__input:focus,
.wk-home-hero__finderBox input[type="text"]:focus,
.wk-home-hero__finderBox input[type="search"]:focus,
.wk-home-hero__finderBox select:focus{
  outline: none;
  border-color: #b8ada4;
  box-shadow: 0 0 0 3px rgba(184,173,164,0.16);
}


/* =========================================================
   6. KATEGORIEN
   ========================================================= */

.wk-home-cats{
  background: #f8f6f3;
}

.wk-home-catGrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.wk-home-catCard__body{
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 16px;
  text-align: center;
}

.wk-home-catCard__title{
  margin: 0;
  color: #2f2a26;
  font-size: 1.35rem;
  line-height: 1.2;
  text-align: center;
}

.wk-home-catCard__text{
  max-width: 240px;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #5f5750;
  text-align: center;
  opacity: 0.85;
}


/* =========================================================
   7. STARTSEITE – KARUSSELL HELL / KATEGORIEN DUNKEL
   ========================================================= */

/* -------------------------
   KARUSSELL AUF HELLEM HINTERGRUND
   ------------------------- */

.wk-home-carouselPlain{
  position: relative;
  overflow: hidden;
  background: #f8f6f3;
}

.wk-home-carouselPlain__media{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.wk-home-carouselPlain__picture{
  display: block;
  width: 100%;
  height: 100%;
}

.wk-home-carouselPlain__img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wk-home-carouselPlain::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(248,246,243,0.88);
}

.wk-home-carouselPlain .wk-home-section__inner{
  position: relative;
  z-index: 2;
}

.wk-home-carouselPlain .wk-carouselSection,
.wk-home-carouselPlain .wk-carouselSection--home{
  margin: 0;
  padding: 0;
  background: transparent;
}

/* -------------------------
   KATEGORIEN AUF COVER-HINTERGRUND
   ------------------------- */

.wk-home-catsBand{
  position: relative;
  overflow: hidden;
  background: #f3e6e0;
}

.wk-home-catsBand__media{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.wk-home-catsBand__picture{
  display: block;
  width: 100%;
  height: 100%;
}

.wk-home-catsBand__img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wk-home-catsBand::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0,0,0,0.34);
}

.wk-home-catsBand .wk-home-section__inner{
  position: relative;
  z-index: 2;
}

.wk-home-catsBand .wk-home-sectionIntro__eyebrow,
.wk-home-catsBand .wk-home-sectionIntro__title,
.wk-home-catsBand .wk-home-sectionIntro__text{
  color: #fff;
}

.wk-home-catsBand .wk-home-sectionIntro__text{
  opacity: 0.92;
}

.wk-home-catsBand .wk-home-catCard{
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 30px rgba(0,0,0,0.14);
}

.wk-home-catsBand .wk-home-catCard__title{
  color: #2f2a26;
}

.wk-home-catsBand .wk-home-catCard__text{
  color: #5f5750;
  opacity: 0.92;
}


/* =========================================================
   8. ABOUT / BRAND BLOCK
   ========================================================= */

.wk-home-about{
  position: relative;
  overflow: visible;
  padding: 84px 20px 84px;
  z-index: 5;
}

.wk-home-about__media{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.wk-home-about__picture{
  display: block;
  width: 100%;
  height: 100%;
}

.wk-home-about__img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.02);
}

.wk-home-about::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(255,255,255,0.68);
}

.wk-home-about .wk-home-section__inner{
  position: relative;
  z-index: 2;
}

.wk-home-aboutGrid{
  display: grid;
  grid-template-columns: minmax(0, 620px);
  justify-content: start;
}

.wk-home-about__content{
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding: 40px 44px;
  text-align: left;
  background: rgba(255,255,255,0.23);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(47, 42, 38, 0.08);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.wk-home-about .wk-home-sectionIntro__eyebrow{
  margin: 0 0 10px;
}

.wk-home-about .wk-home-sectionIntro__title{
  margin: 0 0 14px;
}

.wk-home-about .wk-home-sectionIntro__text{
  margin: 12px 0 0;
  max-width: 520px;
}

.wk-home-about__content .wk-btn-primary{
  margin-top: 24px;
}

.wk-home-about__sticker{
  position: absolute;
  right: -220px;
  bottom: -130px;
  z-index: 6;
  pointer-events: none;
}

.wk-home-about__stickerPicture,
.wk-home-about__stickerImg{
  display: block;
}

.wk-home-about__stickerImg{
  width: 720px;
  max-width: none;
  height: auto;
}


/* =========================================================
   9. ABOUT – TABLET
   ========================================================= */

@media (max-width: 1100px){

  .wk-home-about{
    padding: 72px 20px 30px;
  }

  .wk-home-aboutGrid{
    grid-template-columns: minmax(0, 520px);
  }

  .wk-home-about__content{
    max-width: 100%;
  }

  .wk-home-about__sticker{
    right: 20px;
    bottom: -40px;
  }

  .wk-home-about__stickerImg{
    width: 640px;
  }
}


/* =========================================================
   10. ABOUT – MOBILE
   ========================================================= */

@media (max-width: 768px){

  .wk-home-about{
    padding: 64px 16px 24px;
  }

  .wk-home-aboutGrid{
    grid-template-columns: 1fr;
  }

  .wk-home-about__content{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    text-align: center;
  }

  .wk-home-about .wk-home-sectionIntro{
    text-align: center;
  }

  .wk-home-about .wk-home-sectionIntro__text{
    text-align: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .wk-home-about__content .wk-btn-primary{
    margin-top: 20px;
    align-self: center;
  }

  .wk-home-about__sticker{
    position: static;
    margin-top: 24px;
    text-align: center;
  }

  .wk-home-about__stickerImg{
    width: 420px;
    max-width: 100%;
    margin: 0 auto;
  }
}


/* =========================================================
   11. HEADER / FOOTER SICHERHEIT
   ========================================================= */

footer,
.site-footer{
  z-index: 1;
}


/* =========================================================
   12. RESPONSIVE – TABLET
   ========================================================= */

@media (max-width: 1100px){

  .wk-home-hero{
    min-height: 700px;
    padding: 20px;
  }

  .wk-home-hero__content{
    max-width: 860px;
    padding: 34px 26px 30px;
  }

  .wk-home-catGrid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wk-home-about{
    padding: 72px 20px 30px;
  }

  .wk-home-aboutGrid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

.wk-home-about__content{
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .wk-home-about .wk-home-sectionIntro{
    text-align: center;
  }

  .wk-home-about .wk-home-sectionIntro__text{
    text-align: center;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }


  .wk-home-about__sticker{
    position: static;
    right: auto;
    bottom: auto;
    margin-top: 24px;
    text-align: center;
    pointer-events: none;
  }

  .wk-home-about__stickerPicture{
    display: inline-block;
  }

  .wk-home-about__stickerImg{
    width: 640px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
}


/* =========================================================
   13. RESPONSIVE – MOBILE
   ========================================================= */

@media (max-width: 768px){

  .wk-header__cols{
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
  }

  .wp-block-site-logo img{
    width: 80px;
    height: auto;
  }

  .wp-site-blocks .wk-header__cols{
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  .wk-home-section{
    padding: 64px 16px;
  }

  .wk-home-sectionIntro{
    margin: 0 auto 30px;
  }

  .wk-home-hero{
    min-height: 700px;
    align-items: flex-start;
    overflow: visible;
    z-index: 3;
  }

  .wk-home-cats,
  .wk-home-carouselPlain,
  .wk-home-about{
    position: relative;
    z-index: 1;
  }

  .wk-home-hero__media{
    overflow: hidden;
  }

  .wk-home-hero__img{
    object-position: center 56%;
  }

  .wk-home-hero__overlay{
    padding: 28px 16px 40px;
    padding-bottom: 90px;
  }

  .wk-home-hero__content{
    max-width: 100%;
    padding: 22px 21px 18px;
    border-radius: 22px;
  }

  .wk-home-hero__text{
    margin-bottom: 24px !important;
    font-size: 1rem;
    line-height: 1.6;
  }

  .wk-home-hero__finderBox{
    margin-bottom: 18px;
    padding: 14px;
    border-radius: 18px;
  }

  .wk-home-hero__finderBox .wk-rf__row{
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
  }

  .wk-home-hero__finderBox .wk-rf__input{
    width: 100%;
    min-height: 42px;
    font-size: 15px;
  }

  .wk-home-hero__finderBox .wk-rf select{
    width: 100%;
    min-height: 38px;
    font-size: 15px;
  }

  .wk-home-hero__finderBox .wk-rf__btn,
  .wk-home-hero__finderBox .wk-rf button,
  .wk-home-hero__finderBox .wk-rf input[type="submit"]{
    width: 100%;
    min-height: 36px;
    font-size: 14px;
    border-radius: 12px;
    padding: 0 2px;
  }

  .wk-home-hero__finderBox .wk-rf select{
    width: 30%;
    min-height: 28px;
    font-size: 15px;
  }

  .wk-home-hero .wk-btn-secondary{
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
  }

  .wk-home-stickerBlase{
    display: none;
  }

  .wk-home-hero__overlay{
    position: relative;
  }

  .wk-home-sticker--desktop{
    display: none;
  }

  .wk-home-sticker-mobileWrap{
    display: block;
    position: relative;
    width: 358px;
    margin: 20px auto -40px;
    z-index: 4;
    pointer-events: none;
    transform: translateX(-50px);
  }

  .wk-home-sticker-mobile{
    display: block;
    position: relative;
    width: 80%;
    z-index: 2;
    pointer-events: none;
    transform: translate(16px, 72px) rotate(5deg);
  }

  .wk-home-sticker-mobile__picture,
  .wk-home-sticker-mobile__img{
    display: block;
    width: 100%;
    height: auto;
  }

  .wk-home-stickerBlase-mobile{
    display: block;
    position: absolute;
    left: 130px;
    top: -18px;
    width: 325px;
    z-index: 3;
    transform: rotate(5deg);
    pointer-events: none;
  }

  .wk-home-stickerBlase-mobile__picture,
  .wk-home-stickerBlase-mobile__img{
    display: block;
    width: 100%;
    height: auto;
  }

  .wk-home-hero__actions{
    gap: 10px;
  }

  .wk-home-catGrid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wk-home-catCard__body{
    padding: 18px 18px 20px;
  }

  .wk-carouselSectionIntro{
    padding-top: 20px;
  }
 }

/* =========================================================
   14. HEADER / FOOTER
   ========================================================= */

.wk-header__cols{
  margin-bottom: 0 !important;
  background: #ffffff !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: var(--wp--style--root--padding-left, 24px) !important;
  padding-right: var(--wp--style--root--padding-right, 24px) !important;
  box-sizing: border-box !important;
}

.wp-site-blocks .wk-header__cols{
  justify-content: center;
  padding-top: 55px !important;
  padding-right: 32px !important;
  padding-bottom: 55px !important;
  padding-left: 32px !important;
  gap: 0 !important;
}

.wp-site-blocks .wk-header__col-left{
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wp-site-blocks .wk-header__col-left > .wp-block-group{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px !important;
  width: auto;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.wp-site-blocks .wk-header__col-left .wp-block-site-logo,
.wp-site-blocks .wk-header__col-left .wp-block-site-title{
  margin-top: 0;
  margin-bottom: 0;
}

.wp-site-blocks .wk-header__col-left .wp-block-site-title,
.wp-site-blocks .wk-header__col-left .wp-block-site-title a{
  font-family: var(--wp--preset--font-family--heading);
  font-weight: var(--wp--custom--typography--font-weight--bold);
}

/* Footer */
.wp-block-columns.alignwide > .wp-block-column:first-child{
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.wp-block-columns.alignwide > .wp-block-column:first-child .wp-block-site-logo{
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 10px !important;
}

.wp-block-columns.alignwide > .wp-block-column:first-child .wp-block-site-title,
.wp-block-columns.alignwide > .wp-block-column:first-child .wp-block-site-title a,
.wp-block-columns.alignwide > .wp-block-column:first-child h1.wp-block-site-title,
.wp-block-columns.alignwide > .wp-block-column:first-child h1.wp-block-site-title a{
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  font-family: var(--wp--preset--font-family--heading) !important;
  font-weight: var(--wp--custom--typography--font-weight--bold) !important;
  margin: 0 !important;
}

.wp-block-group.alignfull.is-vertical.is-content-justification-center.is-layout-flex{
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 6px !important;
  width: 100% !important;
}

.wp-block-group.alignfull.is-vertical.is-content-justification-center.is-layout-flex > p,
.wp-block-group.alignfull.is-vertical.is-content-justification-center.is-layout-flex > p.has-text-align-right,
.wp-block-group.alignfull.is-vertical.is-content-justification-center.is-layout-flex > p.has-small-font-size,
.wp-block-group.alignfull.is-vertical.is-content-justification-center.is-layout-flex > p.has-text-align-right.has-small-font-size{
  width: 100% !important;
  margin: 0 !important;
  text-align: center !important;
}

footer .wp-block-navigation__container.is-vertical.wp-block-navigation,
.wp-block-columns.alignwide .wp-block-navigation__container.is-vertical.wp-block-navigation{
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

footer .wp-block-navigation__container.is-vertical.wp-block-navigation > li,
.wp-block-columns.alignwide .wp-block-navigation__container.is-vertical.wp-block-navigation > li{
  margin: 0 !important;
}

footer .wp-block-navigation-item__content,
.wp-block-columns.alignwide .wp-block-navigation-item__content{
  line-height: 1.55 !important;
}

.wk-site-footer .wp-block-columns.alignwide{
  margin-bottom: 0 !important;
}

.wp-block-columns.alignwide.are-vertically-aligned-top.wp-block-columns-is-layout-flex,
.wp-block-group.alignfull.is-vertical.is-content-justification-center.wp-block-group-is-layout-flex{
  background: #ffffff !important;
}

.wp-block-columns.alignwide.are-vertically-aligned-top.wp-block-columns-is-layout-flex{
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-top: 56px !important;
  padding-bottom: 36px !important;
  box-sizing: border-box !important;
}

.wp-block-group.alignfull.is-vertical.is-content-justification-center.wp-block-group-is-layout-flex{
  padding-top: 8px !important;
  padding-bottom: 18px !important;
}

.wp-block-group.alignfull.is-vertical.is-content-justification-center.wp-block-group-is-layout-flex > p{
  text-align: center !important;
  margin: 0 !important;
}

.cmplz-manage-consent,
.cky-btn-revisit-wrapper,
.borlabs-cookie-widget{
  transform: scale(0.5);
  transform-origin: bottom right;
  opacity: 0.7;
  bottom: 0 !important;
  right: 10px !important;
}