/**
 * Neuigkeiten – style własne
 */
html, body { background: #3B5437 !important; }
.news-page {
  min-height: 100vh;
  background: #3B5437;
  padding: 2rem 1rem;
  padding-bottom: 4rem;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem;
  color: #fff;
  background: var(--clr-accent, #339933);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}
.back-link:hover { color: rgba(255,255,255,0.9); transform: translateX(-5px); }
.back-link i { margin-right: 0.5rem; }
.news-content { max-width: 1200px; margin: 0 auto; }
.news-header { text-align: center; padding: 2rem 1rem; margin-bottom: 3rem; }
.news-header h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 200;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 2rem;
}
.news-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 5px 15px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.08),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3),
    inset 0 0 20px rgba(0, 0, 0, 0.2);
  transform: perspective(1200px) rotateX(1deg) translateZ(20px);
  border-top: 2px solid rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-placeholder:hover {
  transform: perspective(1200px) rotateX(0.5deg) translateZ(30px);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.1),
    inset 0 -2px 4px rgba(0, 0, 0, 0.4),
    inset 0 0 25px rgba(0, 0, 0, 0.3);
}
.news-placeholder i { font-size: 4rem; color: #fff; margin-bottom: 2rem; opacity: 0.5; }
.news-placeholder h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}
.news-placeholder p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .news-page { padding: 1rem 0.5rem; }
  .news-placeholder { padding: 3rem 1.5rem; }
}
