.carousel-bg {
  position: relative;
  background: #140A17 !important;
  transition: 0.5s ease;
  z-index: 1;
}
.carousel-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(20,10,23) 0%, rgba(102,0,102,1) 50%, rgba(20,10,23) 100%);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}
.carousel-bg:hover::before {
  opacity: 1;
}
.carousel-bg:hover .category-header-line {
  background-color: #FFF;
}
.portrait-carousel-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: .5s;
  border-radius: 5px;
}
.portrait-carousel-info {
  display: flex;
  flex-direction: column;
}
.portrait-carousel-info {
  background: transparent;
  flex-grow: 1;
  padding-top: 16px;
}
.portrait-carousel-info .title-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.portrait-carousel-info .title, .portrait-carousel-info .date, .portrait-carousel-info .description {
  color: #FFF;
}
.portrait-carousel-info .title {
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  overflow: hidden;
  white-space: normal;
}
.portrait-carousel-info .date {
  font-weight: 300;
  font-size: 16px;
  line-height: normal;
  margin: 0;
  padding-top: 4px;
}
.portrait-carousel-info .description {
  font-weight: 300;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-grow: 1;
  padding-top: 4px;
}
.portrait-carousel-container .slick-arrow.prev {
  left: -48px;
  right: 0;
}
.portrait-carousel-container .slick-arrow.next {
  right: -48px;
}
.portrait-carousel-container .slick-arrow.prev:hover svg path, .portrait-carousel-container .slick-arrow.next:hover svg path {
  fill: #FFF;
}
.portrait-carousel-container .slick-arrow {
  position: absolute;
  height: 100%;
  width: 62px;
  top: 0;
  cursor: pointer;
  transition: 0.5s ease;
}
.aspect-ratio-container {
  position: relative;
  width: 100%;
}

.aspect-ratio-container::before {
  content: "";
  display: block;
  padding-top: 156%;
}
