/**
Blog styles
 */
.blog-page {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
}

.blog-page__banner,
.blog-page__content {
  width: 100%;
}

.blog-banner {
  background: none center;
  background-size: cover;
  padding: 24px;
  min-height: 300px;
  position: relative;
}

.blog-banner__title {
  color: #fff;
  text-shadow: 4px 4px 20px rgba(1, 17, 51, 0.8);
  text-align: center;
  width: 100%;
  font-weight: 900;
  font-size: 32px;
  line-height: 38px;
  padding: 40px 0;
}

.blog-banner__type {
  width: 87px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  background: #F87272;
  font-size: 12px;
  padding: 0 11px;
}

.blog-banner__article {
  color: #fff;
  text-shadow: 2px 2px 10px rgba(1, 17, 51, 0.8);
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.blog-banner__article-label {
  flex-grow: 1;
  text-align: center;
}

a.blog-banner__arrow {
  display: inline-block;
  background: #4A90E2;
  opacity: 0.8;
  width: 36px;
  height: 36px;
  color: #fff;
  padding: 6px;
}

.blog-banner__arrow_left {
  left: 0;
}

.blog-banner__arrow_right {
  right: 0;
}

.blog-content {
  padding: 24px;
}

.blog-content__title {
  font-weight: 900;
  font-size: 24px;
  line-height: 36px;
  color: #1E1E1E;
  text-transform: initial;
  margin-bottom: 24px;
}

.blog-content__content {
  font-weight: bold;
  font-size: 14px;
  color: #1E1E1E;
}

.blog-content__content p {
  margin-bottom: 18px;
}

.blog-content__content a {
  color: #4A90E2;
}

/*  News, Events */
.blog-page--events,
.blog-page--news {
  box-sizing: border-box;
  display: block !important;
  margin-right: auto;
  margin-left: auto;
  padding: 50px 1.5em;

  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  max-width: 1220px;
}

.blog-page--news .post-type {
  color: #FF5A59;
}

.blog-page--events .post-type {
  color: #4A90E2;
}

.post-type {
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.news__image {
  margin: 0 0 30px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.news__inner-image {
  display: block;
  margin: 32px auto;
  border: solid 4px #E3E6ED;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
}

.news__title-h1,
.news__title-h2,
.news__title-h3 {
  font-weight: 600;
}

.news__title-h1 {
  font-size: 24px;
  text-transform: none;
  margin-bottom: 20px;
  line-height: 40px;
}

.news__title-h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.news__title-h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.news__list {
  margin: 20px 0 20px 20px;
  padding: 0 0 0 8px;
}

ul.news__list {
  list-style: disc;
}

ol.news__list {
  list-style: decimal;
}

.news__list li {
  margin-bottom: 8px;
  position: relative;
}

.news__paragraph {
  margin-bottom: 20px;
}

.news__link {
  text-decoration: underline;
}

.news__link:hover {
  text-decoration: none;
}

.post-nav {
  align-items: center;
  justify-content: space-between;
  display: flex;
  margin-top: 40px;
  width: 100%;
}

.post-nav__prev,
.post-nav__next {
  align-items: center;
  display: flex;
  color: #4A4A4A;
  font-size: 16px;
  line-height: 20px;
}

.post-nav__icon {
  height: 27px;
  width: 27px;
}

.post-nav__prev .post-nav__icon {
  margin-right: 12px;
}

.post-nav__next .post-nav__icon {
  margin-left: 12px;
}

@media all and (max-width: 512px) {
  .blog-page--events,
  .blog-page--news {
    display: flex !important;
    flex-direction: column;
    max-width: 100%;
    padding: 20px 3rem;
    font-size: 14px;
    line-height: 21px;
  }

  .post-type {
    font-size: 12px;
    line-height: 15px;
  }

  .news__title-h1 {
    font-size: 18px;
    line-height: 28px;
  }

  .news__title-h2 {
    font-size: 14px;
    line-height: 21px;
  }

  .post-nav__prev,
  .post-nav__next {
    font-size: 12px;
    line-height: 15px;
  }

  .post-nav__icon {
    height: 22px;
    width: 22px;
  }
}

@media (min-width: 768px) {
  .blog-banner {
    padding: 40px 100px;
  }

  .blog-banner__type {
    font-size: 16px;
    padding: 6px 16px;
  }

  .blog-banner__title {
    font-size: 48px;
    line-height: 72px;
    padding: 50px 0 66px;
  }

  .blog-banner__article-label {
    text-align: center;
  }

  a.blog-banner__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    height: 72px;
    padding: 24px;
  }

  .blog-content__title {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 36px;
  }

  .blog-content__content {
    font-size: 16px;
  }
}

@media all and (max-width: 767px) {
  .blog-page--events,
  .blog-page--news {
    display: flex !important;
    flex-direction: column;
    max-width: 100%;
    padding: 20px 3rem;
    font-size: 14px;
    line-height: 21px;
  }

  .news__image {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 30px;
  }
}

@media (min-width: 1200px) {
  .blog-page {
    display: flex;
  }

  .blog-page__banner,
  .blog-page__content {
    width: 50%;
  }

  .blog-banner {
    padding: 110px 195px;
    max-height: 913px;
  }

  .blog-banner__title {
    font-size: 60px;
    line-height: 80px;
    padding: 120px 0 150px;
    min-height: 510px;
  }

  .blog-content {
    padding: 110px 170px;
  }
}

@media all and (max-width: 1200px) {
  .blog-page--events,
  .blog-page--news {
    padding-right: 3rem;
    padding-left: 3rem;
    max-width: 100%;
  }

  .news__image {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 30px;
  }
}
