.image-list-3-columns {
  width: 100%;
  text-align: center;
  background-color: #fff;
  margin-top: 32px;
  margin-bottom: 40px;
  padding: 0 16px;
  box-sizing: border-box;

  .swiper-container {
    max-width: 100%;
    box-sizing: content-box;
    /* height: 100%; */
    width: 100%;
    margin: 0 auto;
    position: relative;
    transition-property: transform;
    z-index: 1;
    overflow: visible;
    padding: 0 24px;
    box-sizing: border-box;
    margin-top: 1rem;

    .glide-3-columns-2-tablet-mobile {
      width: 100%;
      margin-bottom: 3rem;

      .glide__track {
        overflow: hidden;
        .glide__slides {
          display: flex;
          padding: 20px 0;
          list-style: none !important;
          margin: 0;
          gap: 16px;

          .cmp-image-list__item {
            background-color: #fff;
            border-radius: 4px;
            box-shadow: 0 5px 20px rgba(27, 19, 19, 0.1);
            color: #20252b;
            display: flex;
            flex-direction: column;
            overflow: hidden;

            .image {
              height: auto;
              img {
                cursor: pointer;
                height: auto;
                object-fit: cover;
                width: 100%;
              }
            }
          }
        }
      }
    }

    .description {
      margin-bottom: 1rem;
      margin-top: 1rem;
      text-align: start;

      ul {
        list-style: none;
        margin-bottom: 1rem;
        margin-top: 1rem;
        padding-inline-start: 0;

        li {
          font-weight: 300;
          color: #333;
          letter-spacing: 0.25px;
          margin-bottom: 1rem;
          padding-left: 40px;
          position: relative;

          &::before {
            content: "";
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%2300D764' fill-rule='evenodd' d='M18.14 6.65c.39.33.47.89.2 1.31l-.07.1-7.7 9.17c-.36.43-1 .47-1.42.12l-.09-.09-3.3-3.67a.997.997 0 0 1 .07-1.41c.38-.34.95-.34 1.32-.01l.09.09 2.53 2.81 6.96-8.29c.36-.43.99-.48 1.41-.13Z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: 20px 20px;
            display: inline-block;
            width: 20px;
            height: 20px;
            position: absolute;
            left: 0;
            top: 4px;
          }
        }
      }
    }
  }
}

/* Tablet  */
@media (min-width: 768px) {
  .image-list-3-columns {
    .swiper-container {
      max-width: 768px;
    }

    .glide__slides {
      gap: 24px;
    }
  }
}

/* Desktop  */
@media (min-width: 1024px) {
  .image-list-3-columns {
    .swiper-container {
      max-width: 73.125rem;
      padding: 0 24px;
      margin: 0 auto;
    }

    .glide__slides {
      gap: 24px;
      padding: 40px 0 42px;
    }
  }
}
