/**
 * 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;
}

.posts-gallery > .gallery__header {
  display: flex;
}

.posts-gallery > .gallery {
  display: flex;
  flex-direction: column;
  gap: var(--wp--custom--layout--block-gap);
}

.posts-gallery > .gallery__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--space-sm, 1em);
}

.post-gallery__link {
  display: inline-block;
  margin-top: var(--wp--custom--layout--block-gap);
  font-weight: 900;
  text-decoration: none;
  transition: all 0.2s;
}

.post-gallery__link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

@media screen and (min-width: 700px) {
  .posts-gallery > .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .posts-gallery .gallery > :nth-of-type(1) {
    grid-area: 1/1/3/2;
  }
  .posts-gallery .gallery > :nth-of-type(2) {
    grid-area: 1/2/2/3;
  }
  .posts-gallery .gallery > :nth-of-type(3) {
    grid-area: 2/2/4/3;
  }
  .posts-gallery .gallery > :nth-of-type(4) {
    grid-area: 3/1/4/2;
  }
}
@media screen and (min-width: 1000px) {
  .posts-gallery > .gallery {
    display: grid;
    grid-template-columns: 0.74fr 1fr 0.74fr;
    grid-template-rows: repeat(2, 1fr);
  }
  .posts-gallery .gallery > :nth-of-type(1) {
    grid-area: 1/1/3/2;
  }
  .posts-gallery .gallery > :nth-of-type(2) {
    grid-area: 1/2/2/3;
  }
  .posts-gallery .gallery > :nth-of-type(3) {
    grid-area: 1/3/3/4;
  }
  .posts-gallery .gallery > :nth-of-type(4) {
    grid-area: 2/2/3/3;
  }
}
.editor-styles-wrapper .posts-gallery > .gallery .acf-innerblocks-container {
  display: flex;
  flex-direction: column;
  gap: var(--wp--custom--layout--block-gap);
}

.editor-styles-wrapper .posts-gallery > .gallery {
  display: flex;
}

@media screen and (min-width: 700px) {
  .editor-styles-wrapper .posts-gallery > .gallery .acf-innerblocks-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .editor-styles-wrapper .posts-gallery .gallery .acf-innerblocks-container > :nth-of-type(1) {
    grid-area: 1/1/3/2;
  }
  .editor-styles-wrapper .posts-gallery .gallery .acf-innerblocks-container > :nth-of-type(2) {
    grid-area: 1/2/2/3;
  }
  .editor-styles-wrapper .posts-gallery .gallery .acf-innerblocks-container > :nth-of-type(3) {
    grid-area: 2/2/4/3;
  }
  .editor-styles-wrapper .posts-gallery .gallery .acf-innerblocks-container > :nth-of-type(4) {
    grid-area: 3/1/4/2;
  }
}
@media screen and (min-width: 1000px) {
  .editor-styles-wrapper .posts-gallery > .gallery .acf-innerblocks-container {
    display: grid;
    grid-template-columns: 0.74fr 1fr 0.74fr;
    grid-template-rows: repeat(2, 1fr);
  }
  .editor-styles-wrapper .posts-gallery .gallery .acf-innerblocks-container > :nth-of-type(1) {
    grid-area: 1/1/3/2;
  }
  .editor-styles-wrapper .posts-gallery .gallery .acf-innerblocks-container > :nth-of-type(2) {
    grid-area: 1/2/2/3;
  }
  .editor-styles-wrapper .posts-gallery .gallery .acf-innerblocks-container > :nth-of-type(3) {
    grid-area: 1/3/3/4;
  }
  .editor-styles-wrapper .posts-gallery .gallery .acf-innerblocks-container > :nth-of-type(4) {
    grid-area: 2/2/3/3;
  }
}
/*# sourceMappingURL=style.css.map */
