.posts_1__container {
  padding-top: 60px !important;
  padding-bottom: 70px !important;
}
.posts_1__list {
  display: grid;
  gap: 20px;
}
.archive_1__item {
  box-shadow: var(--box-shadow-next);
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 250ms;
}
@media(hover: hover) {
  .archive_1__item_link:hover .archive_1__item {
    transform: translateY(-4px);
    transition: transform 125ms;
  }
  .no-animation .archive_1__item_link:hover .archive_1__item {
    transform: unset;
  }
}
.archive_1__item_image {
  display: grid;
}
.archive_1__item_image > * {
  grid-area: 1/1;
}
.archive_1__item_image > *:last-child {
  z-index: 1;
}
.archive_1__item_image_loading {
  background-color: var(--slate-200);
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.archive_1__item_image_loading::after {
  content: "";
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .2) 20%, rgba(255, 255, 255, .5) 60%, rgba(255, 255, 255, 0));
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translate(-100%);
  animation: shimmer 1.2s infinite;
}
.archive_1__item_image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  height: 100%;
}
.archive_1__item_content {
  padding: 16px;
  padding-bottom: 20px;
  gap: 4px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.archive_1__item_title {
  font-size: calc(32 / 16 * 1rem) !important;;
  font-family: 'Bebas Neue';
  line-height: 36px !important;;
  max-height: calc(36px * 4) !important;;
  color: var(--color);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}
.archive_1__item_meta {
  padding-top: 8px;
  padding-bottom: 8px;
}
.archive_1__item_author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: calc(14 / 16 * 1rem);
  line-height: 20px;
}
.archive_1__item_author::after {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background-color: var(--slate-500);
  position: relative;
  top: 1px;
}
.archive_1__item_date,
.archive_1__item_updated {
  font-size: calc(14 / 16 * 1rem);
  line-height: 20px;
  color: var(--slate-500);
}
.archive_1__item_excerpt {
  font-size: calc(14 / 16 * 1rem);
  line-height: 20px;
  color: var(--slate-600);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(20px * 4);
  margin-bottom: 20px;
}
.archive_1__item_comments {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  border-top: 1px solid var(--slate-200);
  gap: 8px;
  align-items: center;
}
.archive_1__item_bar {
  display: block;
  width: 18px;
  height: 1px;
  background-color: var(--slate-500);
  position: relative;
  top: 1px;
  transition: all 250ms;
}
.archive_1__item_text {
  font-size: calc(14 / 16 * 1rem);
  line-height: 20px;
  flex-shrink: 0;
  transition: all 250ms;
}
.archive_1__item_comments_icon {
  margin-left: auto;
  display: flex;
  gap: 4px;
  align-items: center;
  position: relative;
}
.archive_1__item_comments_icon::before {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background-color: var(--slate-200);
  position: absolute;
  left: -16px;
}
.archive_1__item_comments_number {
  font-size: calc(14 / 16 * 1rem);
  line-height: 20px;
  color: var(--slate-500);
}

@media(hover: hover) {
  .archive_1__item_link:hover .archive_1__item_bar {
    width: 80px;
    background-color: var(--color);
    transition: all 125ms;
  }
  .archive_1__item_link:hover .archive_1__item_text {
    color: var(--color);
    font-weight: bold;
    transition: all 125ms;
  }
}

@media(max-width: 500px) {
  .posts_1__list {
    grid-template-columns: 1fr !important;
  }
}