.custom-blog-post-slider {
  margin-top: 30px;
  margin-bottom: 30px;
}

.custom-blog-post-slider-inner {
  display: flex;
  flex-direction: row;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.custom-blog-post-slider a.slick-slide {
  margin-left: 15px;
  margin-right: 15px;
  transition: all .2s ease-in-out 0s;
  text-decoration: none;
  background-color: transparent;
  border-radius: 10px;
}

.custom-blog-post-slider a.slick-slide img {
  height: 300px;
  box-shadow: rgba(0,0,0,0.3) 0px 0px 10px;
  border-radius: 10px;
}

.custom-blog-post-slider .slick-arrow {
  position: absolute;
  top: calc(50% - 30px);
  width: 60px;
  height: 60px;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 3px;
  display: flex;
  opacity: 0.5;
  border-radius: 50%;
  transition: all 0.2s ease-in-out 0s;
  text-align: center;
  padding: 0;
  z-index: 2;
}

.custom-blog-post-slider .slick-list.draggable {
  overflow: visible;
}

.custom-blog-post-slider a.slick-slide:hover {
  transform: scale(1.02);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 15px;
}

.custom-blog-post-slider .slick-arrow.slick-prev {
  transform: scaleX(-1);
  margin-left: 235px;
  background-color: rgb(255, 255, 255);
}

.custom-blog-post-slider .slick-arrow.slick-next {
  margin-right: 235px;
  background-color: rgb(255, 255, 255);
  margin-top: 30px;
}

.custom-blog-post-slider .slick-arrow:hover svg g g {
  fill: rgb(25, 25, 25);
}

.custom-blog-post-slider .slick-arrow svg {
  width: 10px;
  transition: all 0.2s ease-in-out 0s;
  display: block;
  margin: auto 0px auto 27px;
}

.custom-blog-post-slider .slick-arrow svg g g {
  fill: rgb(112, 111, 103);
}

.custom-blog-post-slider .slick-arrow:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
  opacity: 0.8;
}

.custom-blog-post-slider .slick-arrow.slick-next svg {
  margin: auto 0px auto 27px;
}

.custom-blog-post-slider .slick-arrow:before {
  display: none;
}

.custom-blog-post-slider-inner {
  display: none;
}

.custom-blog-post-slider-inner.slick-initialized {
  display: block;
}

{# CSS styles applied when the visitor is using a smartphone, an old tablet, ... #}
@media only screen and (max-width: 1024px){
  
  .custom-blog-post-slider a.slick-slide img {
    height: 150px;
  }
  
  .custom-blog-post-slider .slick-arrow.slick-prev {
    margin-left: 10px;
  }
  
  .custom-blog-post-slider .slick-arrow.slick-next {
    margin-right: 10px;
  }
  
}