.blog-card {
  border: none;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.08);
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card__image--placeholder {
  min-height: 180px;
  background: #f5f5f5;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__title a:hover {
  text-decoration: underline;
}

.blog-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.5;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1rem 0;
}

.blog-content h2,
.blog-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
}
