/* ─────────────────────────────────────────────────────────────
   NEUIGKEITEN SUBPAGE
   ───────────────────────────────────────────────────────────── */

:root { --news-rose: #B8ABAB; }

/* Fill body bg so no white flash above fixed nav */
body { background: var(--news-rose); }

/* ─── PAGE HEADER (dynamischer Hero-Block, Optik s. css/style.css) ── */
body.subpage .pb-hero { --subpage-hero-bg: var(--news-rose); }

/* ─── GRID SECTION ─────────────────────────────────────────── */
.news-grid-section {
  background: var(--news-rose);
  padding: 48px 0 100px;
}

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

.news-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ─── NEWS CARD ────────────────────────────────────────────── */
.news-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  border: 8px solid #ffffff;
  transition: box-shadow 0.3s ease;
}

.news-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.news-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.news-card-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.news-card:hover .news-card-img-wrap img {
  transform: scale(1.04);
}

.news-card-img-wrap--placeholder {
  aspect-ratio: 4/3;
  background: #c4bebe;
}

.news-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-date {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-block;
  width: fit-content;
  background: #B8ABAB;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 1;
}

.news-card-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
  text-wrap: pretty;
}

.news-card-excerpt {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.news-card-excerpt {
  margin-bottom: 0;
}

.news-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 22px;
  border-top: 1px solid #e8e8e8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #B8ABAB;
  transition: background 0.25s ease, color 0.25s ease;
}

.news-card:hover .news-card-cta {
  background: #B8ABAB;
  color: var(--white);
}

.news-card-cta-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.news-card:hover .news-card-cta-arrow {
  transform: translateX(4px);
}

/* ─── KONTAKT CTA ──────────────────────────────────────────── */
.news-cta {
  background: var(--news-rose);
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.news-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.news-cta-heading {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  font-style: italic;
}

.news-cta-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-cta-contact .contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-contact-icon {
  filter: brightness(0) invert(1);
}

.news-cta-contact .contact-row a {
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.news-cta-btn-wrap {
  display: flex;
  justify-content: center;
}

.news-cta-btn {
  white-space: nowrap;
  border-color: var(--white);
  color: var(--white);
}

.news-cta-btn:hover {
  background: var(--white);
  color: var(--ink);
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-cta-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
}
