.blogger.blog_layout_compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  .item {
    z-index: 0;
    position: relative;
    background-color: #f9a053;
    background-position: center center;
    background-size: cover;
    padding: 16px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    height: 200px;
    text-decoration: none;
    .bg-archive-overlay {
      position: absolute;
      inset: 0;
      z-index: -1;
      transition: background-color 0.5s ease;
      &.with-image {
        background-color: rgba(0, 0, 0, 0.5);
      }
    }
    &:hover,
    &:focus,
    &:active {
      .bg-archive-overlay {
        background-color: rgba(0, 0, 0, 0.3);
        &.with-image {
          background-color: rgba(0, 0, 0, 0.7);
        }
      }
    }
    .post-date {
      font-size: 12px;
      font-weight: 700;
      padding: 6px 10px;
      background-color: white;
      color: #4a4a4a;
      align-self: start;
    }
    .post-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
      .posttitle {
        font-size: 18px;
        line-height: 22px;
      }
      .teaser {
        font-size: 12px;
        line-height: 16px;
      }
      * {
        margin: 0 !important;
        color: #4a4a4a;
      }
    }
  }
}

@media screen and (max-width: 885px) {
  .blogger.blog_layout_compact {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    .item {
      height: 200px;
    }
  }
}

@media screen and (max-width: 685px) {
  .blogger {
    width: unset;
    margin: 0;
    .item {
      width: 100%;
    }
  }
}
