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

@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: 20px;
  }
}/*# sourceMappingURL=block-events.css.map */