/**
 *
 * Breakpoints
 *
 */
.card-post {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--color-white);
  cursor: pointer;
}
@media (min-width: 48em) {
  .card-post.large .card-post-top {
    min-height: 350px;
  }
}
@media (min-width: 64em) {
  .card-post.large .card-post-top {
    min-height: 480px;
  }
}
.card-post.large .card-post-bottom {
  flex-grow: 0;
}
.card-post-top {
  position: relative;
  max-height: 250px;
  overflow: hidden;
}
@media (min-width: 64em) {
  .card-post-top {
    max-height: 235px;
  }
}
.card-post-top img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-post-top .tag {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
}
.card-post-bottom {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gradient-product-card);
}
.card-post-title {
  font-size: 19px;
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-normal);
}
@media (min-width: 64em) {
  .card-post-title {
    font-size: 20px;
  }
}
.card-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-post-meta .icon {
  font-size: 2rem;
}
/*# sourceMappingURL=card-post.css.map */
