/* Colors */
/* Responsive */
#page .site-content section .latest-news-wrapper {
  display: flex;
  overflow-x: auto;
  flex-wrap: nowrap;
  width: 100%;
  overflow: hidden;
}
#page .site-content section .latest-news-wrapper .wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  position: relative;
}
#page .site-content section .latest-news-wrapper .wrapper-inner .latest-news-cover {
  width: 100%;
  height: 100%;
  background: white;
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #page .site-content section .latest-news-wrapper .wrapper-inner .latest-news-cover {
    display: none;
  }
}
#page .site-content section .latest-news-wrapper .wrapper-inner .latest-news {
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  #page .site-content section .latest-news-wrapper .wrapper-inner .latest-news {
    display: block;
    padding: 1rem;
  }
}
#page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .info {
  width: 30vw;
  padding: 0 3% 0 6%;
  background: #ffffff;
  color: #666666;
}
@media screen and (max-width: 1024px) {
  #page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .info {
    width: 50vw;
  }
}
@media screen and (max-width: 768px) {
  #page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .info {
    width: 100vw;
    padding: 0;
    padding-right: 1.8rem;
  }
}
#page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .info .copy {
  line-height: 20px;
}
#page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .info .copy .title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 30px;
  text-transform: uppercase;
}
#page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .info .copy .heading {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 20px;
  line-height: 25px;
}
#page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .info .copy .content {
  color: #6d6e71;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 20px;
  padding: 0.8em 0;
  text-transform: none;
  line-height: 1.7em;
}
#page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .info .copy .content code {
  display: block;
  margin-top: 16px;
}
#page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .info .arrows {
  display: flex;
  align-content: center;
  gap: 0.5rem;
}
#page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .info .arrows .arrow {
  font-size: 1.5rem;
  padding: 8px 12px;
  margin: 40px 0;
  cursor: pointer;
}
#page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .info .arrows .arrow.left {
  color: #ffffff;
  background: #cc0000;
  transition: all 0.5s;
  border: 1px solid #ffffff;
}
#page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .info .arrows .arrow.left:hover {
  color: #282728;
  border: 1px solid #000000;
  background: transparent;
}
#page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .info .arrows .arrow.right {
  color: #282728;
  background: #b6b6b6;
  transition: all 0.5s;
  border: 1px solid #ffffff;
}
#page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .info .arrows .arrow.right:hover {
  color: #282728;
  border: 1px solid #282728;
  background: transparent;
}
#page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .news-images {
  width: 70vw;
}
#page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .news-images .featured-bg {
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  #page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .news-images .featured-bg {
    padding-right: 2.1rem;
  }
}
@media screen and (max-width: 768px) {
  #page .site-content section .latest-news-wrapper .wrapper-inner .latest-news .news-images {
    width: 100vw;
  }
}
