/*
* 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
*/
.box-container {
  list-style-type: none !important;
}
@media (max-width: 1024px) {
  .box-container figure {
    flex-basis: 50% !important;
  }
}
@media (max-width: 782px) {
  .box-container figure {
    flex-basis: 100% !important;
  }
}
.box-container a[data-gallery] {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0px !important;
  padding: 0px;
  flex-grow: 0;
  flex-shrink: 0;
}
.box-container a[data-gallery]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: background-color 500ms;
  background-color: rgba(0, 0, 0, 0);
}
.box-container a[data-gallery]:hover::after, .box-container a[data-gallery]:active::after, .box-container a[data-gallery]:focus::after, .box-container a[data-gallery]:focus-visible::after {
  background-color: rgba(0, 0, 0, 0.5);
}
.box-container a[data-gallery]:hover img, .box-container a[data-gallery]:active img, .box-container a[data-gallery]:focus img, .box-container a[data-gallery]:focus-visible img {
  transition: scale 500ms;
  scale: 1.02;
}
.box-container a[data-gallery] img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}/*# sourceMappingURL=block-gallery-simple.css.map */