.wp-blog {
  display: flex;
  flex-direction: column;
  gap: 4em;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-top: 4em;
}

.wp-blog .rss_items_only {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.wp-blog .rss_items_only h2 {
  margin: 0em 0em 1em 0em;
  width: 70%;
}

.wp-blog .rss_items_only .description > a {
  float: left;
}

.wp-blog .rss_items_only .description > a img {
  margin-right: 1em;
}

.wp-blog .rss_items_only .description p {
  margin-top: 0em;
  width: 70%;
}

.wp-blog .rss_items_only .description p:last-child {
  display: none;
}

@media screen and (max-width: 900px) {
  .wp-blog {
    justify-content: flex-start;
  }

  .wp-blog .rss_items_only {
    width: 100%;
  }

  .wp-blog .rss_items_only h2 {
    width: 100%;
  }

  .wp-blog .rss_items_only .description > a img {
    margin-bottom: 1em;
  }

  .wp-blog .rss_items_only .description p {
    width: 100%;
  }

  .wp-blog .rss_items_only .description p:last-child {
    clear: both;
  }
}
