@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Source+Sans+3:wght@400;600&display=swap');

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUp { animation: fadeInUp 0.7s ease-out forwards; }

body {
  background: linear-gradient(135deg, #1a2e4a 0%, #1c3255 100%);
  color: white;
  min-height: 100vh;
  font-family: 'Source Sans 3', sans-serif;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

.article-image {
  max-width: 500px; /* Begrenzt die Größe für eine bessere Optik im 1:1 Format */
  margin: 0 auto;   /* Zentriert das Bild */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  aspect-ratio: 1/1; 
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Artikel-Text Typografie */
.article-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  margin: 2rem 0 0.75rem;
}
.article-text p {
  color: rgba(255,255,255,0.88);
  line-height: 1.95;
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
}
.article-text strong { color: #22d3ee; }
.article-text em { color: rgba(255,255,255,0.65); font-style: italic; }

.backdrop-blur-xl { backdrop-filter: blur(24px); }

.nav-link {
  transition: color 0.15s ease-in-out;
  background: linear-gradient(135deg, #f97316, #edc902);
  color: #0a1120;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  font-size: 0.75rem;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.nav-link:hover {
  color: #22d3ee;
}


/* Tailwind CSS classes for fonts are still used in HTML, but the @import ensures the fonts are available */
/* The inline style for h1 font-family is also kept for direct application */