/* === Sektionen === */

.section {
  position: relative;
  padding: 70px 0;
}
.section-news {
  margin-top: -1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .64), rgba(240, 246, 251, .92));
}
.section-alt {
  background: linear-gradient(180deg, #f5f7fb 0%, #eef2f8 100%);
}
.section-dark {
  background:
    radial-gradient(circle at top, rgba(58, 130, 255, .15), transparent 32%),
    linear-gradient(180deg, #0b2341 0%, #07192f 100%);
  color: #fff;
}

/* --- Section-Head --- */
.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-head.centered {
  text-align: center;
  margin-inline: auto;
  align-items: center;
}
.section-label {
  display: inline-block;
  color: #2f73da;
  background: rgba(47, 115, 218, .10);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 12px;
}
.section-dark .section-label {
  color: #85d2ff;
  background: rgba(133, 210, 255, .12);
}
.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4.2vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.section-head p {
  margin: 0;
  color: var(--clr-muted);
  font-size: 1.02rem;
}
.section-dark .section-head p {
  color: rgba(255, 255, 255, .72);
}

/* --- Social Section Head --- */
.social-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}
.social-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: rgba(47, 115, 218, .10);
  color: #2f73da;
  font-weight: 800;
  margin-bottom: 18px;
}
.social-section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.social-section-head p {
  margin: 0;
  color: var(--clr-muted);
  font-size: 1.06rem;
}

/* --- Widget-Sektion --- */
.widget-stack {
  display: grid;
  gap: 24px;
}
.widget-card {
  padding: 20px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .78));
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: var(--shadow-soft);
}
.widget-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.widget-kicker {
  display: inline-block;
  margin-bottom: 6px;
  color: #2f73da;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.widget-head h3 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -.03em;
}
.widget-head p {
  margin: 0;
  color: var(--clr-muted);
}
.widget-shell {
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(247, 250, 254, .98));
  border: 1px solid rgba(11, 35, 65, .07);
  overflow: hidden;
}
.widget-shell .fussballde_widget {
  min-height: 220px;
}

@media (min-width: 768px) {
  .section { padding: 110px 0; }
  .section-head { margin-bottom: 34px; }
  .section-head p { font-size: 1.08rem; }
  .social-section-head { margin-bottom: 42px; }
  .social-section-head p { font-size: 1.14rem; }
  .widget-card { padding: 24px; }
  .widget-head {
    flex-direction: row;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-end;
  }
  .widget-head h3 { font-size: 1.6rem; }
}
