.interesting-card-wrapper {
  position: relative;
}

.interesting-card {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  background-color: #ffffff;
  border-radius: 1rem;
}

.interesting-card-image-wrapper {
  width: 100%;
  height: 8.75rem;
  margin-bottom: 6.625rem;
  overflow: hidden;
  border-radius: 0.5rem;
}

.interesting-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interesting-card-description {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 130%;
  color: var(--color-primary);
}

.interesting-card-date {
  font-size: 0.875rem;
  line-height: 150%;
  color: var(--color-grey-dark);
}

.interesting-tags {
  position: absolute;
  top: 12.5rem;
  left: 0.5rem;
  z-index: 1;
}

.interesting-slider {
  position: relative;
}

.interesting-slider .swiper-pagination {
  position: absolute;
  z-index: 10;
  top: 10.625rem;
  display: flex;
  gap: 0.5rem;
  width: 100%;
  height: 0.375rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.interesting-slider .swiper-pagination-bullet {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background-color: var(--color-grey);
  cursor: pointer;
}
.interesting-slider .swiper-pagination-bullet-active {
  position: relative;
  width: 3.75rem;
  min-width: 50%;
  overflow: hidden;
}

.interesting-slider .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-grey-3);
  animation: bulletAnimate 3s linear;
}

@keyframes bulletAnimate {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .interesting-card {
    padding: 1rem;
  }

  .interesting-card-image-wrapper {
    height: 15.25rem;
    border-radius: 1rem;
  }

  .interesting-tags {
    top: 19.5rem;
    left: 1rem;
  }

  .interesting-card-description {
    font-size: 1.5rem;
  }

  .interesting-card-date {
    font-size: 1.125rem;
  }

  .interesting-slider .swiper-pagination {
    top: 283px;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .interesting-slider .swiper-pagination-bullet-active {
    width: 16.25rem;
  }
}

@media screen and (min-width: 1280px) {
  .interesting-card-image-wrapper {
    height: 411px;
  }

  .interesting-tags {
    top: 29.9375rem;
  }

  .interesting-card-description {
    font-size: 2rem;
  }

  .interesting-slider .swiper-pagination {
    width: 28.125rem;
  }

  .interesting-slider .swiper-pagination-bullet-active {
    width: 26.25rem;
  }
}

@media screen and (min-width: 1920px) {
  .interesting-card-image-wrapper {
    height: 37.5rem;
  }

  .interesting-tags {
    top: 41.75rem;
  }

  .interesting-slider .swiper-pagination {
    top: 40rem;
  }

  .interesting-slider .swiper-pagination-bullet-active {
    width: 61.75rem;
  }
}
