:root{
  --wj-blue:#4abdd4;
  --wj-magenta:#c72b78;
  --wj-green:#9be15d;
  --wj-dark:#252a31;
  --wj-softdark:#30343b;
  --wj-light:#f6f8fb;
  --wj-border:#e8e8e8;
  --wj-text:#252a31;
}

*,*::before,*::after{
  box-sizing:border-box;
}

*{
  margin:0;
  padding:0;
  outline:none;
}

html,
body{
  width:100%;
  max-width:100vw;
  overflow-x:hidden;
  font-size:1.1rem;
  font-weight:300;
  font-family:"Work Sans",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  line-height:1.5;
  color:var(--wj-text);
  background:var(--wj-light);
  text-rendering:optimizeSpeed;
  margin:0 auto;
}

body.wj-home-page,
body.wj-employer-page{
  background:var(--wj-light);
}

a{
  color:var(--wj-dark);
  text-decoration:none;
  font-weight:700;
}

a:hover{
  text-decoration:none;
}

p{
  margin:.7rem 0;
}

h1,h2,h3,h4{
  color:var(--wj-dark);
  line-height:1.15;
  margin-bottom:.5rem;
  font-weight:700;
}

img{
  display:inline-block;
  max-width:100%;
  height:auto;
  object-fit:cover;
}

li{
  list-style:none;
}

button,
input,
textarea,
select{
  font-family:inherit;
  font-size:1rem;
}

.clear{
  clear:both;
}

.center{
  text-align:center;
}

.left{
  text-align:left;
}

.right{
  text-align:right;
}

.white{
  color:#fff !important;
}

.hidden,
.nodisplay{
  display:none !important;
}

.no_smphone{
  display:inline-block !important;
}

.smphone{
  display:none !important;
}

.w100p{width:100%;max-width:100%;}
.w80p{width:80%;max-width:1200px;}
.w60p{width:60%;}
.w50p{width:50%;}
.w48p{width:48%;max-width:48%;}
.w33p{width:33.3333%;max-width:33.3333%;}

.flex,
.flex_nopad{
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:stretch;
}

.flex{
  padding:50px;
}

.flex_nopad{
  padding:0;
}

.cover{
  background-position:center !important;
  background-repeat:no-repeat !important;
  background-size:cover !important;
}

/* Buttons */

.button,
a.button,
input.button,
.wj-btn-primary,
.wj-btn-secondary,
.wj-small-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  cursor:pointer;
  border:none;
  border-radius:12px;
  padding:14px 28px;
  font-size:1rem;
  font-weight:800;
  line-height:1.2;
  white-space:nowrap;
  text-decoration:none !important;
  transition:.2s ease;
}

.button,
a.button,
input.button,
.wj-btn-primary{
  background:var(--wj-magenta);
  color:#fff !important;
  box-shadow:0 12px 30px rgba(199,43,120,.28);
}

.button:hover,
a.button:hover,
.wj-btn-primary:hover{
  background:#a91f63;
  transform:translateY(-2px);
}

.wj-btn-secondary{
  background:#fff;
  color:var(--wj-dark) !important;
  border:2px solid var(--wj-dark);
}

.wj-btn-secondary:hover{
  background:var(--wj-dark);
  color:#fff !important;
}

.wj-small-btn{
  margin-top:15px;
  background:var(--wj-magenta);
  color:#fff !important;
  padding:10px 22px;
  box-shadow:none;
}

.wj-small-btn:hover{
  background:#a91f63;
}

/* Navigation */

nav.wj-nav{
  width:100%;
  height:86px !important;
  background:transparent;
  position:relative;
  z-index:200;
}

.prenavi,
.wj-prenavi{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:86px !important;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  box-shadow:0 8px 30px rgba(0,0,0,.08);
  border-bottom:1px solid rgba(0,0,0,.06);
  z-index:100;
}

.prenav_cont,
.wj-nav-inner{
  width:100%;
  max-width:1240px;
  height:86px;
  margin:0 auto;
  padding:0 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.wj-logo{
  display:flex;
  align-items:center;
  height:100%;
}

.wj-logo img,
.logo img{
  width:auto;
  height:48px;
  margin:0;
  object-fit:contain;
}

.wj-nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-left:auto;
}

.wj-nav-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 18px;
  border-radius:999px;
  color:var(--wj-dark) !important;
  font-size:.95rem;
  font-weight:800;
  text-decoration:none !important;
  transition:.2s ease;
}

.wj-nav-links a:hover{
  background:rgba(199,43,120,.1);
  color:var(--wj-magenta) !important;
}

.wj-nav-links .wj-nav-login{
  background:var(--wj-magenta);
  color:#fff !important;
  margin-left:8px;
  box-shadow:0 10px 26px rgba(199,43,120,.24);
}

.wj-nav-links .wj-nav-login:hover{
  background:#a91f63;
  color:#fff !important;
  transform:translateY(-1px);
}

.setting,
.wj-menu-toggle{
  width:48px;
  height:48px;
  line-height:42px;
  border-radius:50%;
  background:var(--wj-dark);
  color:#fff;
  font-size:34px;
  text-align:center;
  margin-left:18px;
  cursor:pointer;
  transition:.2s ease;
}

.setting:hover,
.wj-menu-toggle:hover{
  background:var(--wj-magenta);
  transform:scale(.96);
}

.wj-mobile-login a{
  display:inline-block;
  background:var(--wj-magenta);
  color:#fff !important;
  padding:9px 14px;
  border-radius:999px;
  font-size:.85rem;
  text-decoration:none !important;
}

/* Side Menu */

.setting-box{
  position:fixed;
  right:-300px;
  top:0;
  width:300px;
  height:100%;
  background:#fff;
  border-left:1px solid var(--wj-border);
  padding:5px 20px 20px;
  text-align:left;
  z-index:199;
  box-shadow:-12px 0 40px rgba(0,0,0,.14);
}

.setting-box-top{
  position:relative;
  display:block;
  padding:0 0 20px !important;
  line-height:50px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.setting-back{
  font-size:40px;
  display:inline-flex;
  float:right;
  cursor:pointer;
  color:var(--wj-dark);
}

.setting-box-main ul{
  position:relative;
  display:block;
  border-bottom:1px solid rgba(0,0,0,.08);
  padding:18px 0;
  margin:0;
}

.setting-box-main ul li a{
  display:block;
  padding:14px 0;
  color:var(--wj-dark);
  font-size:1rem;
  font-weight:800;
  text-decoration:none !important;
}

.setting-box-main ul li a:hover{
  color:var(--wj-magenta);
}

/* Hero */

.wj-hero{
  min-height:720px;
  padding-top:90px;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(255,255,255,.97) 0%,rgba(255,255,255,.88) 48%,rgba(255,255,255,.2) 100%),
    url('/pics/main.jpg');
  background-size:cover;
  background-position:center right;
}

.wj-hero::before{
  content:"";
  position:absolute;
  top:-120px;
  left:-80px;
  width:120%;
  height:260px;
  border-bottom:9px solid var(--wj-magenta);
  border-radius:0 0 60% 60%;
  transform:rotate(-5deg);
  opacity:.95;
}

.wj-hero-inner{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  padding:120px 40px 80px;
}

.wj-hero-text{
  max-width:600px;
  padding-left:20px;
}

.wj-badge{
  display:inline-block;
  background:var(--wj-magenta);
  color:#fff;
  padding:8px 18px;
  border-radius:50px;
  font-weight:800;
  margin-bottom:20px;
  text-transform:uppercase;
  font-size:.85rem;
  letter-spacing:.04em;
}

.wj-hero h1{
  font-size:clamp(2.4rem,5vw,4.7rem);
  font-weight:900;
  line-height:.98;
  text-transform:uppercase;
  color:var(--wj-dark);
  margin-bottom:20px;
}

.wj-hero h2{
  font-size:clamp(2rem,4vw,3.7rem);
  font-weight:900;
  line-height:1;
  text-transform:uppercase;
  color:var(--wj-magenta);
  margin-bottom:25px;
}

.wj-hero p{
  font-size:1.15rem;
  max-width:560px;
  color:#333;
  padding:0;
}

.wj-hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  margin-top:30px;
}

.wj-hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:25px;
}

.wj-hero-points span{
  display:inline-block;
  background:#fff;
  color:var(--wj-dark);
  padding:10px 16px;
  border-radius:50px;
  font-weight:800;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
  border:1px solid rgba(199,43,120,.18);
}

.wj-hero-card{
  max-width:360px;
  background:rgba(37,42,49,.92);
  color:#fff;
  border-left:7px solid var(--wj-magenta);
  border-radius:22px;
  padding:35px;
  box-shadow:0 20px 55px rgba(0,0,0,.25);
}

.wj-check{
  width:58px;
  height:58px;
  line-height:58px;
  text-align:center;
  border-radius:50%;
  background:var(--wj-magenta);
  color:#fff;
  font-size:2rem;
  font-weight:900;
}

.wj-hero-card strong{
  display:block;
  font-size:1.45rem;
  color:var(--wj-magenta);
  margin:15px 0 10px;
  text-transform:uppercase;
}

.wj-hero-card span{
  display:block;
  font-size:1rem;
  color:#fff;
}

/* Sections */

.wj-benefits,
.wj-jobtypes,
.wj-process,
.wj-regions{
  margin:70px auto;
  text-align:center;
}

.wj-benefits h2,
.wj-jobtypes h2,
.wj-process h2,
.wj-cta h2,
.wj-regions h2,
.wj-text-section h2{
  font-size:clamp(2rem,4vw,3.4rem);
  font-weight:900;
  color:var(--wj-dark);
  text-transform:uppercase;
  margin-bottom:35px;
}

.wj-benefit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.wj-benefit{
  background:#fff;
  border-radius:22px;
  padding:30px 25px;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
  border-bottom:5px solid var(--wj-magenta);
}

.wj-icon{
  width:70px;
  height:70px;
  margin:0 auto 20px;
  border-radius:50%;
  background:var(--wj-magenta);
  color:#fff;
  font-size:2rem;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
}

.wj-benefit h3{
  color:var(--wj-magenta);
  font-weight:900;
  text-transform:uppercase;
  font-size:1.15rem;
}

.wj-benefit p{
  padding:0;
  font-size:.95rem;
}

/* Job Types */

.wj-jobtype-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.wj-jobtype-grid a{
  display:block;
  background:#fff;
  color:var(--wj-dark) !important;
  padding:24px 20px;
  border-radius:18px;
  text-decoration:none !important;
  font-weight:900;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
  border-bottom:5px solid var(--wj-magenta);
  transition:.2s ease;
}

.wj-jobtype-grid a:hover{
  background:var(--wj-magenta);
  color:#fff !important;
  transform:translateY(-3px);
}

/* Process */

.wj-process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.wj-process-step{
  background:#fff;
  padding:35px 25px;
  border-radius:22px;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
  overflow:hidden;
}

.wj-process-step span{
  display:inline-block;
  font-size:2.8rem;
  font-weight:900;
  color:rgba(199,43,120,.18);
  margin-bottom:10px;
}

.wj-process-step h3{
  color:var(--wj-magenta);
  font-weight:900;
  text-transform:uppercase;
  font-size:1.1rem;
}

.wj-process-step p{
  padding:0;
  font-size:.95rem;
}

/* CTA */

.wj-cta{
  background:#fff;
  border:3px solid var(--wj-magenta);
  border-radius:24px;
  padding:45px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  box-shadow:0 16px 45px rgba(0,0,0,.08);
  margin:70px auto;
}

.wj-cta h2{
  color:var(--wj-magenta);
  margin-bottom:20px;
}

.wj-cta ul li{
  margin:12px 0;
  font-weight:600;
}

.wj-cta ul li::before{
  content:"✓";
  display:inline-block;
  background:var(--wj-magenta);
  color:#fff;
  width:24px;
  height:24px;
  border-radius:50%;
  line-height:24px;
  text-align:center;
  margin-right:10px;
  font-weight:900;
}

/* Arbeitgeber */

.wj-employer-area{
  display:flex;
  gap:40px;
  align-items:stretch;
  margin:90px auto;
  padding:55px;
  border-radius:30px;
  background:
    linear-gradient(135deg,rgba(37,42,49,.96),rgba(37,42,49,.88)),
    url('/pics/job-interview.jpg');
  background-size:cover;
  background-position:center;
  color:#fff;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
  position:relative;
  overflow:hidden;
}

.wj-employer-area::before{
  content:"";
  position:absolute;
  right:-120px;
  top:-120px;
  width:360px;
  height:360px;
  border:12px solid var(--wj-magenta);
  border-radius:50%;
  opacity:.5;
}

.wj-employer-content,
.wj-employer-side{
  position:relative;
  z-index:2;
}

.wj-employer-content{
  flex:1.4;
}

.wj-employer-side{
  flex:.8;
  display:flex;
  flex-direction:column;
  gap:22px;
}

.wj-employer-content h2{
  font-size:clamp(2rem,4vw,3.7rem);
  font-weight:900;
  line-height:1.05;
  text-transform:uppercase;
  color:#fff;
}

.wj-employer-content h3{
  font-size:clamp(1.8rem,3vw,3rem);
  font-weight:900;
  text-transform:uppercase;
  color:var(--wj-magenta);
  margin-bottom:22px;
}

.wj-employer-content p{
  max-width:720px;
  color:#fff;
  padding:0;
  font-size:1.1rem;
}

.wj-employer-list{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin:30px 0;
}

.wj-employer-list div{
  background:rgba(255,255,255,.1);
  border-left:5px solid var(--wj-magenta);
  padding:18px 22px;
  border-radius:16px;
  backdrop-filter:blur(6px);
}

.wj-employer-list strong{
  display:block;
  color:#fff;
  font-size:1.1rem;
  margin-bottom:4px;
}

.wj-employer-list span{
  color:rgba(255,255,255,.86);
  font-size:.95rem;
}

.wj-employer-box{
  background:#fff;
  color:var(--wj-dark);
  padding:30px;
  border-radius:22px;
  box-shadow:0 16px 40px rgba(0,0,0,.2);
  border-top:6px solid var(--wj-magenta);
}

.wj-employer-box.dark{
  background:var(--wj-magenta);
  color:#fff;
}

.wj-employer-box strong{
  display:block;
  font-size:1.45rem;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:10px;
}

.wj-employer-box p{
  padding:0;
  color:inherit;
}

.wj-employer-box.dark .wj-small-btn{
  background:#fff;
  color:var(--wj-magenta) !important;
}

/* Regions / Text */

.wj-regions a{
  display:inline-block;
  margin:8px;
  padding:12px 22px;
  border-radius:50px;
  background:var(--wj-dark);
  color:#fff !important;
  text-decoration:none !important;
}

.wj-regions a:hover{
  background:var(--wj-magenta);
}

.wj-text-section{
  background:#fff;
  padding:50px;
  border-radius:24px;
  margin:70px auto;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.wj-text-section p{
  font-size:1.05rem;
  line-height:1.8;
  padding:0;
}

/* Footer / Cookies */

footer{
  display:block;
  width:100%;
  margin:10px auto 0;
  padding:3rem;
  background:var(--wj-dark);
  color:#fff !important;
}

footer a{
  color:rgba(255,255,255,.65);
  padding:4px 15px;
  text-decoration:none;
}

footer a:hover{
  color:#fff;
}

.cookies{
  position:fixed;
  left:20%;
  top:10px;
  bottom:10px;
  width:60%;
  padding:20% 10%;
  background:rgba(0,0,0,.95) !important;
  color:#fff;
  font-size:14px;
  z-index:999;
}

/* Mobile */

@media only screen and (max-width:850px){
  body{
    width:100%;
    max-width:100vw;
    overflow-x:hidden;
  }

  .no_smphone{
    display:none !important;
  }

  .smphone{
    display:block !important;
  }

  .w80p,
  .w60p,
  .w50p,
  .w48p,
  .w33p{
    width:100% !important;
    max-width:100% !important;
  }

  nav.wj-nav,
  .prenavi,
  .wj-prenavi,
  .prenav_cont,
  .wj-nav-inner{
    height:78px !important;
  }

  .wj-nav-inner,
  .prenav_cont{
    padding:0 16px;
  }

  .wj-logo img,
  .logo img{
    height:40px;
  }

  .setting,
  .wj-menu-toggle{
    width:44px;
    height:44px;
    line-height:38px;
    font-size:30px;
    margin-left:10px;
  }

  .setting-box{
    width:100%;
    right:-100%;
    z-index:199;
  }

  .setting-box-main a{
    font-size:1.2rem !important;
    line-height:50px;
  }

  .wj-hero{
    min-height:auto;
    padding-top:100px;
    background:
      linear-gradient(rgba(255,255,255,.94),rgba(255,255,255,.94)),
      url('/pics/main.jpg');
    background-size:cover;
    background-position:center;
  }

  .wj-hero-inner{
    flex-direction:column;
    padding:55px 20px 45px;
    gap:30px;
  }

  .wj-hero-text{
    padding-left:0;
    text-align:center;
  }

  .wj-hero h1,
  .wj-hero h2,
  .wj-benefits h2,
  .wj-jobtypes h2,
  .wj-process h2,
  .wj-cta h2,
  .wj-regions h2,
  .wj-text-section h2{
    text-align:center;
  }

  .wj-hero p{
    text-align:center;
    padding:0;
  }

  .wj-hero-buttons,
  .wj-hero-points{
    justify-content:center;
  }

  .wj-hero-card{
    max-width:100%;
  }

  .wj-benefit-grid,
  .wj-jobtype-grid,
  .wj-process-grid{
    grid-template-columns:1fr;
  }

  .wj-cta,
  .wj-employer-area{
    flex-direction:column;
    padding:30px 20px;
    text-align:center;
  }

  .wj-employer-content p{
    text-align:center;
  }

  .wj-employer-list div{
    text-align:left;
  }

  .wj-text-section{
    padding:30px 20px;
  }

  .cookies{
    left:5%;
    width:90%;
  }
}

.wj-footer{
  width:100%;
  margin:90px auto 0;
  padding:60px 24px 40px;
  background:var(--wj-dark);
  color:#fff;
}

.wj-footer-inner{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr .7fr;
  gap:35px;
  align-items:flex-start;
}

.wj-footer-brand img{
  width:auto;
  height:46px;
  margin:0 0 15px;
  object-fit:contain;
}

.wj-footer-brand p{
  margin:0;
  color:rgba(255,255,255,.75);
  font-weight:600;
}

.wj-footer-links,
.wj-footer-meta,
.wj-footer-social{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.wj-footer a{
  color:rgba(255,255,255,.72);
  font-size:.95rem;
  font-weight:700;
  text-decoration:none;
  transition:.2s ease;
}

.wj-footer a:hover{
  color:#fff;
  transform:translateX(3px);
}
.wj-article-main{
  background:var(--wj-light);
}

.wj-article-hero{
  padding:145px 24px 75px;
  background:
    linear-gradient(90deg,rgba(255,255,255,.97),rgba(255,255,255,.9),rgba(255,255,255,.62)),
    url('/pics/main.jpg');
  background-size:cover;
  background-position:center right;
}

.wj-article-hero-inner{
  max-width:1100px;
  margin:0 auto;
}

.wj-article-hero h1{
  max-width:900px;
  font-size:clamp(2.2rem,5vw,4.5rem);
  font-weight:900;
  text-transform:uppercase;
  line-height:1;
}

.wj-article-hero p{
  max-width:760px;
  font-size:1.15rem;
  color:#444;
}

.wj-article-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.wj-article-meta span{
  background:#fff;
  border-radius:999px;
  padding:10px 16px;
  font-weight:900;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.wj-article-layout{
  width:100%;
  max-width:1200px;
  margin:70px auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1fr 340px;
  gap:30px;
  box-sizing:border-box;
}

.wj-article-content{
  background:#fff;
  border-radius:28px;
  padding:34px;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.wj-article-image img{
  width:100%;
  max-height:560px;
  object-fit:cover;
  border-radius:24px;
  margin:0;
}

.wj-article-image small{
  display:block;
  margin-top:8px;
  color:#777;
  font-size:.8rem;
}

.wj-article-promise{
  margin:28px 0;
  background:#f8f9fb;
  border-left:6px solid var(--wj-magenta);
  border-radius:18px;
  padding:22px;
  font-size:1.1rem;
}

.wj-article-text{
  font-size:1.05rem;
  line-height:1.85;
}

.wj-article-text h2,
.wj-article-text h3{
  margin-top:2.4rem;
  font-weight:900;
}

.wj-author-box{
  margin-top:35px;
  background:#f8f9fb;
  border-radius:24px;
  padding:28px;
  border-top:6px solid var(--wj-magenta);
}

.wj-author-box h2{
  font-weight:900;
  text-transform:uppercase;
}

.wj-author-inner{
  display:flex;
  gap:20px;
  align-items:flex-start;
}

.wj-author-avatar{
  width:90px;
  height:90px;
  border-radius:22px;
  background:#fff url('/pics/logo.png') center/cover no-repeat;
  flex-shrink:0;
}

.wj-author-inner strong,
.wj-author-inner span,
.wj-author-inner a{
  display:block;
}

.wj-author-inner strong{
  font-size:1.2rem;
  color:var(--wj-dark);
}

.wj-author-inner span{
  color:var(--wj-magenta);
  font-weight:800;
}

.wj-author-inner a{
  margin-top:8px;
  color:var(--wj-magenta);
}

.wj-author-links{
  margin-top:24px;
  display:grid;
  gap:10px;
}

.wj-author-links a{
  color:var(--wj-dark);
}

.wj-article-sidebar{
  display:grid;
  gap:24px;
  align-content:start;
}

@media(max-width:850px){
  .wj-article-hero{
    padding:120px 20px 50px;
    background:
      linear-gradient(rgba(255,255,255,.94),rgba(255,255,255,.94)),
      url('/pics/main.jpg');
    background-size:cover;
    background-position:center;
  }

  .wj-article-layout{
    grid-template-columns:1fr;
    padding:0 16px;
    margin:40px auto;
  }

  .wj-article-content{
    padding:22px 18px;
  }

  .wj-author-inner{
    flex-direction:column;
    text-align:center;
    align-items:center;
  }
}

/* Container optional */
.wj-ratgeber-box{
  background:#fff;
  padding:20px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  border-bottom:5px solid var(--wj-magenta);
}

/* einzelne Links */
.article_load_more{
  display:block;
  padding:12px 14px;
  margin-bottom:10px;
  border-radius:12px;
  background:#f7f7f9;
  color:#333;
  font-weight:600;
  font-size:.95rem;
  text-decoration:none;
  transition:.2s ease;
  border-left:4px solid transparent;
}

/* Hover Effekt */
.article_load_more:hover{
  background:#fff;
  transform:translateX(4px);
  border-left:4px solid var(--wj-magenta);
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  color:var(--wj-dark);
}

/* kleine Linie zwischen Links */
.article_load_more:not(:last-child){
  border-bottom:1px solid #eee;
}

/* Titel oben */
.orange_back{
  padding:3px 8px;
  border-radius:8px;
  background:linear-gradient(135deg,var(--wj-magenta),#ff6ec7);
  color:#fff;
}
/* Container */
.wj-ratgeber-box{
  background:#fff;
  padding:20px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  border-bottom:5px solid var(--wj-magenta);
}

/* Beruf Links */
.wj-beruf-link{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  margin-bottom:10px;
  border-radius:12px;
  background:#f7f7f9;
  color:#333;
  font-weight:600;
  font-size:.95rem;
  text-decoration:none;
  transition:.2s ease;
  border-left:4px solid transparent;
}

/* Icon */
.wj-beruf-icon{
  font-size:1.1rem;
}

/* Hover */
.wj-beruf-link:hover{
  background:#fff;
  transform:translateX(4px);
  border-left:4px solid var(--wj-magenta);
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

/* Trennung */
.wj-beruf-link:not(:last-child){
  border-bottom:1px solid #eee;
}

@media only screen and (max-width:850px){
  .wj-footer{
    margin-top:50px;
    padding:45px 20px 35px;
    text-align:center;
  }

  .wj-footer-inner{
    grid-template-columns:1fr;
    gap:25px;
  }

  .wj-footer-links,
  .wj-footer-meta,
  .wj-footer-social{
    align-items:center;
  }

  .wj-footer a:hover{
    transform:none;
  }
}