/*
* Global button styling
*/
/*
* 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-events {
  width: 100%;
  border-top: 2px solid var(--wp--preset--color--primary);
  border-bottom: 2px solid var(--wp--preset--color--primary);
}
.block-events .event {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 10px;
  justify-content: flex-end;
  padding: clamp(20px, 2vw, 35px) 0;
  width: 100%;
  border-bottom: 1px solid lightgrey;
}
.block-events .event:last-child {
  border: 0;
}
@media (max-width: 782px) {
  .block-events .event {
    flex-direction: column;
    align-items: flex-end;
    height: auto;
  }
}
.block-events .event-title {
  margin: 0;
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 782px) {
  .block-events .event-title {
    margin: 0;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.block-events .event-title span.meta {
  display: block;
  line-height: 1.4;
  min-width: 150px;
  padding: 0 20px 0 0;
  width: auto;
  margin: 0;
  font-size: 16px;
  color: var(--wp--preset--color--foreground);
}
@media (max-width: 782px) {
  .block-events .event-title span.meta {
    display: flex;
    width: 100%;
    padding: 0;
    justify-content: flex-start;
  }
}
.block-events .event-title span.meta em {
  font-style: normal;
}
.block-events .event-title span.title {
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
  color: var(--wp--preset--color--primary);
}
.block-events .event-title span.location {
  font-size: 16px;
  margin-left: auto;
}
.block-events .event-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  position: relative;
  padding-left: 20px;
}
.block-events .event-links a {
  padding: 12px 15px;
  line-height: 1;
  transition: all 0.2s ease-in;
  font-weight: 700;
  border: 1px solid lightgrey;
}

@media (min-width: 1600px) {
  .block-events .event-title span.meta {
    font-size: 18px;
    min-width: 170px;
  }
  .block-events .event-title span.title {
    font-size: 20px;
  }
  .block-events .event-title span.location {
    font-size: 18px;
  }
  .block-events .event-links {
    font-size: 20px;
  }
}/*# sourceMappingURL=block-events.css.map */