.blog-post-card__container {
  max-width: 600px;
  width: 100%;
  display: grid;
  place-items: center;
  gap: 0.3em;
  cursor: pointer;
}

.blog-post-card__img-container {
  width: 100%;
  aspect-ratio: 3 / 2;
  box-shadow: 0 20px 60px -30px rgba(0, 0, 0, 0.45);
  position: relative;
}

.blog-post-card__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.651);
  display: none;
}

.blog-post-card__container:hover .blog-post-card__short-description {
  color: var(--link-color);
  font-weight: 500;
  transition: 0.3s ease-in;
}

.blog-post-card__container:hover .blog-post-card__overlay {
  display: block;
  display: grid;
  place-items: center;
}

.img-expand-overlay-container {
  position: fixed;
  top: 52px;
  bottom: 0;
  width: 100%;
  max-width: 1440px;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  z-index: 1000;
}

.overlay__link {
  color: white;
}

.blog-post-card__title {
  font-size: 16px;
  font-weight: 500;
}

.blog-post-card__date {
  color: rgb(68, 68, 68);
  font-size: 12px;
  font-weight: 100;
}

.blog-post-card__short-description {
  font-size: 14px;
  font-weight: 400;
}
