article.component-card-post.card-post-horizontal {
  max-width: var(--container-width);
  margin: auto;
}
@media screen and (min-width: 1100px) {
  article.component-card-post.card-post-horizontal {
    width: 1090px;
    margin: auto;
  }
  article.component-card-post.card-post-horizontal a.card {
    display: flex;
    flex-direction: row;
    height: inherit;
  }
  article.component-card-post.card-post-horizontal a.card .thumbnail {
    aspect-ratio: 136/70;
    height: 100%;
  }
  article.component-card-post.card-post-horizontal a.card .thumbnail img, article.component-card-post.card-post-horizontal a.card .thumbnail picture {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  article.component-card-post.card-post-horizontal a.card .content {
    width: 40%;
    padding: var(--spacing-2-xl);
    position: relative;
  }
  article.component-card-post.card-post-horizontal a.card .content .title {
    margin: 0px;
    width: 100%;
  }
  article.component-card-post.card-post-horizontal a.card .content .title h4 {
    font-size: 32px;
    line-height: 100%;
    text-align: left;
  }
  article.component-card-post.card-post-horizontal a.card .content .infos {
    width: 100%;
    right: 0px;
    padding-left: calc(var(--spacing-2-xl) + 2px);
  }
}
article.component-card-post a.card {
  display: block;
  padding: 0px;
  overflow: hidden;
  height: 100%;
  position: relative;
}
article.component-card-post a.card:hover .thumbnail img {
  transform: scale(1.04);
}
article.component-card-post a.card:hover .content .title:after {
  transform: translateX(5px) translateY(-5px);
}
article.component-card-post a.card .thumbnail {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
}
article.component-card-post a.card .thumbnail img, article.component-card-post a.card .thumbnail picture {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  transform: scale(1);
}
article.component-card-post a.card .content {
  padding: 20px;
  padding-bottom: calc(var(--spacing-xl) + 15px);
  position: static;
}
article.component-card-post a.card .content .categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
article.component-card-post a.card .content .title {
  display: flex;
  padding: var(--spacing-l) 0px;
}
article.component-card-post a.card .content .title:after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M2.125.875v2.5h10.738L.875%2015.363l1.763%201.762L14.625%205.138v10.737h2.5v-15z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  width: 18px;
  height: 18px;
  transform: translateX(0px);
  transition: all 0.3s;
}
article.component-card-post a.card .content .title h4 {
  margin: 0px;
  width: calc(100% - 18px);
  padding-right: 10px;
}
article.component-card-post a.card .content .infos {
  display: flex;
  gap: 5px;
  position: absolute;
  bottom: 20px;
  padding: 20px;
  padding-bottom: 0px;
  width: 100%;
  left: 0px;
}
article.component-card-post a.card .content .infos span {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.7);
}