#tagged_articles_carousel article{
  display: flex;
  padding-left: 10px;
}
#tagged_articles_carousel article div h4{
  font-size: medium;
  padding-top: 13px;
  font-weight: 600;
}
#tagged_articles_carousel article div h4 a{
  color: black;
}
#tagged_articles_carousel article div{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 5px;
  padding-bottom: 15px;
}
#tagged_articles_carousel article figure {
  width: 170px;
  height: 130px;
}
#tagged_articles_carousel img{
  width: auto;
  height: 100%;
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.carousel-controls .prev, .next{
  display: flex;
  align-items: center;
  width: 40px;
  padding-left: 10px;
  height: 40px;
  position: relative;
  z-index: 10;
}
.carousel-controls .prev {
  left: 0px;
  bottom: 125px;
 }
.carousel-controls .next {
  right: -20px;
  bottom: 125px;
 }
@media only screen and (max-width: 600px) {
  .carousel-controls .next {
    right: 0px;
  }
}

