/*
  style.css — Ergänzungen zur index.html
  Hier können zusätzliche CSS-Regeln abgelegt werden,
  ohne die index.html anfassen zu müssen.
*/

/* Blog-Galerie: 3 Fotos untereinander, volle Textbreite */
.blog-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 32px 0;
}

.blog-gallery figure {
  margin: 0;
}

.blog-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #f1efe9;
  border-radius: 2px;
}

.blog-gallery figcaption {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #615f59;
}
