@import url('https://fonts.googleapis.com/css?family=Lato:300,400|Open+Sans');
.blog-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 15px;
}
.blog-container.normal-mode .blog-entry {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 25px;
  min-height: 350px;
}
.blog-container.normal-mode .blog-img-container {
  order: 2;
  width: 50%;
  position: relative;
  overflow: hidden;
}
.blog-container.normal-mode .blog-img-container a {
  display: block;
}
.blog-container.normal-mode .blog-img-container .blog-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.25s all;
  -moz-transition: 0.25s all;
  -ms-transition: 0.25s all;
  -o-transition: 0.25s all;
  transition: 0.25s all;
}
.blog-container.normal-mode .blog-img-container:hover .blog-img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.blog-container.normal-mode .blog-content {
  order: 1;
  width: 50%;
  padding: 25px 50px;
  background: #FFF;
}
.blog-container.normal-mode .blog-content .title {
  font-size: 30px;
  color: #000;
  margin-bottom: 10px;
  font-weight: bold;
}
.blog-container.normal-mode .blog-content .author {
  font-size: 13px;
  font-style: italic;
}
.blog-container.normal-mode .blog-content .subtitle {
  font-size: 17px;
  line-height: 1.3;
}
.blog-container.normal-mode .blog-content .pubdate {
  font-weight: bold;
}
.blog-container.normal-mode .blog-content .author,
.blog-container.normal-mode .blog-content .subtitle,
.blog-container.normal-mode .blog-content .pubdate {
  margin-bottom: 25px;
}
.blog-container.normal-mode .blog-content .cta {
  font-size: 15px;
}
.blog-container.normal-mode .blog-content .cta a {
  color: #18a0fb;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.blog-container.normal-mode .blog-content .cta a:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 3px solid #18a0fb;
  border-right: 3px solid #18a0fb;
  top: 60%;
  right: -17px;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  -moz-transform: translate(0, -50%) rotate(45deg);
  -ms-transform: translate(0, -50%) rotate(45deg);
  -o-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
}
.blog-container.normal-mode .blog-content .cta.home-landing {
  display: none;
}
@media screen and (max-width: 768px) {
  .blog-container.normal-mode .blog-entry {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .blog-container.normal-mode .blog-img-container {
    order: 1;
    width: 100%;
    padding-bottom: 56.25%;
  }
  .blog-container.normal-mode .blog-content {
    order: 2;
    width: 100%;
    padding: 15px 25px;
  }
}
.blog-container.carousel-mode .blog-inner-container {
  padding: 0 40px;
}
.blog-container.carousel-mode .blog-img-container {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.blog-container.carousel-mode .blog-img-container a {
  display: block;
}
.blog-container.carousel-mode .blog-img-container .blog-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.blog-container.carousel-mode .blog-content {
  width: 100%;
  padding: 25px;
  background: #FFF;
}
.blog-container.carousel-mode .blog-content .title {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.3;
  color: #000;
}
.blog-container.carousel-mode .blog-content .subtitle,
.blog-container.carousel-mode .blog-content .pubdate,
.blog-container.carousel-mode .blog-content .cta {
  display: none;
}
.blog-container.carousel-mode .blog-content .pubdate {
  font-size: 15px;
  color: #000;
  line-height: 1.2;
}
.blog-container.carousel-mode .slick-prev,
.blog-container.carousel-mode .slick-next {
  font-size: 0;
  background: #FFF;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.4);
}
.blog-container.carousel-mode .slick-prev {
  left: 5px;
}
.blog-container.carousel-mode .slick-prev:before {
  content: "";
  width: 16px;
  height: 24px;
  background: url(../../../../../../../../content/dam/atvi/activision/atvi-touchui/research/common/left-arrow.jpg) top center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.blog-container.carousel-mode .slick-next {
  right: 5px;
}
.blog-container.carousel-mode .slick-next:before {
  content: "";
  width: 16px;
  height: 24px;
  background: url(../../../../../../../../content/dam/atvi/activision/atvi-touchui/research/common/right-arrow.jpg) top center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .blog-container {
    max-width: 100%;
  }
}
