.carousel {
  height: 428px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.carousel__line {
  display: flex;
  height: 428px;
  width: fit-content;
  position: relative;
  transition: all 0.5s;
}

.carousel__image {
  aspect-ratio: 552 / 428;
  width: 552px; /* Set initial width */
  height: 428px;
}

.carousel__buttons {
  width: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  top: 50%;
  position: absolute;
  transform: translateY(-50%); /* Center buttons vertically */
}

.carousel__buttons button {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 13px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.carousel__buttons button img {
  width: 16px;
  transform: rotate(90deg);
  filter: invert(45%) sepia(81%) saturate(544%) hue-rotate(174deg)
    brightness(93%) contrast(102%);
}

.carousel__buttons button:last-child img {
  transform: rotate(-90deg);
}

.carousel__tag {
  padding: 24px;
}

@media (max-width: 768px) {
  .carousel {
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
  }
  
.carousel__line {
  display: flex;
  height: 250px;
  width: fit-content;
  position: relative;
  transition: all 0.5s;
}
}
