
/* Magazin-Layout für Viktoriastraße */

.vb-magazin {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: sans-serif;
}

.vb-featured-post {
  text-align: center;
  margin-bottom: 3rem;
}

.vb-featured-post img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.vb-featured-post h2 {
  font-size: 2rem;
  margin: 1rem 0 0.5rem;
}

.vb-featured-post p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  color: #444;
}

.vb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.vb-grid-item {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.vb-grid-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.vb-grid-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.vb-grid-item h3 {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  color: #222;
}

.vb-grid-item p {
  font-size: 0.95rem;
  color: #555;
}

.vb-archive-link {
  text-align: center;
  margin: 2rem 0;
}

.vb-archive-link a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #005ba1;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.vb-archive-link a:hover {
  background: #003d73;
}
