/* =========================================================
   news.css — News/Downloads page (uses base + components + home)
   ========================================================= */

   .news-hero{
    padding: 120px 0 26px;
  }
  
  .news-hero .lead{
    max-width: 78ch;
    color: rgba(8,19,15,.78);
    margin-top: 10px;
  }
  
  .news-hero-cta{
    margin-top: 18px;
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .news-badges{
    margin-top: 14px;
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .news-article{
    overflow: hidden;
  }
  
  .news-article-media{
    height: 560px;
    position: relative;
    background:
      radial-gradient(520px 360px at 20% 25%, rgba(22,193,114,.22), transparent 60%),
      linear-gradient(135deg, rgba(11,42,29,.92), rgba(11,42,29,.58));
  }
  
  .news-article-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .95;
    filter: saturate(1.02) contrast(1.04);
    display:block;
  }
  
  .news-article-media::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.38));
  }
  
  .news-article-body{
    padding: 24px;
  }
  
  .news-meta{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    align-items:center;
  }
  
  .news-meta .tag{
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(8,19,15,.10);
    background: rgba(246,251,248,.92);
    color: rgba(8,19,15,.72);
    font-size: 12px;
  }
  
  .news-kpis{
    display:grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
  
  .kpi{
    border-radius: 18px;
    border: 1px solid rgba(8,19,15,.10);
    background: rgba(246,251,248,.92);
    padding: 14px;
  }
  
  .kpi .k{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: rgba(8,19,15,.55);
  }
  
  .kpi .v{
    margin-top: 8px;
    font-family: Manrope, Inter, system-ui, sans-serif;
    font-weight: 850;
    letter-spacing: -0.03em;
    color: rgba(8,19,15,.92);
    font-size: 18px;
  }
  
  .news-note{
    border-radius: 18px;
    border: 1px solid rgba(22,193,114,.28);
    background: rgba(22,193,114,.08);
    padding: 14px;
    color: rgba(8,19,15,.78);
    line-height: 1.65;
  }
  
  .news-note strong{
    color: rgba(8,19,15,.92);
  }
  
  .news-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
  }
  
  .downloads-wrap{
    border-radius: 24px;
    border: 1px solid rgba(8,19,15,.08);
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow2);
    padding: 20px;
  }
  
  /* Responsive */
  @media (max-width: 980px){
    .news-kpis{
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .news-article-media{ height: 360px; }
  }
  
  @media (max-width: 560px){
    .news-hero{ padding-top: 104px; }
    .news-article-body{ padding: 18px; }
    .news-article-media{ height: 300px; }
    .news-kpis{
      grid-template-columns: 1fr;
    }
  }
  


  /* =========================================================
   Downloads Accordion (Documents) — integrated into news.css
   ========================================================= */

.downloads-wrap .dl-acc{
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

/* Each accordion category card */
.downloads-wrap .dl-acc-item{
  border-radius: 18px;
  border: 1px solid rgba(8,19,15,.10);
  background: rgba(246,251,248,.92);
  overflow: hidden;
}

/* Header button */
.downloads-wrap .dl-acc-btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;

  border: 0;
  background: transparent;
  color: rgba(8,19,15,.92);
  text-align: left;
}

.downloads-wrap .dl-acc-title{
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-weight: 850;
  letter-spacing: -0.02em;
  font-size: 15px;
}

.downloads-wrap .dl-acc-icon{
  transition: transform 220ms ease;
  opacity: .75;
  font-size: 18px;
  line-height: 1;
}

/* Open state */
.downloads-wrap .dl-acc-item.is-open .dl-acc-icon{
  transform: rotate(180deg);
}

/* Panel */
.downloads-wrap .dl-acc-panel{
  border-top: 1px solid rgba(8,19,15,.08);
}

.downloads-wrap .dl-acc-inner{
  padding: 12px;
  display: grid;
  gap: 10px;
}

/* Document link rows (keeps your .dl structure) */
.downloads-wrap .dl{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;

  border: 1px solid rgba(8,19,15,.10);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow1);

  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.downloads-wrap .dl:hover{
  transform: translateY(-1px);
  border-color: rgba(22,193,114,.28);
  background: rgba(255,255,255,.98);
}

.downloads-wrap .dl-meta strong{
  display: block;
  font-weight: 750;
  color: rgba(8,19,15,.92);
  margin-bottom: 2px;
}

.downloads-wrap .dl-meta span{
  display: block;
  opacity: .72;
  font-size: 0.95em;
  color: rgba(8,19,15,.72);
}

.downloads-wrap .go{
  opacity: .75;
  font-size: 18px;
}

.downloads-wrap .dl-empty,
.downloads-wrap .dl-loading,
.downloads-wrap .dl-error{
  padding: 12px 14px;
  color: rgba(8,19,15,.72);
}

/* Slightly tighter on small screens */
@media (max-width: 560px){
  .downloads-wrap .dl-acc-btn{ padding: 13px 14px; }
  .downloads-wrap .dl-acc-inner{ padding: 10px; }
  .downloads-wrap .dl{ padding: 11px 12px; }
}


/* --- Downloads language groups + badges --- */

.downloads-wrap .dl-acc-txt{
  display: grid;
  gap: 2px;
}

.downloads-wrap .dl-acc-sub{
  font-size: 12px;
  color: rgba(8,19,15,.58);
  letter-spacing: .02em;
}

.downloads-wrap .dl-group{
  border-radius: 14px;
  border: 1px dashed rgba(8,19,15,.12);
  background: rgba(255,255,255,.55);
  padding: 10px;
}

.downloads-wrap .dl-group-head{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(8,19,15,.55);
  margin-bottom: 8px;
  padding: 0 4px;
}

.downloads-wrap .dl-group-list{
  display: grid;
  gap: 10px;
}

.downloads-wrap .dl-meta strong{
  display: flex;
  align-items: center;
  gap: 10px;
}

.downloads-wrap .dl-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(22,193,114,.28);
  background: rgba(22,193,114,.10);
  color: rgba(8,19,15,.72);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
}


/* =========================================================
   PREMIUM DESIGN LAYER — matches de/index.html premium style
   ========================================================= */

/* --- Hero: dark cinematic header --- */
.news-hero{
  background: #0c1e14;
  padding: 140px 0 72px;
  position: relative;
  isolation: isolate;
}
.news-hero::before{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 600px at 65% 0%, rgba(22,193,114,.13), transparent 55%),
    radial-gradient(600px 400px at 5% 100%, rgba(10,165,106,.09), transparent 55%);
  pointer-events: none; z-index: 0;
}
.news-hero .container{ position: relative; z-index: 1; }
.news-hero h1{
  color: #fff;
  letter-spacing: -0.03em;
}
.news-hero .kicker{
  /* kicker pill already styled by home.css – just ensure white label on dark */
  color: #16c172;
  border-color: rgba(22,193,114,.30);
  background: rgba(22,193,114,.10);
}
.news-hero .lead{ color: rgba(255,255,255,.72); }

/* --- Article section: clean off-white background --- */
#article{ background: #f8f8f6; }

/* --- Article panel: premium shadow + stronger border --- */
.news-article{
  border: 1px solid rgba(8,19,15,.06);
  box-shadow:
    0 2px 4px rgba(8,19,15,.04),
    0 8px 24px rgba(8,19,15,.07),
    0 28px 72px rgba(8,19,15,.06);
  background: #fff;
}

/* --- Article media: richer cinematic overlay --- */
.news-article-media::after{
  background: linear-gradient(180deg,
    rgba(0,0,0,.03) 0%,
    rgba(0,0,0,.12) 60%,
    rgba(0,0,0,.52) 100%);
}

/* --- Article body: more generous padding --- */
.news-article-body{
  padding: 36px;
}
@media (max-width: 560px){
  .news-article-body{ padding: 22px; }
}

/* --- KPI cards: match Vorteile card style --- */
.kpi{
  background: #fff;
  border: 1px solid rgba(8,19,15,.065);
  border-left: 3px solid rgba(22,193,114,.32);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow:
    0 1px 3px rgba(8,19,15,.04),
    0 6px 18px rgba(8,19,15,.06),
    0 18px 48px rgba(8,19,15,.04);
  transition: border-left-color .22s ease, transform .22s ease, box-shadow .22s ease;
  will-change: transform;
}
.kpi:hover{
  border-left-color: #16c172;
  transform: translateY(-3px);
  box-shadow:
    0 2px 6px rgba(8,19,15,.05),
    0 10px 30px rgba(8,19,15,.09),
    0 28px 64px rgba(8,19,15,.06);
}
.kpi .k{
  color: rgba(8,19,15,.52);
  font-size: 11px;
  letter-spacing: .16em;
}
.kpi .v{
  color: rgba(8,19,15,.92);
  font-size: 20px;
}

/* --- News note callout: refined --- */
.news-note{
  border-left: 3px solid rgba(22,193,114,.55);
  border-top: 1px solid rgba(22,193,114,.18);
  border-right: 1px solid rgba(22,193,114,.18);
  border-bottom: 1px solid rgba(22,193,114,.18);
  background: rgba(22,193,114,.06);
  border-radius: 0 18px 18px 0;
  padding: 16px 18px;
  color: rgba(8,19,15,.80);
  line-height: 1.68;
}

/* --- Downloads section: light off-white bg --- */
#downloads{ background: #f8f8f6; }

/* --- Downloads wrap: premium panel --- */
.downloads-wrap{
  border-radius: 26px;
  border: 1px solid rgba(8,19,15,.065);
  background: #fff;
  box-shadow:
    0 2px 4px rgba(8,19,15,.04),
    0 8px 24px rgba(8,19,15,.07),
    0 28px 72px rgba(8,19,15,.05);
  padding: 24px;
}

/* --- Accordion items: premium card style --- */
.downloads-wrap .dl-acc-item{
  border: 1px solid rgba(8,19,15,.065);
  border-left: 3px solid rgba(22,193,114,.28);
  background: #fff;
  box-shadow: 0 2px 8px rgba(8,19,15,.04);
  transition: border-left-color .22s ease;
}
.downloads-wrap .dl-acc-item.is-open{
  border-left-color: #16c172;
}
.downloads-wrap .dl-acc-btn{
  color: rgba(8,19,15,.92);
}
.downloads-wrap .dl-acc-panel{
  border-top: 1px solid rgba(8,19,15,.06);
}

/* --- Document rows: crisper hover --- */
.downloads-wrap .dl{
  background: rgba(248,248,246,.92);
  border: 1px solid rgba(8,19,15,.07);
  box-shadow: 0 1px 4px rgba(8,19,15,.04), 0 4px 12px rgba(8,19,15,.04);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.downloads-wrap .dl:hover{
  transform: translateY(-2px);
  border-color: rgba(22,193,114,.32);
  background: #fff;
  box-shadow: 0 4px 16px rgba(8,19,15,.07), 0 12px 36px rgba(8,19,15,.06);
}

/* --- Language group dividers in downloads --- */
.downloads-wrap .dl-group{
  border: 1px solid rgba(8,19,15,.07);
  background: rgba(248,248,246,.70);
  border-radius: 16px;
}
