/*
Theme Name:     Fukasawa Child
Theme URI:      https://buntspecht.one
Description:    Child Theme für Fukasawa
Author:         Dein Name
Template:       fukasawa
Version:        1.0.0
*/

/* Eigene Styles hier einfügen */

.latest-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.post-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.post-thumb img.responsive-thumbnail {
  width: 100%;
  display: block;
}
.post-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}
.post-title a {
  color: inherit;
  text-decoration: none;
}
.post-meta {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
}
.post-excerpt {
  flex: 1;
  margin-bottom: 1rem;
}
.post-readmore {
  font-weight: bold;
  align-self: flex-start;
  text-decoration: none;
  color: #0073e6;
}
.post-readmore:hover {
  text-decoration: underline;
}
