
/* =========================
   SECTION WRAPPER
========================= */
.neeb-erbschaft-intro{
  position:relative;
  overflow:visible;
  padding:110px 24px;
}

.neeb-erbschaft-intro::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:100vw;
  transform:translateX(-50%);
  background:
    radial-gradient(circle at 12% 10%, rgba(8,72,99,.06), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(8,72,99,.05), transparent 38%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
  z-index:0;
}

.neeb-erbschaft-container{
  position:relative;
  z-index:1;
  max-width:1240px;
  margin:0 auto;
}

/* =========================
   HEAD
========================= */
.neeb-erbschaft-head{
  max-width:860px;
  margin:0 auto 46px;
  text-align:center;
}

.neeb-erbschaft-eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:8px 14px;
  margin-bottom:18px;
  border-radius:999px;
  background:rgba(8,72,99,.08);
  border:1px solid rgba(8,72,99,.10);
  color:#084863;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.neeb-erbschaft-title{
  margin:0 0 16px;
  font-size:52px;
  line-height:1.02;
  font-weight:800;
  letter-spacing:-.04em;
  color:#0f172a;
  text-wrap:balance;
}

.neeb-erbschaft-title span{
  color:#0b6b8d;
}

.neeb-erbschaft-lead{
  margin:0;
  font-size:18px;
  line-height:1.8;
  color:#586575;
}

/* =========================
   MAIN LAYOUT
========================= */
.neeb-erbschaft-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(320px, .92fr);
  gap:34px;
  align-items:start;
}

.neeb-erbschaft-main{
  min-width:0;
}

.neeb-erbschaft-content-box{
  padding:36px 36px 32px;
  border-radius:30px;
  background:linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
  border:1px solid rgba(8,72,99,.10);
  box-shadow:0 18px 40px rgba(15,23,42,.06);
}

.neeb-erbschaft-content-box p{
  margin:0 0 18px;
  font-size:17px;
  line-height:1.9;
  color:#475565;
}

.neeb-erbschaft-content-box p:last-child{
  margin-bottom:0;
}

/* =========================
   SIDE
========================= */
.neeb-erbschaft-side{
  display:grid;
  gap:18px;
}

.neeb-erbschaft-highlight{
  padding:30px 28px;
  border-radius:28px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(135deg, #084863 0%, #0b5b7b 100%);
  color:#ffffff;
  box-shadow:0 24px 60px rgba(8,72,99,.20);
}

.neeb-erbschaft-highlight h3{
  margin:0 0 12px;
  font-size:32px;
  line-height:1.08;
  font-weight:800;
  letter-spacing:-.03em;
  color:#ffffff;
  text-wrap:balance;
}

.neeb-erbschaft-highlight p{
  margin:0;
  font-size:16px;
  line-height:1.8;
  color:rgba(255,255,255,.90);
}

.neeb-erbschaft-mini-grid{
  display:grid;
  gap:16px;
}

.neeb-erbschaft-mini{
  padding:22px 22px 20px;
  border-radius:24px;
  background:linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border:1px solid rgba(8,72,99,.10);
  box-shadow:0 16px 34px rgba(15,23,42,.06);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.neeb-erbschaft-mini:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 44px rgba(15,23,42,.08);
  border-color:rgba(8,72,99,.16);
}

.neeb-erbschaft-mini strong{
  display:block;
  margin-bottom:8px;
  font-size:21px;
  line-height:1.15;
  color:#10202d;
  font-weight:800;
  letter-spacing:-.02em;
}

.neeb-erbschaft-mini p{
  margin:0;
  font-size:15px;
  line-height:1.75;
  color:#5a6774;
}

/* =========================
   BOTTOM SUMMARY
========================= */
.neeb-erbschaft-bottom{
  margin-top:30px;
}

.neeb-erbschaft-bottom-box{
  max-width:100%;
  padding:28px 30px;
  border-radius:26px;
  background:
    linear-gradient(135deg, rgba(8,72,99,.05) 0%, rgba(11,107,141,.08) 100%);
  border:1px solid rgba(8,72,99,.10);
  box-shadow:0 14px 30px rgba(15,23,42,.05);
}

.neeb-erbschaft-bottom-box p{
  margin:0;
  font-size:17px;
  line-height:1.85;
  color:#334155;
  text-wrap:balance;
}

/* =========================
   TABLET
========================= */
@media (max-width:980px){
  .neeb-erbschaft-layout{
    grid-template-columns:1fr;
    gap:28px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width:767px){
  .neeb-erbschaft-intro{
    padding:56px 16px;
  }

  .neeb-erbschaft-head{
    margin-bottom:30px;
    text-align:left;
  }

  .neeb-erbschaft-title{
    font-size:34px;
    line-height:1.08;
  }

  .neeb-erbschaft-lead{
    font-size:15px;
    line-height:1.75;
  }

  .neeb-erbschaft-content-box{
    padding:22px 20px;
    border-radius:22px;
  }

  .neeb-erbschaft-content-box p{
    font-size:15px;
    line-height:1.8;
  }

  .neeb-erbschaft-highlight{
    padding:24px 20px 22px;
    border-radius:22px;
  }

  .neeb-erbschaft-highlight h3{
    font-size:25px;
    line-height:1.1;
  }

  .neeb-erbschaft-highlight p{
    font-size:15px;
    line-height:1.75;
  }

  .neeb-erbschaft-mini{
    padding:18px;
    border-radius:20px;
  }

  .neeb-erbschaft-mini strong{
    font-size:19px;
  }

  .neeb-erbschaft-mini p{
    font-size:14px;
    line-height:1.7;
  }

  .neeb-erbschaft-bottom{
    margin-top:22px;
  }

  .neeb-erbschaft-bottom-box{
    padding:22px 20px;
    border-radius:22px;
  }

  .neeb-erbschaft-bottom-box p{
    font-size:15px;
    line-height:1.8;
  }
}