
.cardcarousel {
  padding: 0px;
}
.cardcarousel h2 {
  margin: 0;
}
.cardcarousel a {
  text-decoration: none;
  color: #fff;
}

/* .cardcarousel img {
  aspect-ratio: 1/1;
  width: 330px;
  height: 230px;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  /* user-drag: none; 
  margin-bottom: 16px;
  border-radius: clamp(0px, ((100vw - 4px) - 100%) * 9999, 4px);
}
.cardcarousel h3 {
  font-size: 16px;
  margin: 0;
  margin-bottom: 4px;
}
.cardcarousel span {
  color: #a7a7a7;
  font-size: 14px;
} */
.cardcarousel .dragging a {
  pointer-events: none;
}
.cardcarousel .carousel__wrapper {
  position: relative;
  margin-bottom: 24px;
}
@media only screen and (min-width: 1180px) {
  .cardcarousel .cardcarousel__wrapper.has-arrows .cardcarousel__content {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1180px) {
  .cardcarousel .cardcarousel__wrapper.has-arrows .cardcarousel__arrows {
    display: flex;
  }
}
.cardcarousel .cardcarousel__header {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  margin-bottom: 16px;
}
/* .cardcarousel .cardcarousel__content {
  overflow-y: hidden;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: grid;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding: 0;
  margin: 0;
  grid-gap: 30px;
  grid-auto-flow: column;
  list-style: none;
} */
 .cardcarousel .cardcarousel__content {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  margin: 0;
  list-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.cardcarousel .cardcarousel__content::-webkit-scrollbar {
  display: none;
}
.packagecontainer  {
  flex: 0 0 330px; /* Fixed width */
}
.cardcarousel__content {
  justify-content: flex-start; /* aligns items at the beginning */
}
.cardcarousel .cardcarousel__item .cardcarousel__description {
  width: 100%;
}
.cardcarousel__content a {
    pointer-events: auto;
}
.cardcarousel .cardcarousel__item a {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
  user-select: none;
  margin: 0px 0px;
  cursor: pointer;
}
.cardcarousel .cardcarousel__controls {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 15px;
  width: 65px;
}
.cardcarousel .cardcarousel__arrow {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}
.cardcarousel .cardcarousel__arrow:before {
  content: "";
  background: url("../img/arrow.png");
  background-size: contain;
  display: block;
  width: 18px;
  height: 11px;
  cursor: pointer;
}
.cardcarousel .cardcarousel__arrow.arrow-prev:before {
  transform: rotate(90deg);
}
.cardcarousel .cardcarousel__arrow.arrow-next:before {
  transform: rotate(-90deg);
}
.cardcarousel .cardcarousel__arrow.disabled::before {
  filter: grayscale(100%);
}
