/**
 * Button Reset
 *
 */
/**
 * Size
 *
 */
/**
 * Block Cover
 * Creates a block that covers the full width/height of parent div. Typically used on a :before pseudo element
 */
/**
 * Placeholder Color
 *
 */
/**
 * Clearfix
 *
 */
html {
  scroll-behavior: smooth;
}

.infinite-posts-block__grid {
  display: flex;
  flex-direction: column;
  gap: var(--wp--custom--layout--block-gap-large);
}
@media (min-width: 80rem) {
  .infinite-posts-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: var(--wp--custom--layout--block-gap-large);
  }
}

.post-card {
  grid-column: span 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 70px 1fr;
  text-decoration: none;
  color: inherit;
  min-height: 0; /* NEW */
  min-width: 0; /* NEW; needed for Firefox */
}

.post-card .post-card__content {
  grid-row: span 1;
}

.post-card .post-card__meta {
  font-size: var(--wp--preset--font-size--big);
  font-weight: 600;
  letter-spacing: -0.44px;
  text-transform: uppercase;
  margin: 0px;
  line-height: 1.2em;
}

.post-card .post-card__title {
  margin: 0px;
  font-weight: 400;
  font-size: var(--wp--preset--font-size--small);
  line-height: 1.1em;
}

.post-card .post-card__title a {
  text-decoration: none;
}

.post-card .post-card__image {
  aspect-ratio: 791/494;
  background-color: var(--wp--preset--color--primary);
}
.post-card .post-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.post-card .post-card__image a {
  height: 100%;
  width: 100%;
}
/*# sourceMappingURL=style.css.map */
