.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.loaded.fade-in {
  opacity: 1;
  transform: translateY(0);
}
/* base.less – minimal reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
/* …plus any HTML5 element display fixes: */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}
/* Box sizing and base font setup: */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
  line-height: 1.4;
  font-family: "Open Sans", sans-serif;
  background: #0e1414;
  color: #fff;
}
.page-section {
  padding: 30px 0;
}
@media  (min-width: 768px) {
  .page-section {
    padding: 60px 0;
  }
}
@media  (min-width: 992px) {
  .page-section {
    padding: 120px 0;
  }
}
.page-section__header {
  display: flex;
}
.page-section__header.center {
  justify-content: center;
}
.page-section__heading {
  display: inline-flex;
  width: auto;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1.5px;
  font-size: 1.875rem;
  line-height: 1.1;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}
.container {
  max-width: 1176px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.stretched-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media  (min-width: 992px) {
  .featured {
    display: flex;
    align-items: center;
  }
}
.featured__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: dense;
  grid-gap: 10px;
  margin-bottom: 30px;
}
@media  (min-width: 992px) {
  .featured__images {
    margin-bottom: 0;
    width: 66.67%;
    padding-right: 15px;
  }
}
.featured__image-left,
.featured__image-right {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.featured__image-left img,
.featured__image-right img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.featured__image-left:hover img,
.featured__image-right:hover img {
  transform: scale(1.05);
}
.featured__image-left {
  grid-column: 1 / span 2;
}
@media  (min-width: 768px) {
  .featured__image-left {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
  }
}
@media  (min-width: 768px) {
  .featured__image-right {
    grid-column: 2 / span 1;
  }
}
.featured__content {
  width: 100%;
  position: relative;
}
@media  (min-width: 992px) {
  .featured__content {
    width: 33.33%;
    padding-left: 15px;
  }
}
.featured__title {
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1.5px;
  font-size: 1.875rem;
  line-height: 1.1;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}
.featured__excerpt {
  margin-bottom: 30px;
}
.featured__excerpt p {
  margin: 0;
  font-size: 1.3125rem;
  line-height: 30px;
  font-weight: 300;
}
@media  (min-width: 992px) {
  .featured__excerpt p {
    max-height: 360px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 12;
    text-overflow: ellipsis;
  }
}
.featured__callout-subheading {
  color: #cf1430;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.featured__callout p {
  margin-bottom: 0;
  font-size: 1.3125rem;
  line-height: 1.42857;
  font-weight: 700;
}
.featured__callout-link {
  display: block;
  height: 0;
  width: 0;
  font-size: 0;
}
.card__deck {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px 10px;
}
@media  (min-width: 768px) {
  .card__deck {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card__img {
  margin-bottom: 30px;
  overflow: hidden;
}
.card__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.card__img:hover img {
  transform: scale(1.05);
}
.card__content {
  text-align: center;
  padding: 0 21px;
}
.card__content h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 1.3125rem;
  line-height: 30px;
  font-weight: 700;
}
.card__content h3 a {
  color: #fff;
  text-decoration: none;
}
.card__content p {
  margin: 0;
  font-size: 1.3125rem;
  line-height: 30px;
  font-weight: 300;
}
.modal.hidden {
  display: none;
}
.modal .modal-overlay {
  position: fixed;
  z-index: 8;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(14, 20, 20, 0.8);
}
.modal .modal-content {
  position: fixed;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.modal .modal-content img {
  width: 90vw;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}
.modal .modal-content #modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(14, 20, 20, 0.8);
  border: none;
  font-size: 2rem;
  padding: 0 0.5rem;
  cursor: pointer;
  color: #fff;
}
/*# sourceMappingURL=public/css/style.css.map */