@font-face {
  font-family: 'Open Sans';
  src: url('../schriften/OpenSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}


:root {
  --primary: #700046;
  --accent: #888;
  --white: #ffffff;
  --gray: #f9f9f9;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--gray);
  color: #222;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary);
  border-radius: 4px;
}

h1 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: center;
}

h2 {
  color: var(--accent);
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

h3 {
  color: #000000;
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-section {
  margin-bottom: 2rem;
}

.blog-card {
  display: flex;
  gap: 1.5rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-image {
  width: 140px;
  height: 160px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}

.blog-info {
  flex: 1;
}

.blog-date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.3rem;
}

.blog-title {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: bold;
  margin: 0.2rem 0;
}

.blog-teaser {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.5rem;
}

.blog-button {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.blog-button:hover {
  background-color: #4a081e;
}

.back-link {
  text-align: center;
  margin-top: 3rem;
}

.back-link a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.back-link a:hover {
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .blog-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .blog-image {
    width: 100%;
    height: auto;
  }

  .blog-info {
    padding-top: 1rem;
  }
}
