.item {
    display: flex;
    flex-direction: column;
    height: 100%; 
}



.vote-button {
 display: none; 
}
.module-wrapper {
  padding: 0 64px;
}
.package-voting-module {
  margin: 0 auto;
  max-width: 1312px;
}
  h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 100px;
    color: var(--black-bb-100, #231F20);
    font-family: Campton;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 36px */
  }
  @media screen and (max-width: 767px) {
    h2 {
      margin-bottom: 64px;
    }
  }
  .package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 26px;
    row-gap: 100px;
  }
  @media screen and (max-width: 1200px) {
    .package-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media screen and (max-width: 767px) {
    .package-grid {
      grid-template-columns: repeat(1, minmax(0, 1fr));
      row-gap: 64px;
    }
  }
  .item .package-image-container {
    width: 100%;
    overflow: hidden;
    background-color: black;
    aspect-ratio: 420/300;
    position: relative;
    margin-bottom: 32px;
  }
  .item .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .item h3{
    margin-bottom: 16px;
    color: #B94C97;
    font-family: Campton;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 28px */
  }
  .item p {
    margin-bottom: 32px;
    color: var(--black-bb-100, #231F20);
        font-family: DM Sans, sans-serif !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    flex-grow: 1;
  }
  .item button {
    margin: 0;
    padding: 16px 20px;
    border: none;
    border-radius: 10px;
    background: #02ADB9;
    color: var(--W---100, #FFF);
    font-family: "Hanken Grotesk";
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%; /* 18px */
    width: max-content;
  }
  .overlay-bg, .form-popup, .form {
    display: none;
  }
  .form.active {
    display: block;
  }
  :has(.form.active) .overlay-bg {
    display: block;
    z-index: 9998;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: black;
    opacity: 0.5;
  }
  :has(.form.active) .form-popup {
    display: block;
    z-index: 9999;
    position: fixed;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 500px;
    padding: 64px 32px;
    background: #B94C97;
  }
  .popup-container .form-popup h3 {
    color: var(--W---100, #FFF);
    text-align: center;
    width: 100%;
    font-family: Campton;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 36px */
    margin-bottom: 32px;
  }
  .popup-container .form label span,
  .popup-container .form label {
    color: var(--W---100, #FFF);
    font-family: "Hanken Grotesk";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
  }
  .form-popup .close-button {
    background: transparent;
    position: absolute;
    font-size: 32px;
    top: -10px;
    right: 10px;
    color: white;
    border: none;
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .module-wrapper {
    padding: 0 32px;
  }
}
.swiper-button-prev:after, .swiper-button-next:after {
  padding: 4px;
  font-size: 16px !important;
  color: #231F20;
  background-color: #CCCCCB;
  border-radius: 100px;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}


.swiper-free-mode>.swiper-wrapper {
 background-color: white !important; 
}