.pdf-carousel-cards .carousel {
  display: flex;
  overflow: scroll clip;
  gap: 16px;
  /* stylelint-disable-next-line value-no-vendor-prefix */
  cursor: -webkit-grab;
  cursor: grab;
  scrollbar-width: none;
}

.pdf-carousel-cards .carousel::-webkit-scrollbar {
  display: none;
}

.pdf-carousel-cards .carousel-slide {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  flex: 0 0 calc(100% / 1);
}

.pdf-carousel-cards .carousel-cards-item .image {
  height: 175px;
  flex: 0 0 140px;
}

.pdf-carousel-cards .carousel-cards-item .image img {
  width: 156px;
  height: 170px;
  object-fit: cover;
}

.pdf-carousel-cards .carousel-item-link {
  display: flex;
  background: var(--color-white);
  white-space: unset;
  text-align: left;
  padding: 0;
  text-transform: unset;
}

.pdf-carousel-cards .carousel-cards-item {
  flex: 0 0 32%;
  max-width: 32%;
}

.pdf-carousel-cards .bg-image-overlay .image {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-size: inherit;
  width: 100%;
  height: 100%;
}

.pdf-carousel-cards .bg-image-overlay .image img {
  width: 100%;
  height: 100%;
}

.section.pdf-carousel-cards-container {
  position: relative;
  margin: var(--section-tob-btm-gap) 0;
  padding: 80px 0;
}

.pdf-carousel-cards .text-content {
  position: relative;
  padding: 15px;
}

.pdf-carousel-cards .text-content .text {
  padding-left: 66px;
}

.pdf-carousel-cards .text-content .text p {
  color: var(--color-text-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}

.pdf-carousel-cards .text-content::before {
  content: "";
  background: url("../../icons/pdf-icon.png") no-repeat;
  width: 26px;
  height: 32px;
  left: 15px;
  position: absolute;
  top: 15px;
  background-size: contain;
}

.pdf-carousel-cards .carousel-item-heading div>* {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 64px;
  text-transform: unset;
  font-family: var(--font-primary);
}

.pdf-carousel-cards .indicator-container {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 36px;
}

.pdf-carousel-cards .indicator-container .indicator-item {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #7a8db8;
  transition: 0.3s;
  padding: 0;
}

.pdf-carousel-cards .indicator-container .indicator-item.active-indicator {
  height: 8px;
  background-color: var(--color-primary);
  width: 25px;
  border-radius: 20px;
}

.investor-relations .pdf-carousel-cards .carousel-item-heading div>*{
  margin-bottom: 24px;
}

.investor-relations  h2#corporate-announcements-and-press-releases {
  margin-bottom: 30px;
}

@media (width <=1200px) {
  .pdf-carousel-cards .carousel-slide {
    scroll-snap-align: start;
  }

  .pdf-carousel-cards .carousel-cards-item {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media (width <=768px) {
  .pdf-carousel-cards .carousel {
    gap: 16px;
  }

  .section.pdf-carousel-cards-container {
    padding: 40px 0;
  }

  .pdf-carousel-cards .carousel-cards-item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pdf-carousel-cards .carousel-slide {
    height: 100%;
  }

  .pdf-carousel-cards .carousel-item-heading div>* {
    margin-bottom: 30px;
  }

  .pdf-carousel-cards .carousel-cards-item .image {
    height: 105px;
    flex: 0 0 80px;
  }

  .pdf-carousel-cards .carousel-cards-item .image img {
    height: 106px;
  }

  .pdf-carousel-cards .text-content .text p {
    font-size: 14px;
  }
}