.bg-news-grid {
  margin: 0;
  width: 100%;
  position: relative;
  overflow: visible;
  z-index: 2;
  background: #000;
  color: #FFF;
}
@media (max-width: 800px) {
  .bg-news-grid {
    background-color: var(--primary);
    color: #000;
  }
}
.bg-news-grid .scaler {
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-flow: row;
  padding-top: 6rem;
  padding-bottom: 25rem;
}
@media (max-width: 800px) {
  .bg-news-grid .scaler {
    flex-flow: column;
    padding-bottom: 6rem;
  }
}
.bg-news-grid:after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(50% + 8.5rem);
  background-color: var(--primary);
}
@media (max-width: 800px) {
  .bg-news-grid:after {
    height: 60%;
  }
}
.bg-news-grid .bg-news-grid-sidebar {
  position: relative;
  width: 33.33%;
  left: 0;
}
.bg-news-grid .bg-news-grid-sidebar h2 {
  margin-bottom: 1.5rem;
}
@media (max-width: 800px) {
  .bg-news-grid .bg-news-grid-sidebar h2 {
    margin-bottom: 0;
  }
}
.bg-news-grid .bg-news-grid-sidebar p {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (max-width: 800px) {
  .bg-news-grid .bg-news-grid-sidebar p {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}
@media (max-width: 800px) {
  .bg-news-grid .bg-news-grid-sidebar {
    width: 100%;
    position: relative;
    top: unset;
    text-align: center;
  }
}
.bg-news-grid .news-stack {
  position: relative;
  width: 60%;
  margin: 0;
  height: 24rem;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .bg-news-grid .news-stack {
    width: 50%;
  }
}
@media (max-width: 800px) {
  .bg-news-grid .news-stack {
    width: 90%;
    margin: 0 auto;
    height: auto;
  }
}
.bg-news-grid .news-stack .featuredImage {
  position: relative;
  padding-bottom: 50%;
  transition: padding-bottom 0.5s ease-in-out;
}
.bg-news-grid .news-stack .newsThumbWrap {
  position: relative;
  bottom: 0;
  padding: 0.5rem 2rem;
  transition: padding 0.5s ease-in-out;
}
@media (max-width: 800px) {
  .bg-news-grid .news-stack .newsThumbWrap {
    padding: 0.5rem;
  }
}
.bg-news-grid .news-stack .postText {
  display: block;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-out;
}
@media (max-width: 800px) {
  .bg-news-grid .news-stack .postText {
    max-height: unset;
  }
}
.bg-news-grid .news-stack a {
  text-decoration: none;
  width: calc(100% - 4rem);
  display: table;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease-out;
  opacity: 1;
}
@media (max-width: 800px) {
  .bg-news-grid .news-stack a {
    position: relative;
    width: 100%;
    margin: 0 auto 1rem;
  }
}
.bg-news-grid .news-stack a.is-promoting {
  opacity: 0;
}
.bg-news-grid .news-stack a.is-leaving {
  opacity: 0;
  transform: scale(1.05) translateX(10%) translateY(-10%);
}
.bg-news-grid .news-stack a.is-entering {
  opacity: 0;
  transform: scale(0.9) translateX(-10%) translateY(10%);
}
.bg-news-grid .news-stack a.current .newsThumbWrap {
  padding: 1rem 2rem 2rem;
}
@media (max-width: 800px) {
  .bg-news-grid .news-stack a.current .newsThumbWrap {
    padding: 0.5rem 0.5rem 1rem;
  }
}
.bg-news-grid .news-stack a.current .postText {
  max-height: 8.5rem;
  transition: max-height 0.5s ease-out;
}
.bg-news-grid .news-stack a:first-of-type {
  position: relative;
}
@media (max-width: 800px) {
  .bg-news-grid .news-stack a:first-of-type {
    top: 0;
  }
}
.bg-news-grid .news-stack a:nth-of-type(1) {
  top: calc(1 * 4.5rem);
  right: calc(0 * 3rem);
  z-index: 4;
}
@media (max-width: 800px) {
  .bg-news-grid .news-stack a:nth-of-type(1) {
    right: 0;
    top: unset;
  }
}
.bg-news-grid .news-stack a:nth-of-type(2) {
  top: calc(2 * 4.5rem);
  right: calc(1 * 3rem);
  z-index: 3;
}
@media (max-width: 800px) {
  .bg-news-grid .news-stack a:nth-of-type(2) {
    right: 0;
    top: unset;
  }
}
.bg-news-grid .news-stack a:nth-of-type(3) {
  top: calc(3 * 4.5rem);
  right: calc(2 * 3rem);
  z-index: 2;
}
@media (max-width: 800px) {
  .bg-news-grid .news-stack a:nth-of-type(3) {
    right: 0;
    top: unset;
  }
}
.bg-news-grid .news-stack a:nth-of-type(4) {
  top: calc(4 * 4.5rem);
  right: calc(3 * 3rem);
  z-index: 1;
}
@media (max-width: 800px) {
  .bg-news-grid .news-stack a:nth-of-type(4) {
    right: 0;
    top: unset;
  }
}
.bg-news-grid .news-stack a:nth-of-type(5) {
  top: calc(5 * 4.5rem);
  right: calc(4 * 3rem);
  z-index: 0;
}
@media (max-width: 800px) {
  .bg-news-grid .news-stack a:nth-of-type(5) {
    right: 0;
    top: unset;
  }
}
.bg-news-grid .news-nav {
  margin: 0;
  width: 20rem;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 800px) {
  .bg-news-grid .news-nav {
    display: none;
  }
}
.bg-news-grid .news-nav button {
  position: relative;
  background: transparent;
  outline: none;
  border: 2px solid #000;
  color: #000;
  width: 50px;
  height: 50px;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: opacity 0.1s ease-out;
}
@media (max-width: 1200px) {
  .bg-news-grid .news-nav button {
    transform: translateX(0);
  }
}
.bg-news-grid .news-nav button:after {
  content: "";
  display: table;
  position: absolute;
}
.bg-news-grid .news-nav button.news-prev:after {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid transparent;
  border-right: 15px solid #000;
  right: 18px;
}
@media (max-width: 800px) {
  .bg-news-grid .news-nav button.news-prev:after {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid transparent;
    border-right: 15px solid var(--primary);
  }
}
.bg-news-grid .news-nav button.news-next:after {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid transparent;
  border-left: 15px solid #000;
  left: 18px;
}
@media (max-width: 800px) {
  .bg-news-grid .news-nav button.news-next:after {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid transparent;
    border-left: 15px solid var(--primary);
  }
}
@media (min-width: 800px) {
  .bg-news-grid .news-nav button:hover {
    opacity: 0.5;
  }
}
@media (max-width: 800px) {
  .bg-news-grid .news-nav button {
    border-color: var(--primary);
    color: var(--primary);
    margin-bottom: 1rem;
  }
}/*# sourceMappingURL=bg-news-grid.css.map */