.carousel-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto 24px auto;
  max-width: 1272px;
  width: 100%;
  padding: 0 24px;
  text-align: center;
}

.carousel-title {
  margin: 0;
  text-align: center;
  font-family: "IberPangea", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: var(--Color-Content-General-1, #2C2C2C);
}

.carousel-subtitle {
  margin: 0;
  text-align: center;
  font-family: "IberPangea Text", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  color: var(--Color-Content-General-1, #2C2C2C);
}
@media (max-width: 576px) {
  .carousel-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .carousel-subtitle {
    font-size: 15px;
  }
}

.card-info,
.card-info * {
  box-sizing: border-box;
}
.card-title,
.card-body,
.card-description {
  margin: 0;
  padding: 0;
}
.card-info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 408px;
  flex: 0 0 408px;
  padding-bottom: 24px;
  border-radius: 16px;
  background: var(--Color-Surface-General-3, #F5F5F5);
  overflow: hidden;
  text-align: left;
}
.card-img {
  width: 100%;
  height: 200px;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  text-align: left;
}
.title-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  text-align: left;
}
.card-title {
  margin: 0;
  width: 100%;
  text-align: left;
  font-family: "IberPangea", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--Color-Content-General-1, #2C2C2C);
}
.card-body {
  margin: 0;
  width: 100%;
  text-align: left;
  font-family: "IberPangea Text", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: var(--Color-Content-General-2, rgba(71, 71, 71, 0.8));
}
.card-extra {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  text-align: left;
}
.card-description {
  margin: 0;
  width: 100%;
  text-align: left;
  font-family: "IberPangea Text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--Color-Content-General-2, rgba(71, 71, 71, 0.8));
}
.card-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: auto;
  flex: 0 0 auto;
  gap: 4px;
  margin: 0;
  padding: 0;
  border: none;
  text-align: left;
  font-family: "IberPangea Text", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: underline;
  color: var(--Color-Content-Interactive-Active, #2F6852);
}
.icon-chevron {
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  object-fit: contain;
}
.carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
    padding-left: 324px;

}
.cards-carousel-track {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  cursor: grab;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cards-carousel-track:active {
  cursor: grabbing;
}
.cards-carousel {
  display: flex;
  gap: 24px;
  width: max-content;
  transition: transform 0.3s ease;
  will-change: transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.carousel-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  opacity: 0.4;
}
.carousel-arrow:hover {
  opacity: 0.7;
}
.carousel-arrow img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.carousel-arrow:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
.carousel-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: "IberPangea Text", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--Color-Content-General-1, #2C2C2C);
}
.carousel-counter #currentSlide {
  font-size: 28px;
  font-weight: 700;
  color: var(--Color-Content-Interactive-Active, #2F6852);
  line-height: 1;
}
@media (max-width: 1200px) {
  .card-info {
    width: 316px;
    flex: 0 0 316px;
  }
  .card-link {
    font-weight: 500;
  }
  .card-content {
    gap: 24px;
  }
 .carousel-wrapper {
    padding-left: 102px;
  }
}
@media (max-width: 992px) {
  .card-info {
    width: 304px;
    height: 444px;
    flex: 0 0 304px;
  }
  .card-link {
    font-weight: 500;
  }
  .card-content {
    gap: 24px;
  }
 .carousel-wrapper {
    padding-left: 82px;
  }
}
@media (max-width: 768px) {
  .carousel-wrapper {
    padding-left: 48px;
  }
}
@media (max-width: 576px) {
  .carousel-wrapper {
    padding-left: 42px;
  }
}
@media (max-width: 360px) {
  .carousel-wrapper {
    padding-left: 16px;
  }
}