:root {
  --spacer: 4rem;
  --spacer-md: 4rem;
  --spacer-sm: 3rem;
}

@media (min-width: 1024px) {
  :root {
    --spacer: 6rem;
    --spacer-md: 5rem;
    --spacer-sm: 4rem;
  }
}
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Dynamic Spacing
* A nice easy way to create a vertical rhythm for section of content
*/
/*
* Accessibility Focus
* Using the focus-visible psuedo class to only show focus styles when the element is focused via the keyboard
*/
.block-posts .excerpt {
  display: block;
  text-decoration: none;
  margin: 0 0 1.6rem 0;
  background: #fff;
  border: 1px solid #D7E2C8;
  transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.block-posts .excerpt:hover, .block-posts .excerpt:active, .block-posts .excerpt:focus {
  box-shadow: 0 0 10px 0 rgba(13, 38, 22, 0.25);
  transform: translateY(-3px);
}
.block-posts .excerpt:hover .feat, .block-posts .excerpt:active .feat, .block-posts .excerpt:focus .feat {
  transform: scale(1.05);
  opacity: 0.8;
}
.block-posts .feat-wrap {
  display: block;
  background: #2B6741;
  overflow: hidden;
}
.block-posts .feat {
  display: block;
  min-height: 100px;
  aspect-ratio: 2.85/1.3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.block-posts .title {
  padding: 2rem;
}
.block-posts h3 {
  font-family: "Roboto", sans-serif;
  font-size: var(--wp--preset--font-size--step-1);
  font-weight: 500;
}
.block-posts .meta {
  font-size: var(--wp--preset--font-size--step-m-2);
  text-transform: uppercase;
  margin: 0;
  color: #28342C;
}

@media (min-width: 782px) {
  .block-posts.col {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
  }
  .block-posts.col .excerpt {
    flex: 1;
    margin: 0;
    padding-bottom: 5.5rem;
    position: relative;
  }
  .block-posts.col .excerpt:first-child {
    background: #2B6741;
  }
  .block-posts.col .excerpt:first-child h3 {
    color: #fff;
  }
  .block-posts.col .excerpt:first-child p {
    color: #fff;
  }
  .block-posts.col .excerpt:first-child .cat path {
    stroke: #fff;
  }
  .block-posts.col .feat {
    aspect-ratio: 3/2;
  }
  .block-posts.col .title {
    padding-bottom: 0;
  }
  .block-posts.col .meta {
    width: calc(100% - 40px);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    font-size: var(--wp--preset--font-size--step-m-2);
    text-transform: uppercase;
    margin: 0;
    color: #28342C;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
  }
  .block-posts.col .meta .cat {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .block-posts.col .meta .cat svg {
    width: 14px;
    height: 14px;
    margin: -2px 0 0 7px;
  }
  .block-posts.col h3 {
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .block-posts.col .excerpt .feat {
    height: 260px;
    aspect-ratio: unset;
  }
  .block-posts.col .excerpt:first-child {
    flex: 2;
  }
  .block-posts.col .excerpt:first-child h3 {
    font-size: var(--wp--preset--font-size--step-2);
  }
}/*# sourceMappingURL=block-posts.css.map */