/* Post Card */
.post-link {
  display: block;
  height: 100%;
  text-decoration: none;
}

.post {}

.post__media {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 400 / 215 auto;
}

.post__img {
  transition: transform 0.3s;
}

.post-link:hover .post__img {
  transform: scale(1.1);
}

.post__title {
  margin-bottom: 0.5rem;
  color: #000;
  transition: color 0.3s;
}

.post-link:hover .post__title {
  color: #c00d1e;
}

.post__desc {
  color: #828282;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1.5em;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.post-meta--small {
  gap: 1rem;
  font-size: 1rem;
}

.post-meta__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-categories {
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-categories li {
  margin: 0;
}

/* Single */