.wp-block-latest-posts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.wp-block-latest-posts__post {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  border: 2px solid #fff;
}

.wp-block-latest-posts__featured-image img {
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border: 3px solid #fff;
  width: 120px;
  height: 120px;
  object-fit: cover;
  background: #f8f8f8;
}

.wp-block-latest-posts__post-date {
  display: flex;
  align-items: center;
  color: #7a7a7a;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.wp-block-latest-posts__post-date::before {
  content: "\f133";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5em;
  font-size: 1em;
  color: #b2b2b2;
}

.wp-block-latest-posts__post-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.wp-block-latest-posts__post-title:hover {
  color: #0073aa;
}

.wp-block-latest-posts__post-excerpt,
.wp-block-latest-posts__post-content {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 0.5rem;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
