.latest-and-banner {
  background-color: var(--color-white);
  border-radius: 0 0 15px 15px;
  box-shadow: 0 -10px 5px var(--color-white),
              -2px 2px 5px rgba(0, 0, 0, 0.1),
              2px 2px 5px rgba(0, 0, 0, 0.1),
              0 2px 5px rgba(0, 0, 0, 0.1);
  margin-top: 90px;
  padding: 15px;
}

.latest-posts h3 {
  border-bottom: 1px solid var(--color-grey);
  color: var(--color-canvas-text);
  font-family: 'Poppins';
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  text-transform: uppercase;
}

.latest-posts .post-category {
  margin-top: 0 !important;
}

.latest-posts .post-meta {
  display: none;
}

.latest-posts .post-list .post-thumbnail {
  width: 130px;
  height: 85px;
  flex: 0 0 130px;
}

@media (max-width: 768px) {
  .latest-posts {
    padding-bottom: 20px;
  }

  .latest-posts h3 {
    padding-bottom: 8px;
  }

  .latest-posts .post-list .post-thumbnail {
    display: none;
  }

  .latest-and-banner {
    box-shadow: none;
    margin-top: 60px;
    padding: 0;
  }
}