.carousel-container {
  position: relative;
  width: 100%;
  aspect-ratio: 6 / 3;
}

.carousel__content-container {
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  clip-path: circle(0% at 0 50%);
}

.slide-active {
  clip-path: circle(150% at 0 50%);
  transition: 1s;
  transition-property: clip-path;
}

.carousel__content {
  width: 100%;
  color: white;
  position: absolute;
  bottom: 0;
  padding: 0.5rem;
  background-color: rgba(62, 96, 111, 0.8);
}

.carousel__content .carousel__post-name {
  font-size: 19px;
}

.carousel__content .carousel__post-excerpt {
  font-size: 14px;
  margin-left: 0.5em;
  display: none;
}

.carousel__btn {
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  border: none;
  background-color: white;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  z-index: 100;
}

.carousel__btn--left {
  left: 10px;
}

.carousel__btn--right {
  right: 10px;
}

.carousel__nav-bnt-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.carousel__nav-bnt {
  margin: 0 0.5rem;
  height: 15px;
  width: 15px;
  border: none;
  border-radius: 50%;
  background-color: rgb(136, 136, 136);
}

.carousel__nav-bnt-active {
  background-color: black;
}

.is-hidden {
  display: none;
}

@media screen and (min-width: 350px) {
  .carousel__content .carousel__post-excerpt {
    display: block;
  }
}
