.wp-block-post-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
@media only screen and (max-width: 1000px) {
  .wp-block-post-grid {
    grid-template-columns: 1fr;
  }
}
.wp-block-post-grid > article {
  grid-column: 1/1;
  grid-row: span 1;
}
.wp-block-post-grid > article:first-of-type {
  grid-column: 2/span 1;
  grid-row: 1/span 4;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1000px) {
  .wp-block-post-grid > article:first-of-type {
    grid-column: 1/span 1;
  }
}
.wp-block-post-grid > article:not(:first-of-type) {
  display: grid;
  grid-template-columns: 100px auto;
  grid-gap: 30px;
  padding: 15px 0;
  border-bottom: solid 1px #ddd;
}
@media only screen and (min-width: 1000px) {
  .wp-block-post-grid > article:not(:first-of-type) {
    max-width: 470px;
  }
}
.wp-block-post-grid > article:not(:first-of-type) .post-inner {
  grid-column: 2/2;
}
.wp-block-post-grid > article:not(:first-of-type) img {
  margin-top: 7px;
}
.wp-block-post-grid > article:not(:first-of-type) .title {
  margin-bottom: 0;
}
.wp-block-post-grid > article .title {
  font-size: 24px;
}
.wp-block-post-grid > article img {
  border-radius: 5px;
  margin-bottom: 10px;
}
.wp-block-post-grid > article svg {
  width: 6px;
  height: auto;
}

/*# sourceMappingURL=block-style.css.map */
