/* ===== Jobs Teaser (Wessel) ===== */
.wh-jobs-teaser__inner{
  max-width:1200px;
  margin:0 auto;
  padding:40px 20px 30px;
}

.wh-jobs-teaser__headline{
  margin:0 0 18px;
  font-size:32px;
  font-weight:800;
  color:#061f44;
}

.wh-jobs-teaser__grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:26px;
}

@media (max-width: 1024px){
  .wh-jobs-teaser__grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .wh-jobs-teaser__grid{ grid-template-columns:1fr; }
}

/* Tile */
.wh-job-tile{
  position:relative;
}

.wh-job-tile__link{
  display:block;
  position:relative;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  background:#0a3b6f;
  aspect-ratio: 2 / 3; 
  min-height: 420px;
}



.wh-job-tile__img,
.wh-job-tile__img img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.wh-job-tile__link::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, #0068ad27 0%, #0068ad 80%);
}

/* Badge */
.wh-job-tile__badge{
  position:absolute;
  top:16px;
  left:16px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  background:#0169AE;
  color:#d3ff2f;
  font-weight:900;
  letter-spacing:.03em;
  text-transform:uppercase;
  line-height:1.1;
}

.wh-job-tile__badgeIcon{
  width:18px;
  height:12px;
  display:inline-block;
  background:
    linear-gradient(#fff,#fff) 0 2px / 18px 3px no-repeat,
    linear-gradient(#fff,#fff) 0 8px / 18px 3px no-repeat;
  transform: skewX(-28deg);
}

/* Content */
.wh-job-tile__content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:18px;
}

.wh-job-tile__title{
  margin:0 0 14px;
  color:#fff;
  font-weight:900;
  font-size:18px;
  line-height:1.25;
  max-width: 85%;
}

.wh-job-tile__ctaRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.wh-job-tile__btn{
  display:inline-block;
  background:#fff;
  color:#061f44;
  font-weight:900;
  padding:10px 14px;
}

.wh-job-tile__corner{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  background: rgba(10, 59, 111, .92);
  color:#fff;
  font-size:20px;
}

.wh-job-tile__link:hover .wh-job-tile__corner{
  transform: translate(-6px, -6px);
}

.wh-jobs-teaser__all{
  margin-top:14px;
}

.wh-jobs-teaser__allLink{
  font-weight:800;
  color:#0169AE;
  text-decoration:none;
}

.wh-jobs-teaser__allLink:hover{ text-decoration:underline; }


