.post-list {
  margin-bottom: 50px;
}

.post-list > div:nth-child(2) {
  margin-top: 40px;
}

.post-list figure {
  margin-bottom: 0;
}

.post-list .first-post figure {
  height: 618px;
}

.post-list figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.post-list .first-post .post-title-date {
  margin-top: 40px;
}

.post-list .first-post .post-title-date > div {
  display: flex;
  flex-flow: row nowrap;
  align-items: baseline;
}

.post-list .first-post .post-title-date h2 {
  margin: 0;
  font-family: 'Roboto-Slab', sans-serif !important;
  font-size: 20px;
  text-transform: uppercase;
}

.post-list .first-post .post-title-date .wp-block-post-date {
  margin: auto 0 auto 15px;
  font-size: 17px;
}

.post-list .first-post .wp-block-post-excerpt {
  margin: 20px 0 10px 0;
  font-family: 'Roboto-Medium', sans-serif;
}

.post-list .wp-block-read-more {
  margin-left: auto;
  padding: 10px 20px;
  font-family: 'Roboto-Light', sans-serif;
  font-size: 12px;
  color: var(--amn-cc-reverse-text);
  background-color: var(--amn-cc-black);
  border-radius: 20px;
}

.post-list .wp-block-read-more:hover,
.post-list .wp-block-read-more:focus {
  background-color: var(--amn-cc-yellow);
}

.post-list .other-posts {
  align-items: stretch;
  gap: 37px;
}

.post-list .other-posts li {
  display: flex;
  flex-flow: column nowrap;
}

.post-list .other-posts figure {
  height: 230px;
}

.post-list .other-posts h2 {
  margin: 18px 0 0 0;
  font-family: 'Roboto-Slab', sans-serif !important;
  font-size: 15px;
  text-transform: uppercase;
}

.post-list .other-posts .wp-block-post-date {
  flex-grow: 1;
  margin: 3px 0 0 0;
  font-size: 13px;
}

.post-list .post-list-none {
  text-align: center;
}


@media (max-width: 900px) {
  .post-list .first-post figure {
    height: 480px;
  }

  .post-list .first-post .post-title-date {
    margin-top: 20px;
  }

  .post-list .first-post .wp-block-post-excerpt {
    margin: 10px 0;
  }

  .post-list > div:nth-child(2) {
    margin-top: 20px;
  }

  .post-list .other-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .post-list .other-posts h2 {
    margin-top: 10px;
  }
}

@media (max-width: 600px) {
  .post-list .first-post figure {
    width: calc(100vw - var(--scrollbar-width)); /* --scrollbar-width is set in assets/js/main.js */
    margin-left: calc(50% - 50vw + (var(--scrollbar-width) / 2)); /* --scrollbar-width is set in assets/js/main.js */
    height: 300px;
  }

  .post-list .first-post figure img {
    border-radius: 0;
  }
  
  .post-list .first-post .post-title-date > div {
    flex-direction: column;
  }

  .post-list .other-posts {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .post-list .wp-block-read-more {
    padding: 5px 10px;
    font-size: 10px;
  }
}