.card-post {
  width: 100%;
  max-width: 310px;
  height: 200px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  transition: all 0.3s ease;
}

.card-post-thumbnail {
  position: absolute;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.card-post-thumbnail:after {
  content: "";
  width: 100%;
  position: absolute;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.73) 45.19%,
    rgba(0, 0, 0, 0) 100%
  );
  height: 100%;
  bottom: 0;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.card-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-post-information {
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: flex-end;
  gap: 5px;
}

.card-post-categorie-tag {
  position: absolute;
  z-index: 1;
  top: 17px;
  left: 5%;
  background-color: #af0e0e;
  border-radius: 2px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
}

.card-post-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
}

.card-post-meta {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #a0a0a0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  text-transform: uppercase;
}

.card-post:hover .card-post-thumbnail:after {
  opacity: 0;
}

/* Horizontal */

.card-post--horizontal {
  background-color: #fff;
  max-width: 100%;
  height: 170px !important;
  flex-direction: row;
  gap: 10px;
  padding: 10px;
}

.card-post--horizontal .card-post-thumbnail {
  position: unset;
  width: 150px;
  height: 150px;
  z-index: unset;
}

.card-post--horizontal .card-post-thumbnail:after {
  display: none;
}

.card-post--horizontal .card-post-information {
  flex: 1;
  padding: 0;
  justify-content: space-between;
}

.card-post--horizontal .card-post-categorie-tag {
  position: unset;
  margin: 0 auto 0 0;
}

.card-post--horizontal .card-post-title {
  color: var(--body-text);
}

.card-post--horizontal .card-post-meta {
  flex-direction: column;
  align-items: flex-start;
}

.card-post--horizontal .card-post-separator {
  display: none;
}

.card-post--horizontal:hover {
  opacity: 0.8;
}

/* Card esticados */

.showcase .card-post--hero {
  height: 360px;
}

/* Responsividade */
@media screen and (max-width: 500px) {
  .card-post {
    max-width: 100%;
    height: 280px;
  }
}
