 :root {
      --aspect-ratio: 4 / 5;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .carousel-container {
      position: relative;
      width: 100%;
      max-width: 840px;
      aspect-ratio: var(--aspect-ratio);
      overflow: hidden;
      background-color: #000;
          -webkit-box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.35);
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
      height: 100%;
    }

    .carousel-slide {
      min-width: 100%;
      height: auto;
      position: relative;
    }

    .carousel-slide img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 0;
    }

    .icon-top-right {
      position: absolute;
      top: 15px;
      right: 15px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 50%;
      padding: 6px;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon-top-right svg {
      fill: white;
      width: 20px;
      height: 20px;
    }

    .carousel-dots {
      position: absolute;
      bottom: 15px;
      width: 100%;
      text-align: center;
    }

    .carousel-dots span {
      display: inline-block;
      width: 8px;
      height: 8px;
      margin: 0 5px;
      background-color: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      cursor: pointer;
    }

    .carousel-dots .active {
      background-color: white;
    }

    @media (max-width: 600px) {
      .icon-top-right {
        width: 26px;
        height: 26px;
        padding: 4px;
      }

      .icon-top-right svg {
        width: 16px;
        height: 16px;
      }
    }