/**
 * @file
 * Large Events styles.
 */
/**
 * @file
 * Dependencies.
 *
 * The necessary dependencies for compiling styles.
 * Nothing here should compile into CSS, helpers only.
 */
/**
 * @file
 * Color variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Typography declarations.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Functions.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/* Remove the unit of a length.
 * @param {Number} $number - Number to remove unit from
 * @return {Number} - Unitless number
 *
 * Reference: https://css-tricks.com/snippets/sass/strip-unit-function/
*/
/* Convert a value (raw number or pixel size) into rems. */
/**
 * @file
 * General variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Mixins.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * Breakpoint
 *
 * usage example:
 * @include breakpoint($feature: max-width, $value: 1509px) {
 *  display: none;
 * }
 */
/* Dynamic containment mixin. */
/**
 * @file
 * Z-Indices.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
.large-events {
  margin-top: 5rem;
}
@media screen and (max-width: 73.0625rem) {
  .large-events {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .large-events {
    margin: 0;
    padding: 2rem 0;
    background-color: #EFEFEF;
    position: relative;
    left: -6.8%;
    width: 113.7%;
    overflow: hidden;
  }
}

.large-events__heading {
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  max-width: 27.5rem;
}
@media screen and (max-width: 73.0625rem) {
  .large-events__heading {
    margin-bottom: 1.75rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .large-events__heading {
    margin-bottom: 1.5rem;
    padding: 0 7%;
  }
}

.large-events__container {
  display: flex;
}
@media screen and (max-width: 47.9375rem) {
  .large-events__container {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 73.0625rem) {
  .large-events__container .upcoming-events__heading {
    margin-bottom: 0.5rem;
  }
}
.large-events__container .upcoming-events {
  width: 24%;
  padding-right: 2rem;
}
@media screen and (max-width: 47.9375rem) {
  .large-events__container .upcoming-events {
    width: 100%;
    order: 2;
    padding: 0 14% 0 7%;
  }
}
.large-events__container .upcoming-events ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.large-events__container .upcoming-events li {
  padding: 1.5rem 0;
}
@media screen and (max-width: 73.0625rem) {
  .large-events__container .upcoming-events li {
    padding: 1rem 0;
  }
}
.large-events__container .upcoming-events li a {
  font-size: 1.125rem;
  font-weight: 700;
  color: #003366;
  text-decoration: none;
}
@media screen and (max-width: 73.0625rem) {
  .large-events__container .upcoming-events li a {
    font-size: 0.875rem;
  }
}
.large-events__container .upcoming-events li a:hover {
  text-decoration: underline;
}
.large-events__container .upcoming-events li:not(:last-child) {
  border-bottom: 1px solid #D3D3D3;
}
.large-events__container .upcoming-events time {
  display: block;
  color: #707070;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 0.75rem;
}
@media screen and (max-width: 73.0625rem) {
  .large-events__container .upcoming-events time {
    font-size: 0.75rem;
  }
}
.large-events__container .featured-news {
  width: 76%;
}
@media screen and (max-width: 47.9375rem) {
  .large-events__container .featured-news {
    width: 100%;
    order: 1;
    margin-bottom: 2rem;
  }
}
.large-events__container .featured-news__container {
  position: relative;
  width: calc((100vw - 1316px) / 2 + 99.3%);
  top: -7.5rem;
  padding-top: 7rem;
  padding-right: calc((100vw - 1316px) / 2);
  padding-bottom: 4.5rem;
  padding-left: 5.2%;
  background: #EFEFEF;
}
@media screen and (max-width: 94.3125rem) {
  .large-events__container .featured-news__container {
    width: 109%;
    padding-right: 9%;
  }
}
@media screen and (max-width: 87.4375rem) {
  .large-events__container .featured-news__container {
    top: -6.75rem;
    padding-top: 6rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .large-events__container .featured-news__container {
    top: -4.5rem;
    padding-top: 3.75rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .large-events__container .featured-news__container {
    width: 100%;
    top: 0;
    padding: 0;
  }
}

.featured-news__heading-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 47.9375rem) {
  .featured-news__heading-container {
    padding: 0 7%;
  }
}
.featured-news__heading-container .green-button:hover {
  background-color: #EFEFEF;
  color: #003366;
  transition: all 0.2s ease-out;
}

.featured-news__heading {
  margin: 0;
}

.featured-news__article-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 5.5%;
       column-gap: 5.5%;
}
@media screen and (max-width: 73.0625rem) {
  .featured-news__article-container {
    -moz-column-gap: 3.5%;
         column-gap: 3.5%;
  }
}
@media screen and (max-width: 47.9375rem) {
  .featured-news__article-container {
    grid-template-columns: repeat(3, 16.5625rem);
    -moz-column-gap: 1.75rem;
         column-gap: 1.75rem;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: 7%;
  }
}
.featured-news__article-container ::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.featured-news__article {
  background-color: #ffffff;
  transition: transform 0.2s;
}
.featured-news__article:hover {
  transform: scale(1.05);
}
.featured-news__article a {
  text-decoration: none;
}

.featured-news__image {
  position: relative;
}
.featured-news__image img {
  width: 100%;
  display: block;
  backface-visibility: hidden;
}
.featured-news__image time {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #707070;
  background-color: #ffffff;
  padding: 1rem 1.5rem 0.5rem;
}
@media screen and (max-width: 87.4375rem) {
  .featured-news__image time {
    position: static;
    padding: 1rem 1.5rem 0;
  }
}
@media screen and (max-width: 73.0625rem) {
  .featured-news__image time {
    font-size: 0.75rem;
    padding: 1rem 1.25rem 0;
  }
}

.featured-news__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  padding: 1.25rem 1.5rem 2rem;
}
@media screen and (max-width: 73.0625rem) {
  .featured-news__title {
    font-size: 0.875rem;
    padding: 1rem 1.25rem 1.5rem;
  }
}

/*# sourceMappingURL=large-events.css.map*/