/* =====================================================
   AKTUELLES-SPEZIFISCHE STYLES
===================================================== */

.news-section { padding: 96px 28px; }
.news-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.news-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}
.news-card h2 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
}
.news-card p {
  font-size: 1.05rem;
  color: var(--dark-mid);
  line-height: 1.7;
}
.news-card .news-tag {
  align-self: flex-start;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--stone);
  padding: 4px 10px;
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .news-section { padding: 56px 20px; }
  .news-grid { grid-template-columns: 1fr; }
}

/* CTA banner (shared pattern, also used on leistungen.html) */
.cta-banner {
  background: var(--stone);
  padding: 72px 28px;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-banner p { font-size: 1.15rem; color: rgba(250,248,244,0.9); margin-bottom: 36px; }
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 860px) {
  .cta-banner { padding: 64px 24px; }
}
@media (max-width: 640px) {
  .cta-banner { padding: 56px 20px; }
  .cta-banner p { font-size: 1.03rem; margin-bottom: 24px; }
  .cta-banner-btns .btn { width: 100%; justify-content: center; }
}
