/* =========================================================
   INDEX / NEWS LAYOUT – FINAL CLEAN
   ohne Button-System
   Buttons kommen aus button.css
========================================================= */

/* ---------------------------------------------------------
   Basis / Shell
--------------------------------------------------------- */
.news-home-wrap {
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(180deg, #f6f2ea 0%, #f2eee7 100%);
  color: #1f1b17;
}

.index-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 24px;
}

/* ---------------------------------------------------------
   Header
--------------------------------------------------------- */
.news-home-header {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 0 14px !important;
  padding-top: 2px;
  text-align: left;
}

.news-page-submeta {
  color: #766955;
  font-size: 0.93rem;
  line-height: 1.55;
}

.news-page-submeta .badge {
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  color: #5f533f !important;
  font-weight: 700;
}

/* ---------------------------------------------------------
   Ticker
--------------------------------------------------------- */
.index-ticker-section {
  width: 100%;
  margin-bottom: 16px;
}

.news-ticker-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 14px 0 16px;
  overflow: hidden;
  border-bottom: 1px solid rgba(181, 135, 53, 0.12);
}

.news-ticker-label {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #8a6c39;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-ticker-label i {
  font-size: 0.85rem;
}

.news-ticker {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}

.news-ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: tickerMove 55s linear infinite;
}

.news-ticker:hover .news-ticker-track {
  animation-play-state: paused;
}

.news-ticker-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: clamp(240px, 34vw, 420px);
  color: #51463b;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.96;
}

.news-ticker-item:hover {
  color: #2f271f;
  opacity: 1;
}

.news-ticker-item::after {
  content: "•";
  flex: 0 0 auto;
  margin-inline-start: 22px;
  color: rgba(138, 108, 57, 0.28);
  font-size: 1rem;
}

.news-ticker-text {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.news-ticker-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 28px;
  padding: 0 12px;
  border: 0 !important;
  border-radius: 5px;
  box-shadow: none;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-ticker-badge-breaking {
  background: #c62828 !important;
  color: #fff !important;
  animation: tickerBlink 1s infinite;
}

.news-ticker-badge-new {
  background: #2e7d32 !important;
  color: #fff !important;
}

.news-ticker-badge-breaking + .news-ticker-text {
  font-weight: 600;
}

@keyframes tickerBlink {
  0% { opacity: 1; }
  50% { opacity: 0.25; }
  100% { opacity: 1; }
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------------------------------------------------
   Grid / Sidebar
--------------------------------------------------------- */
.index-content-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 2.2fr);
  gap: 24px;
  align-items: start;
}

.index-sidebar,
.news-sidebar-column {
  position: relative;
  min-width: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

.index-main,
.news-main-column {
  min-width: 0;
  width: 100%;
}

.news-main-column {
  text-align: left;
}

.sidebar-sticky {
  position: sticky;
  top: 96px;
  z-index: 5;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* ---------------------------------------------------------
   Generic sidebar card reset
--------------------------------------------------------- */
.portal-side-card {
  position: relative;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.portal-side-card .card-body {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.portal-side-card h3,
.portal-side-card .h6 {
  color: #17130f;
}

.portal-side-card .badge.bg-light.text-dark.border {
  background: rgba(181, 135, 53, 0.06) !important;
  border: 1px solid rgba(181, 135, 53, 0.10) !important;
  color: #7a674f !important;
  box-shadow: none !important;
}

/* ---------------------------------------------------------
   Meta-Zeilen
--------------------------------------------------------- */
.lead-news-meta,
.secondary-news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.28rem 0.52rem;
  margin: 0;
  color: #85745f;
  font-size: 0.82rem;
  line-height: 1.58;
  letter-spacing: 0;
}

.lead-news-meta i,
.secondary-news-meta i {
  margin-right: 0.2rem;
  font-size: 0.74rem;
  opacity: 0.58;
}

.meta-sep {
  opacity: 0.26;
  font-weight: 400;
}

.meta-author {
  font-weight: 500;
}

.meta-date,
.meta-views {
  font-variant-numeric: tabular-nums;
}

.lead-news-meta a,
.secondary-news-meta a {
  color: inherit;
  text-decoration: none;
}

.lead-news-meta a:hover,
.secondary-news-meta a:hover {
  color: #6f5a3c;
}

.meta-author-with-image {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  line-height: 1.2;
}

.meta-author-avatar {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid rgba(181, 135, 53, 0.12);
  background: #efe7da;
}

/* ---------------------------------------------------------
   Kategorie / Badges
--------------------------------------------------------- */
.news-category-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid rgba(181, 135, 53, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  color: #5f513d !important;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.news-category-inline:hover {
  border-color: rgba(181, 135, 53, 0.18);
  background: rgba(181, 135, 53, 0.07);
  color: #2b241c !important;
}

.news-category-inline.is-new {
  min-height: 28px;
  padding: 5px 11px;
  border: 1px solid rgba(165, 29, 35, 0.18) !important;
  background: #b1262d !important;
  color: #fff !important;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.news-category-inline.is-new:hover {
  border-color: rgba(165, 29, 35, 0.24) !important;
  background: #9e1f26 !important;
  color: #fff !important;
}

.lead-news-meta .news-category-inline,
.secondary-news-meta .news-category-inline {
  min-height: 22px;
  padding: 3px 8px;
  border-color: rgba(181, 135, 53, 0.10);
  background: rgba(255, 255, 255, 0.26);
  font-size: 0.7rem;
}

.lead-news-meta .news-category-inline.is-new,
.secondary-news-meta .news-category-inline.is-new {
  min-height: 24px;
  padding: 4px 9px;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.news-badge-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 2px 7px;
  border: 1px solid rgba(181, 135, 53, 0.12);
  border-radius: 999px;
  background: rgba(234, 208, 130, 0.34);
  color: #8a5a12;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
}

/* ---------------------------------------------------------
   Lead-Artikel
--------------------------------------------------------- */
.lead-news-card {
  position: relative;
  margin: 0.1rem 0 1.55rem !important;
  padding: 0 0 1.5rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(181, 135, 53, 0.14);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.lead-news-image-link {
  display: block;
  margin-bottom: 0.95rem !important;
  text-decoration: none;
  overflow: hidden;
}

.lead-news-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 260px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 0 !important;
  background: #e8e1d6;
}

.lead-news-card .lead-news-meta {
  margin-bottom: 0.45rem !important;
}

.lead-news-title {
  margin: 0 0 0.7rem !important;
}

.lead-news-title a {
  color: #17130f;
  text-decoration: none;
  font-size: clamp(1.85rem, 2.6vw, 2.5rem);
  font-weight: 780;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.lead-news-title a:hover {
  color: #7d5f2c;
}

.lead-news-excerpt {
  max-width: 70ch;
  margin-bottom: 0.9rem !important;
  color: #4d4338;
  font-size: 1rem;
  line-height: 1.9;
}

/* ---------------------------------------------------------
   Sekundärartikel
--------------------------------------------------------- */
.secondary-news-list {
  display: flex;
  flex-direction: column;
  margin-top: 0.1rem;
}

.secondary-news-card {
  position: relative;
  padding: 1.25rem 0 1.3rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(181, 135, 53, 0.14);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.secondary-news-card:last-child {
  border-bottom: 0;
}

.secondary-news-image-link {
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.secondary-news-image,
.secondary-news-image-placeholder {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 185px;
  height: 100%;
  border-radius: 0 !important;
}

.secondary-news-image {
  object-fit: cover;
  background: #e8e1d6;
}

.secondary-news-image-placeholder {
  background:
    radial-gradient(140px 80px at 30% 30%, rgba(182, 137, 63, 0.08), transparent 60%),
    radial-gradient(180px 110px at 72% 64%, rgba(212, 175, 55, 0.05), transparent 60%),
    rgba(0, 0, 0, 0.025);
}

.secondary-news-meta {
  margin-bottom: 0.45rem !important;
}

.secondary-news-title {
  margin: 0 0 0.5rem !important;
}

.secondary-news-title a {
  color: #17130f;
  text-decoration: none;
  font-size: clamp(1.16rem, 1.55vw, 1.38rem);
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.secondary-news-title a:hover {
  color: #7d5f2c;
}

.secondary-news-excerpt {
  max-width: 62ch;
  margin-bottom: 0.72rem !important;
  color: #574c40;
  font-size: 0.96rem;
  line-height: 1.8;
}

/* ---------------------------------------------------------
   Buttons – only local spacing, no design
--------------------------------------------------------- */
.lead-news-card .btn,
.secondary-news-card .btn {
  text-decoration: none;
}

/* ---------------------------------------------------------
   Single-View
--------------------------------------------------------- */
.single-article-layout {
  max-width: 820px;
}

.single-article-excerpt {
  max-width: 650px;
}

.news-main-column > .mx-auto .lead-news-card {
  margin-left: auto !important;
  margin-right: auto !important;
}

.news-main-column > .mx-auto .lead-news-title a {
  font-size: clamp(1.95rem, 2.9vw, 2.85rem);
}

.news-main-column > .mx-auto .lead-news-excerpt {
  font-size: 1.05rem;
}

/* ---------------------------------------------------------
   Sidebar promo / ad card
--------------------------------------------------------- */
.sidebar-promo-card {
  position: relative;
  overflow: hidden;
}

.sidebar-promo-link {
  display: block;
  padding: 18px 18px 16px;
  border: 1px solid rgba(181, 135, 53, 0.14);
  background:
    radial-gradient(120px 70px at 100% 0%, rgba(181, 135, 53, 0.10), transparent 60%),
    radial-gradient(120px 70px at 0% 100%, rgba(120, 84, 38, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.48), rgba(255,255,255,0.20));
  color: #241d16;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(36, 29, 22, 0.05);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.sidebar-promo-link:hover {
  transform: translateY(-2px);
  border-color: rgba(181, 135, 53, 0.24);
  box-shadow: 0 16px 36px rgba(36, 29, 22, 0.09);
  color: #1e1812;
  text-decoration: none;
}

.sidebar-promo-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin-bottom: 10px;
  padding: 3px 9px;
  border: 1px solid rgba(181, 135, 53, 0.12);
  background: rgba(181, 135, 53, 0.07);
  color: #6e604b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sidebar-promo-kicker {
  margin-bottom: 6px;
  color: #8a6c39;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-promo-title {
  margin: 0 0 8px !important;
  color: #17130f;
  font-size: 1.14rem;
  font-weight: 820;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.sidebar-promo-text {
  margin: 0 0 14px;
  color: #574c40;
  font-size: 0.95rem;
  line-height: 1.7;
}

.sidebar-promo-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.sidebar-promo-point {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border: 1px solid rgba(181, 135, 53, 0.10);
  background: rgba(255, 255, 255, 0.34);
  color: #5f513d;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
}

.sidebar-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2b241c;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
}

.sidebar-promo-cta::after {
  content: "→";
  transition: transform 0.18s ease;
}

.sidebar-promo-link:hover .sidebar-promo-cta::after {
  transform: translateX(3px);
}

/* ---------------------------------------------------------
   Desktop
--------------------------------------------------------- */
@media (min-width: 1200px) {
  .index-content-grid {
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.88fr);
    gap: 28px;
  }
}

/* ---------------------------------------------------------
   Tablet
--------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .index-shell {
    width: min(1100px, calc(100% - 24px));
  }

  .sidebar-sticky {
    top: 82px;
  }

  .lead-news-image {
    min-height: 230px;
  }

  .lead-news-title a {
    font-size: clamp(1.72rem, 2.4vw, 2.25rem);
  }

  .news-ticker-item {
    max-width: clamp(185px, 34vw, 320px);
  }
}

/* ---------------------------------------------------------
   Mobile Grid
--------------------------------------------------------- */
@media (max-width: 991.98px) {
  .index-content-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sidebar-sticky {
    position: relative;
    top: auto;
  }
}

/* ---------------------------------------------------------
   Small screens
--------------------------------------------------------- */
@media (max-width: 767.98px) {
  .index-shell {
    width: min(100%, calc(100% - 16px));
  }

  .news-home-header {
    margin-bottom: 12px !important;
  }

  .index-ticker-section {
    margin-bottom: 12px;
  }

  .index-content-grid {
    gap: 14px;
  }

  .news-ticker-wrap {
    gap: 10px;
    padding: 12px 0 14px;
  }

  .news-ticker-label {
    font-size: 0.7rem;
  }

  .news-ticker-item {
    gap: 8px;
    max-width: clamp(200px, 60vw, 300px);
    font-size: 0.9rem;
  }

  .news-ticker-track {
    gap: 26px;
    animation-duration: 40s;
  }

  .news-ticker-item::after {
    margin-inline-start: 14px;
  }

  .news-ticker-badge {
    height: 24px;
    padding: 0 10px;
    font-size: 0.62rem;
  }

  .lead-news-image {
    min-height: 210px;
  }

  .lead-news-title a {
    font-size: 1.56rem;
    line-height: 1.1;
  }

  .lead-news-excerpt {
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .secondary-news-card {
    padding: 1rem 0 1.15rem;
  }

  .secondary-news-image,
  .secondary-news-image-placeholder {
    min-height: 190px;
  }

  .secondary-news-title a {
    font-size: 1.2rem;
  }

  .secondary-news-excerpt {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .lead-news-title a {
    font-size: 1.4rem;
  }

  .lead-news-meta,
  .secondary-news-meta {
    gap: 0.16rem 0.4rem;
    font-size: 0.78rem;
    line-height: 1.52;
  }

  .meta-author-avatar {
    width: 34px;
    height: 34px;
  }

  .lead-news-meta .news-category-inline,
  .secondary-news-meta .news-category-inline {
    min-height: 21px;
    padding: 3px 7px;
    font-size: 0.68rem;
  }

  .lead-news-meta .news-category-inline.is-new,
  .secondary-news-meta .news-category-inline.is-new {
    min-height: 23px;
    padding: 4px 8px;
    font-size: 0.7rem;
  }

  .news-badge-new {
    min-height: 21px;
    padding: 2px 6px;
    font-size: 0.6rem;
  }

  .lead-news-card .btn,
  .lead-news-card .btn.btn-outline-secondary,
  .secondary-news-card .btn,
  .secondary-news-card .btn.btn-sm,
  .secondary-news-card .btn.btn-outline-secondary {
    width: auto;
  }

  .portal-side-card .card-body {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .sidebar-promo-link {
    padding: 16px 14px 14px;
  }

  .sidebar-promo-title {
    font-size: 1.04rem;
  }

  .sidebar-promo-text {
    font-size: 0.92rem;
  }
}

/* ---------------------------------------------------------
   RTL
--------------------------------------------------------- */
html[dir="rtl"] .index-content-grid {
  direction: ltr;
}

html[dir="rtl"] .index-sidebar,
html[dir="rtl"] .index-main,
html[dir="rtl"] .news-main-column,
html[dir="rtl"] .news-sidebar-column {
  direction: rtl;
}

html[dir="rtl"] .news-home-header,
html[dir="rtl"] .news-main-column,
html[dir="rtl"] .news-sidebar-column {
  text-align: right;
}

html[dir="rtl"] .news-ticker-wrap {
  flex-direction: row-reverse;
}

html[dir="rtl"] .news-ticker {
  -webkit-mask-image: linear-gradient(to left, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  mask-image: linear-gradient(to left, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}

html[dir="rtl"] .news-ticker-track {
  animation-name: tickerMoveRtl;
}

html[dir="rtl"] .lead-news-meta,
html[dir="rtl"] .secondary-news-meta {
  justify-content: flex-start;
}

html[dir="rtl"] .lead-news-meta i,
html[dir="rtl"] .secondary-news-meta i {
  margin-right: 0;
  margin-left: 0.2rem;
}

html[dir="rtl"] .lead-news-excerpt,
html[dir="rtl"] .secondary-news-excerpt {
  text-align: right;
}

html[dir="rtl"] .news-main-column > .mx-auto .lead-news-meta {
  justify-content: center;
}

html[dir="rtl"] .portal-side-card {
  overflow-x: clip;
}

html[dir="rtl"] .sidebar-promo-link {
  text-align: right;
}

html[dir="rtl"] .sidebar-promo-cta::after {
  content: "←";
}

html[dir="rtl"] .sidebar-promo-link:hover .sidebar-promo-cta::after {
  transform: translateX(-3px);
}

@media (min-width: 1200px) {
  html[dir="rtl"] .news-sidebar-column {
    padding-inline-start: 18px !important;
    padding-inline-end: 0 !important;
  }

  html[dir="rtl"] .news-sidebar-column .sidebar-sticky {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    overflow: hidden;
  }
}

@keyframes tickerMoveRtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ---------------------------------------------------------
   Dark mode
--------------------------------------------------------- */
body.dark .news-home-wrap {
  background: linear-gradient(180deg, #1a1b1d 0%, #161719 100%);
  color: #f4efe6;
}

body.dark .lead-news-title a,
body.dark .secondary-news-title a {
  color: #f5f1e8;
}

body.dark .lead-news-excerpt,
body.dark .secondary-news-excerpt,
body.dark .news-page-submeta,
body.dark .lead-news-meta,
body.dark .secondary-news-meta {
  color: #c6b89d !important;
}

body.dark .news-page-submeta .badge {
  color: #d0c2a7 !important;
}

body.dark .news-ticker-wrap {
  border-bottom-color: rgba(181, 135, 53, 0.12);
}

body.dark .news-ticker-label {
  color: #d2b172;
}

body.dark .news-ticker-item {
  color: #cabda3;
}

body.dark .news-ticker-item:hover {
  color: #f5f1e8;
}

body.dark .news-ticker-item::after {
  color: rgba(210, 177, 114, 0.26);
}

body.dark .news-ticker-badge-breaking {
  background: #d32f2f !important;
  color: #fff !important;
}

body.dark .news-ticker-badge-new {
  background: #2e7d32 !important;
  color: #fff !important;
}

body.dark .meta-author-avatar {
  border-color: rgba(181, 135, 53, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

body.dark .news-category-inline {
  border-color: rgba(181, 135, 53, 0.18) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #d0c2a7 !important;
}

body.dark .news-category-inline:hover {
  background: rgba(181, 135, 53, 0.12) !important;
  color: #fff !important;
}

body.dark .news-category-inline.is-new {
  border-color: rgba(248, 113, 113, 0.18) !important;
  background: #9d212a !important;
  color: #fff !important;
}

body.dark .lead-news-meta .news-category-inline,
body.dark .secondary-news-meta .news-category-inline {
  background: rgba(255, 255, 255, 0.04);
  color: #d0c2a7 !important;
}

body.dark .news-badge-new {
  border-color: rgba(217, 185, 111, 0.16);
  background: rgba(143, 109, 38, 0.28);
  color: #f6ead2;
}

body.dark .lead-news-card,
body.dark .secondary-news-card {
  border-bottom-color: rgba(181, 135, 53, 0.14);
}

body.dark .secondary-news-image-placeholder {
  background:
    radial-gradient(140px 80px at 30% 30%, rgba(182, 137, 63, 0.16), transparent 60%),
    radial-gradient(180px 110px at 72% 64%, rgba(212, 175, 55, 0.08), transparent 60%),
    rgba(255, 255, 255, 0.03);
}

body.dark .lead-news-meta a:hover,
body.dark .secondary-news-meta a:hover {
  color: #e7c978;
}

body.dark .portal-side-card h3,
body.dark .portal-side-card .h6 {
  color: #f5f1e8;
}

body.dark .portal-side-card .badge.bg-light.text-dark.border {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(181, 135, 53, 0.18) !important;
  color: #d0c2a7 !important;
}

body.dark .sidebar-promo-link {
  border-color: rgba(181, 135, 53, 0.18);
  background:
    radial-gradient(140px 80px at 100% 0%, rgba(181, 135, 53, 0.12), transparent 60%),
    radial-gradient(120px 70px at 0% 100%, rgba(255,255,255,0.04), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(181,135,53,0.08));
  color: #f2ede3;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

body.dark .sidebar-promo-link:hover {
  border-color: rgba(181, 135, 53, 0.26);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

body.dark .sidebar-promo-label {
  border-color: rgba(181, 135, 53, 0.18);
  background: rgba(255,255,255,0.05);
  color: #d0c2a7;
}

body.dark .sidebar-promo-kicker {
  color: #d2b172;
}

body.dark .sidebar-promo-title {
  color: #f5f1e8;
}

body.dark .sidebar-promo-text {
  color: #c6b89d;
}

body.dark .sidebar-promo-point {
  border-color: rgba(181, 135, 53, 0.16);
  background: rgba(255,255,255,0.04);
  color: #d0c2a7;
}

body.dark .sidebar-promo-cta {
  color: #f0dfb5;
}