
/* =========================
   GMBH HOME TEASER (DARK)
========================= */

.neeb-gmbh-home-teaser{
  position:relative;
  overflow:hidden;

  width:100vw;
  max-width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);

  padding:90px 24px;

  background:
    repeating-linear-gradient(
      120deg,
      rgba(255,255,255,.04) 0px,
      rgba(255,255,255,.04) 1px,
      transparent 1px,
      transparent 14px
    ),
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.08), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(8,72,99,.35), transparent 40%),
    linear-gradient(135deg, #02131c 0%, #062f40 45%, #084863 100%);
}

/* Links Fix */
.neeb-gmbh-home-teaser a,
.neeb-gmbh-home-teaser a:hover,
.neeb-gmbh-home-teaser a:focus,
.neeb-gmbh-home-teaser a:active{
  color:inherit !important;
  text-decoration:none !important;
  border-bottom:none !important;
}

.neeb-gmbh-home-teaser .glossary-link,
.neeb-gmbh-home-teaser .glossaryLink,
.neeb-gmbh-home-teaser a.glossary{
  border-bottom:none !important;
  color:inherit !important;
}

.neeb-gmbh-home-container{
  max-width:1100px;
  margin:0 auto;
}

.neeb-gmbh-home-card{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;

  padding:38px;
  border-radius:30px;

  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(12px);
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

/* LEFT CONTENT */

.neeb-gmbh-home-kicker{
  display:inline-block;
  margin-bottom:14px;
  padding:6px 12px;
  border-radius:999px;

  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);

  color:rgba(255,255,255,.75);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.07em;
}

.neeb-gmbh-home-content h2{
  margin:0 0 16px;

  font-size:42px;
  line-height:1.05;
  letter-spacing:-.04em;

  color:#ffffff;
  font-weight:800;
}

.neeb-gmbh-home-content h2 span{
  color:#d3e8f0;
}

.neeb-gmbh-home-content p{
  margin:0 0 22px;

  font-size:18px;
  line-height:1.7;

  color:rgba(255,255,255,.85);
}

/* POINTS */

.neeb-gmbh-home-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:26px;
}

.neeb-gmbh-home-points span{
  padding:8px 12px;
  border-radius:12px;

  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);

  font-size:13px;
  color:rgba(255,255,255,.85);
}

/* CTA */

.neeb-gmbh-home-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:54px;
  padding:0 26px;

  border-radius:16px;

  background:#ffffff;
  color:#084863 !important;

  text-decoration:none !important;
  font-size:14px;
  font-weight:800;

  box-shadow:0 18px 40px rgba(0,0,0,.25);

  transition:.25s ease;
}

.neeb-gmbh-home-button:hover{
  transform:translateY(-2px);
  color:#084863 !important;
}

/* IMAGE RIGHT SIDE */

.neeb-gmbh-home-image{
  position:relative;
  overflow:hidden;

  border-radius:24px;
  min-height:420px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#02131c;
}

.neeb-gmbh-home-image img{
  width:100%;
  height:100%;
  object-fit:cover;

  transition:transform .4s ease;
}

.neeb-gmbh-home-image:after{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      180deg,
      rgba(2,19,28,0) 40%,
      rgba(2,19,28,.45) 100%
    );
}

.neeb-gmbh-home-card:hover .neeb-gmbh-home-image img{
  transform:scale(1.04);
}

/* MOBILE */

@media(max-width:900px){
  .neeb-gmbh-home-card{
    grid-template-columns:1fr;
  }

  .neeb-gmbh-home-image{
    min-height:260px;
  }
}

@media(max-width:700px){

  .neeb-gmbh-home-teaser{
    padding:60px 16px;
  }

  .neeb-gmbh-home-card{
    padding:26px 20px;
    border-radius:24px;
  }

  .neeb-gmbh-home-content h2{
    font-size:30px;
  }

  .neeb-gmbh-home-content p{
    font-size:15.5px;
  }

  .neeb-gmbh-home-button{
    width:100%;
  }
}
