:root {
  --black: #111;
  --white: #fff;
  --gray-light: #f9f9f9;
  --gray-dark: #444;
  --text: #222;
  --line: #e5e5e5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background-color: var(--white);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header Image with Logo */
.header-banner {
  background: url("../assets/header.jpg") no-repeat center center;
  background-size: cover;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  padding-left: 2rem;
  background: rgba(0, 0, 0, 0.4); /* optional for contrast */
}

.header-content .logo {
  height: 150px; /* vorher: 50px */
}

.header-content h1 {
  font-size: 1.8rem;
  font-weight: 600;
}

/* Blog Content */
.blog-entry h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.meta {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.blog-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.blog-section h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.blog-section p {
  margin-bottom: 0.75rem;
}

.source-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--gray-dark);
}

.sources {
  margin-top: 0.5rem;
  padding-left: 1rem;
  list-style: disc;
}

.sources li {
  margin-bottom: 0.25rem;
}

.sources a {
  color: #0070c0;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s;
}

.sources a:hover {
  color: #004a87;
}

.takeaway {
  background: var(--gray-light);
  padding: 1.5rem;
  border-left: 4px solid var(--black);
  margin-top: 3rem;
}

.takeaway h3 {
  margin-bottom: 0.5rem;
}

/* Footer Image */
.footer-banner {
  background: url("../assets/footer.jpg") no-repeat center center;
  background-size: cover;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
