/*
 * FSV 63 Luckenwalde – News-Seite
 */

:root {
  --fsv63-blue: #073f9e;
  --fsv63-blue-2: #0a65c8;
  --fsv63-dark: #071a35;
  --fsv63-ink: #102341;
  --fsv63-muted: #6f7d91;
  --fsv63-soft: #eef4fb;
  --fsv63-yellow: #ffd200;
  --fsv63-white: #ffffff;
  --fsv63-radius: 28px;
  --fsv63-shadow: 0 24px 70px rgba(7, 26, 53, 0.14);
}

body .fsv63-news-page,
.fsv63-news-page * {
  box-sizing: border-box;
}

.fsv63-news-page {
  background: linear-gradient(180deg, #f5f9fd 0%, #ffffff 34%, #f2f7fc 100%);
  color: var(--fsv63-ink);
  overflow: hidden;
}

.fsv63-news-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.fsv63-news-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fsv63-yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fsv63-news-eyebrow::before {
  content: "";
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.fsv63-news-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 210, 0, 0.18), transparent 24%),
    linear-gradient(105deg, rgba(5, 25, 56, 0.96) 0%, rgba(7, 63, 158, 0.92) 52%, rgba(9, 113, 205, 0.82) 100%);
}

.fsv63-news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--fsv63-news-hero);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: -2;
}

.fsv63-news-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -1px -8%;
  height: 86px;
  background: #f5f9fd;
  transform: skewY(-2.5deg);
  transform-origin: left bottom;
  z-index: -1;
}

.fsv63-news-hero__content {
  max-width: 710px;
  padding: 86px 0 120px;
}

.fsv63-news-hero h1,
.fsv63-news-section h2,
.fsv63-news-cta h2 {
  margin: 0;
  color: var(--fsv63-dark);
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.fsv63-news-hero h1 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(54px, 8vw, 104px);
  max-width: 760px;
}

.fsv63-news-hero p {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  font-weight: 650;
}

.fsv63-news-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.fsv63-news-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.fsv63-news-btn:hover,
.fsv63-news-btn:focus-visible {
  transform: translateY(-2px);
  text-decoration: none !important;
}

.fsv63-news-btn--yellow {
  background: var(--fsv63-yellow);
  color: #152137 !important;
  box-shadow: 0 16px 36px rgba(255, 210, 0, 0.23);
}

.fsv63-news-btn--ghost {
  background: rgba(255, 255, 255, 0.13);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.fsv63-news-btn--blue {
  background: var(--fsv63-blue);
  color: #fff !important;
  box-shadow: 0 16px 36px rgba(7, 63, 158, 0.22);
}

.fsv63-news-stats {
  margin-top: -58px;
  position: relative;
  z-index: 4;
}

.fsv63-news-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fsv63-news-stat {
  min-height: 128px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(19, 52, 93, 0.08);
  box-shadow: var(--fsv63-shadow);
  backdrop-filter: blur(10px);
}

.fsv63-news-stat strong {
  display: block;
  color: var(--fsv63-blue-2);
  font-size: clamp(30px, 4vw, 47px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.fsv63-news-stat span {
  display: block;
  margin-top: 10px;
  color: var(--fsv63-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fsv63-news-section {
  padding: 96px 0 0;
}

.fsv63-news-section--featured {
  padding-top: 112px;
}

.fsv63-news-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.fsv63-news-section-head h2,
.fsv63-news-cta h2 {
  margin-top: 12px;
  font-size: clamp(38px, 5vw, 68px);
  max-width: 760px;
}

.fsv63-news-section-head > a {
  color: var(--fsv63-blue);
  font-weight: 900;
  text-decoration: none !important;
  white-space: nowrap;
}

.fsv63-news-featured-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.fsv63-news-featured-grid .fsv63-news-card--featured {
  grid-row: span 2;
}

.fsv63-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.fsv63-news-card {
  overflow: hidden;
  border-radius: var(--fsv63-radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 40, 80, 0.08);
  box-shadow: 0 18px 54px rgba(7, 26, 53, 0.11);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.fsv63-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 78px rgba(7, 26, 53, 0.16);
}

.fsv63-news-card__media {
  position: relative;
  display: block;
  min-height: 218px;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 210, 0, 0.24), transparent 22%),
    linear-gradient(135deg, var(--fsv63-blue), #0795db);
  overflow: hidden;
}

.fsv63-news-card__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.fsv63-news-card:hover .fsv63-news-card__media img {
  transform: scale(1.045);
}

.fsv63-news-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 950;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.fsv63-news-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--fsv63-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fsv63-news-card__body {
  padding: 24px;
}

.fsv63-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 12px;
  color: var(--fsv63-blue-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fsv63-news-card h3 {
  margin: 0;
  color: var(--fsv63-dark);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.fsv63-news-card h3 a {
  color: inherit !important;
  text-decoration: none !important;
}

.fsv63-news-card p {
  margin: 14px 0 0;
  color: var(--fsv63-muted);
  line-height: 1.55;
  font-size: 15px;
}

.fsv63-news-card__link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--fsv63-blue) !important;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none !important;
}

.fsv63-news-card--featured .fsv63-news-card__media {
  min-height: 410px;
}

.fsv63-news-card--featured h3 {
  font-size: clamp(30px, 4vw, 48px);
}

.fsv63-news-card--featured .fsv63-news-card__body {
  padding: 30px;
}

.fsv63-news-card--compact {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  min-height: 100%;
}

.fsv63-news-card--compact .fsv63-news-card__media {
  min-height: 100%;
}

.fsv63-news-card--compact .fsv63-news-card__body {
  padding: 22px;
}

.fsv63-news-card--compact h3 {
  font-size: 21px;
}

.fsv63-news-section-head--filters {
  align-items: flex-start;
}

.fsv63-news-filters {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
}

.fsv63-news-filters button,
.fsv63-news-filters a {
  min-height: 38px;
  padding: 10px 15px;
  border: 1px solid rgba(7, 63, 158, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--fsv63-ink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.fsv63-news-filters button:hover,
.fsv63-news-filters button.is-active,
.fsv63-news-filters a:hover,
.fsv63-news-filters a.is-active {
  background: var(--fsv63-blue);
  color: #fff;
  border-color: var(--fsv63-blue);
  transform: translateY(-1px);
}


.fsv63-news-filters a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.fsv63-news-filter-note {
  margin: -6px 0 22px;
  color: var(--fsv63-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.fsv63-news-filter-note strong {
  color: var(--fsv63-blue);
  text-transform: uppercase;
}

.fsv63-news-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.fsv63-news-pagination .page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(7, 63, 158, 0.14);
  background: #fff;
  color: var(--fsv63-ink) !important;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(7, 26, 53, 0.06);
}

.fsv63-news-pagination .page-numbers.current,
.fsv63-news-pagination .page-numbers:hover {
  background: var(--fsv63-blue);
  border-color: var(--fsv63-blue);
  color: #fff !important;
}

.fsv63-news-card.is-filtered-out,
.fsv63-news-card.fsv63-news-card-is-hidden {
  display: none !important;
}

.fsv63-news-loadmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.fsv63-news-empty {
  padding: 38px;
  border-radius: var(--fsv63-radius);
  background: #fff;
  box-shadow: var(--fsv63-shadow);
}

.fsv63-news-empty h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.fsv63-news-empty p {
  margin: 0;
  color: var(--fsv63-muted);
}

.fsv63-news-cta {
  padding: 96px 0 108px;
}

.fsv63-news-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 210, 0, 0.22), transparent 22%),
    linear-gradient(135deg, #073f9e, #0b80d3);
  box-shadow: 0 26px 90px rgba(7, 63, 158, 0.24);
}

.fsv63-news-cta h2 {
  color: #fff;
  max-width: 780px;
}

.fsv63-news-cta p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
}

@media (max-width: 1080px) {
  .fsv63-news-featured-grid,
  .fsv63-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fsv63-news-featured-grid .fsv63-news-card--featured {
    grid-row: auto;
    grid-column: span 2;
  }

  .fsv63-news-card--compact {
    grid-template-columns: 1fr;
  }

  .fsv63-news-card--compact .fsv63-news-card__media {
    min-height: 220px;
  }
}

@media (max-width: 820px) {
  .fsv63-news-container {
    width: min(100% - 28px, 1180px);
  }

  .fsv63-news-hero {
    min-height: 470px;
  }

  .fsv63-news-hero__content {
    padding: 68px 0 104px;
  }

  .fsv63-news-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fsv63-news-section {
    padding-top: 72px;
  }

  .fsv63-news-section-head,
  .fsv63-news-section-head--filters,
  .fsv63-news-cta__box {
    display: block;
  }

  .fsv63-news-section-head > a {
    display: inline-flex;
    margin-top: 18px;
  }

  .fsv63-news-filters {
    justify-content: flex-start;
    margin-top: 22px;
  }

  .fsv63-news-featured-grid,
  .fsv63-news-grid {
    grid-template-columns: 1fr;
  }

  .fsv63-news-featured-grid .fsv63-news-card--featured {
    grid-column: auto;
  }

  .fsv63-news-card--featured .fsv63-news-card__media {
    min-height: 270px;
  }

  .fsv63-news-cta .fsv63-news-btn {
    margin-top: 24px;
  }
}

@media (max-width: 560px) {
  .fsv63-news-hero h1 {
    font-size: 46px;
  }

  .fsv63-news-hero p {
    font-size: 17px;
  }

  .fsv63-news-actions,
  .fsv63-news-actions .fsv63-news-btn {
    width: 100%;
  }

  .fsv63-news-stats {
    margin-top: -42px;
  }

  .fsv63-news-stats__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fsv63-news-stat {
    min-height: auto;
    padding: 20px;
  }

  .fsv63-news-section-head h2,
  .fsv63-news-cta h2 {
    font-size: 36px;
  }

  .fsv63-news-card__media,
  .fsv63-news-card--featured .fsv63-news-card__media {
    min-height: 220px;
  }

  .fsv63-news-card__body,
  .fsv63-news-card--featured .fsv63-news-card__body {
    padding: 20px;
  }

  .fsv63-news-card h3,
  .fsv63-news-card--featured h3 {
    font-size: 22px;
  }
}

/* News-Feinschliff */
.fsv63-news-page {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.fsv63-news-stats__grid {
  align-items: stretch;
}

.fsv63-news-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fsv63-news-stat strong {
  overflow-wrap: normal;
  word-break: keep-all;
}

.fsv63-news-section-head h2 {
  text-wrap: balance;
}

.fsv63-news-card__media {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.fsv63-news-card--featured .fsv63-news-card__media {
  aspect-ratio: 16 / 10.5;
  min-height: 0;
}

.fsv63-news-card--compact .fsv63-news-card__media {
  aspect-ratio: auto;
  min-height: 100%;
}

.fsv63-news-card__placeholder {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 210, 0, 0.28), transparent 22%),
    linear-gradient(135deg, #073f9e 0%, #0a65c8 100%);
}

.fsv63-news-filters button,
.fsv63-news-filters a {
  box-shadow: 0 10px 22px rgba(7, 26, 53, 0.05);
}

.fsv63-news-loadmore-wrap .fsv63-news-btn {
  min-width: 210px;
}

.fsv63-news-cta__box .fsv63-news-btn {
  white-space: nowrap;
}

@media (min-width: 821px) {
  .fsv63-news-section--featured {
    padding-top: 96px;
  }

  .fsv63-news-stat:nth-child(3) strong {
    font-size: clamp(30px, 3.3vw, 42px);
  }
}

@media (max-width: 1080px) {
  .fsv63-news-card--compact .fsv63-news-card__media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .fsv63-news-hero h1 {
    letter-spacing: -0.04em;
  }

  .fsv63-news-section-head h2,
  .fsv63-news-cta h2 {
    line-height: 0.98;
  }

  .fsv63-news-filters {
    gap: 8px;
  }

  .fsv63-news-filters button,
.fsv63-news-filters a {
    min-height: 36px;
    padding: 9px 12px;
  }
}


/* News-Hero: Diagonale bewusst behalten, aber sauberer und ruhiger gestalten */
.fsv63-news-hero {
  overflow: hidden !important;
}

.fsv63-news-hero::after {
  content: "" !important;
  position: absolute !important;
  left: -4% !important;
  right: -4% !important;
  bottom: -1px !important;
  height: 96px !important;
  background:
    linear-gradient(90deg, rgba(255, 210, 0, 0) 0%, rgba(255, 210, 0, 0.72) 18%, rgba(10, 101, 200, 0.36) 52%, rgba(255, 210, 0, 0) 100%) 0 40% / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(245, 249, 253, 0.02) 0%, rgba(245, 249, 253, 0.38) 44%, #f5f9fd 45%, #f5f9fd 100%) !important;
  clip-path: polygon(0 58%, 100% 34%, 100% 100%, 0 100%) !important;
  transform: none !important;
  transform-origin: center bottom !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.fsv63-news-stats {
  margin-top: -50px !important;
}

@media (max-width: 820px) {
  .fsv63-news-hero::after {
    height: 76px !important;
    clip-path: polygon(0 62%, 100% 42%, 100% 100%, 0 100%) !important;
  }

  .fsv63-news-stats {
    margin-top: -42px !important;
  }
}

/* News-Karten: Beitragsaufrufe mit Auge-Icon */
.fsv63-news-views {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6f7d91;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.fsv63-news-views svg {
  display: block;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.fsv63-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}


/* =========================================================
   News-Hero: Hero-Bild zurück + Schräge wieder stärker
   ========================================================= */

.fsv63-news-hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  min-height: 520px !important;
  background-image:
    radial-gradient(circle at 78% 28%, rgba(255, 210, 0, 0.16), transparent 24%),
    linear-gradient(105deg, rgba(5, 25, 56, 0.90) 0%, rgba(7, 63, 158, 0.72) 52%, rgba(9, 113, 205, 0.48) 100%),
    var(--fsv63-news-hero, linear-gradient(135deg, #073f9e 0%, #0a65c8 100%)) !important;
  background-size: auto, cover, cover !important;
  background-position: center, center, center !important;
  background-repeat: no-repeat !important;
}

/* Das Bild liegt jetzt direkt im Hero-Hintergrund. Die alte Pseudo-Bildfläche wird deaktiviert,
   damit sie nicht hinter dem blauen Verlauf verschwindet. */
.fsv63-news-hero::before {
  content: none !important;
  display: none !important;
}

/* Schräge wie vorher deutlicher, aber sauberer mit weichem Verlauf und Akzentlinie. */
.fsv63-news-hero::after {
  content: "" !important;
  position: absolute !important;
  left: -5% !important;
  right: -5% !important;
  bottom: -1px !important;
  height: 138px !important;
  background:
    linear-gradient(90deg, rgba(255, 210, 0, 0) 0%, rgba(255, 210, 0, 0.88) 16%, rgba(10, 101, 200, 0.42) 48%, rgba(255, 255, 255, 0) 100%) 0 42% / 100% 2px no-repeat,
    linear-gradient(180deg, rgba(245, 249, 253, 0.00) 0%, rgba(245, 249, 253, 0.36) 38%, #f5f9fd 39%, #f5f9fd 100%) !important;
  clip-path: polygon(0 72%, 100% 34%, 100% 100%, 0 100%) !important;
  transform: none !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.fsv63-news-hero__content,
.fsv63-news-hero .fsv63-news-container {
  position: relative !important;
  z-index: 3 !important;
}

.fsv63-news-stats {
  position: relative !important;
  z-index: 5 !important;
  margin-top: -74px !important;
}

@media (max-width: 820px) {
  .fsv63-news-hero {
    min-height: 500px !important;
    background-position: center, center, center !important;
  }

  .fsv63-news-hero::after {
    height: 112px !important;
    clip-path: polygon(0 70%, 100% 40%, 100% 100%, 0 100%) !important;
  }

  .fsv63-news-stats {
    margin-top: -52px !important;
  }
}

/* Patch 243: Newsroom nach echter Kategorie-Hierarchie */
.fsv63-news-section--channels {
  padding-top: 90px;
}

.fsv63-news-channel-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
}

.fsv63-news-channel-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid rgba(7, 63, 158, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--fsv63-ink) !important;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 10px 22px rgba(7, 26, 53, 0.05);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.fsv63-news-channel-nav a:hover,
.fsv63-news-channel-nav a:focus-visible {
  background: var(--fsv63-blue);
  border-color: var(--fsv63-blue);
  color: #fff !important;
  transform: translateY(-1px);
}

.fsv63-news-channels {
  display: grid;
  gap: 42px;
}

.fsv63-news-channel {
  position: relative;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 30px;
  border: 1px solid rgba(7, 63, 158, 0.1);
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 210, 0, 0.13), transparent 24%),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 70px rgba(7, 26, 53, 0.08);
  scroll-margin-top: 120px;
}

.fsv63-news-channel::before {
  content: "";
  position: absolute;
  left: clamp(22px, 3vw, 32px);
  right: clamp(22px, 3vw, 32px);
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--fsv63-yellow), rgba(7, 63, 158, 0.72), transparent);
}

.fsv63-news-channel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.fsv63-news-channel__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fsv63-yellow-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fsv63-news-channel__kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.fsv63-news-channel h3 {
  margin: 10px 0 0;
  color: var(--fsv63-dark);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-wrap: balance;
}

.fsv63-news-channel__head p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--fsv63-muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 650;
}

.fsv63-news-channel__subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  max-width: 820px;
}

.fsv63-news-channel__subcats span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(7, 63, 158, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--fsv63-blue);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(7, 26, 53, 0.05);
}

.fsv63-news-channel__count {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(7, 63, 158, 0.12);
  background: #fff;
  color: var(--fsv63-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(7, 26, 53, 0.06);
}

.fsv63-news-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.fsv63-news-btn--load-section {
  min-width: 230px;
  border: 1px solid rgba(7, 63, 158, 0.16) !important;
  background: #fff !important;
  color: var(--fsv63-blue) !important;
  cursor: pointer;
}

.fsv63-news-btn--load-section:hover,
.fsv63-news-btn--load-section:focus-visible {
  background: var(--fsv63-blue) !important;
  color: #fff !important;
}

.fsv63-news-btn--load-section[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none !important;
}

@media (max-width: 1080px) {
  .fsv63-news-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .fsv63-news-channel-nav {
    justify-content: flex-start;
    margin-top: 22px;
  }

  .fsv63-news-channel__head {
    display: block;
  }

  .fsv63-news-channel__count {
    display: inline-flex;
    margin-top: 18px;
  }

  .fsv63-news-channel__subcats {
    margin-top: 14px;
  }
}

@media (max-width: 560px) {
  .fsv63-news-section--channels {
    padding-top: 70px;
  }

  .fsv63-news-channel {
    padding: 22px;
    border-radius: 24px;
  }

  .fsv63-news-section-grid {
    grid-template-columns: 1fr;
  }

  .fsv63-news-channel h3 {
    font-size: 32px;
  }

  .fsv63-news-channel-nav {
    gap: 8px;
  }

  .fsv63-news-channel-nav a {
    min-height: 36px;
    padding: 9px 12px;
  }
}

/* Patch 244: Newsroom-Schalter, robustes Nachladen und ruhigere Karten-Typografie */
.fsv63-news-channel-switcher {
  display: grid;
  justify-items: end;
  gap: 12px;
  max-width: 760px;
  width: 100%;
}

.fsv63-news-channel-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(7, 63, 158, 0.14);
  border-radius: 999px;
  background: var(--fsv63-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(7, 63, 158, 0.16);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.fsv63-news-channel-toggle:hover,
.fsv63-news-channel-toggle:focus-visible {
  transform: translateY(-1px);
  background: #0a65c8;
  box-shadow: 0 18px 36px rgba(7, 63, 158, 0.2);
}

.fsv63-news-channel-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.fsv63-news-channel-switcher.is-expanded .fsv63-news-channel-toggle::after {
  transform: rotate(225deg) translateY(-2px);
}

.fsv63-news-channel-toggle__count {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--fsv63-yellow);
  color: #101b2f;
  font-size: 10px;
  letter-spacing: 0;
}

.fsv63-news-js .fsv63-news-channel-switcher:not(.is-expanded) .fsv63-news-channel-nav {
  max-height: 92px;
  overflow: hidden;
  position: relative;
}

.fsv63-news-js .fsv63-news-channel-switcher:not(.is-expanded) .fsv63-news-channel-nav::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(245, 249, 253, 0), #f5f9fd 88%);
}

.fsv63-news-channel-nav {
  transition: max-height 0.24s ease;
}

.fsv63-news-channel__kicker {
  color: var(--fsv63-yellow) !important;
}

.fsv63-news-section-grid .fsv63-news-card {
  border-radius: 24px;
}

.fsv63-news-section-grid .fsv63-news-card__media {
  aspect-ratio: 16 / 9;
}

.fsv63-news-section-grid .fsv63-news-card__body {
  padding: clamp(20px, 2.2vw, 26px);
}

.fsv63-news-section-grid .fsv63-news-card__meta {
  margin-bottom: 14px;
  gap: 8px 10px;
  font-size: 11px;
  letter-spacing: 0.075em;
}

.fsv63-news-section-grid .fsv63-news-card h3 {
  font-size: clamp(24px, 1.9vw, 34px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.04em !important;
  word-break: normal;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.fsv63-news-section-grid .fsv63-news-card p {
  font-size: 16px;
  line-height: 1.56;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fsv63-news-section-grid .fsv63-news-card__link {
  margin-top: 16px;
}

.fsv63-news-btn--load-section {
  text-decoration: none !important;
}

.fsv63-news-btn--load-section.is-loading,
.fsv63-news-btn--load-section[aria-disabled="true"] {
  cursor: wait;
  opacity: 0.72;
  pointer-events: none;
  transform: none !important;
}

@media (min-width: 1081px) {
  .fsv63-news-section-grid .fsv63-news-card h3 {
    font-size: clamp(25px, 1.65vw, 31px) !important;
  }
}

@media (max-width: 820px) {
  .fsv63-news-channel-switcher {
    justify-items: start;
    max-width: none;
    margin-top: 22px;
  }

  .fsv63-news-channel-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .fsv63-news-js .fsv63-news-channel-switcher:not(.is-expanded) .fsv63-news-channel-nav {
    max-height: 84px;
  }
}

@media (max-width: 560px) {
  .fsv63-news-section-grid .fsv63-news-card h3 {
    font-size: 24px !important;
  }

  .fsv63-news-section-grid .fsv63-news-card p {
    font-size: 15px;
    -webkit-line-clamp: 3;
  }
}


/* Patch 245: Newsbereich-Navigation wirklich einklappen */
.fsv63-news-js .fsv63-news-channel-switcher:not(.is-expanded) .fsv63-news-channel-nav,
.fsv63-news-channel-nav[hidden] {
  display: none !important;
  max-height: 0 !important;
  margin-top: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.fsv63-news-js .fsv63-news-channel-switcher:not(.is-expanded) .fsv63-news-channel-nav::after {
  content: none !important;
  display: none !important;
}

.fsv63-news-js .fsv63-news-channel-switcher.is-expanded .fsv63-news-channel-nav {
  display: flex !important;
  max-height: none !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

@media (max-width: 820px) {
  .fsv63-news-js .fsv63-news-channel-switcher:not(.is-expanded) .fsv63-news-channel-nav {
    max-height: 0 !important;
  }
}
