/*
 Theme Name: Cocoon Child
 Template: cocoon-master
 Version: 1.0
*/

/* おすすめ記事カード */
.recommended-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.recommended-posts .entry-card {
  width: 300px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.recommended-posts .entry-card:hover {
  transform: translateY(-4px);
}

.recommended-posts img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.recommended-posts h3 {
  padding: 12px 16px 0;
  font-size: 1rem;
  font-weight: bold;
}

.recommended-posts p {
  padding: 0 16px 16px;
  font-size: 0.9rem;
  color: #444;
}