.craic-swiper {
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
  ;
  padding-bottom: 50px !important;
}

/* Image de la slide */
.craic-caroussel-image {
  width: 100%;
  height: 768px !important;
  object-fit: cover;
  border-radius: 4px;
}

.craic-caroussel-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 50%);

}

/* Overlay du contenu avec dégradé */
.craic-caroussel-content-overlay {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  padding: 64px;
  /* 16 * 4px = 64px */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  box-sizing: border-box;
}

/* Texte dans l'overlay */
.craic-caroussel-text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* 6 * 4px = 24px */
  flex: 1;
}

/* Headline */
.craic-caroussel-headline {
  font-size: 2.5rem;
  /* Adjust to your design */
  font-weight: 900;
  /* Font black */
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0;
}

/* Paragraphe */
.craic-caroussel-paragraph {
  font-size: 1.125rem;
  /* 18px */
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

/* Bouton */
.craic-caroussel-button {
  display: inline-block;
  padding: 20px 24px;
  /* 5 * 4px = 20px padding y, 6 * 4px = 24px padding x */
  background-color: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 9999px;
  /* Fully rounded */
  font-weight: 600;
  font-size: 1rem;
  /* 16px */
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
  cursor: pointer;
  /* Cursor pointer */
  max-width: fit-content;
}

.craic-caroussel-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
}

/* Navigation des dots */
.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  /* 4 * 4px */
  position: relative;
}

.swiper-pagination-bullet {
  width: 34px !important;
  height: 5px !important;
  background-color: rgba(201, 71, 39, 0.2) !important;
  border-radius: 2.5px !important;
  cursor: pointer !important;
  transition: background-color 0.3s, width 0.3s !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  width: 70px !important;
  background-color: #c94727 !important;
}

/* Responsive Styles */
@media (max-width: 1280px) {
  .craic-caroussel-image {
    height: 600px !important;
  }

  .craic-caroussel-headline {
    font-size: 2rem;
  }

  .craic-caroussel-paragraph {
    font-size: 1rem;
  }

  .craic-caroussel-button {
    padding: 16px 20px;
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .craic-caroussel-content-overlay {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
  }

  .swiper-pagination {
    gap: 8px;
  }

  .swiper-pagination-bullet {
    width: 24px;
    height: 4px;
  }

  .swiper-pagination-bullet-active {
    width: 50px;
  }

  .craic-caroussel-image {
    height: 400px !important;
  }

  .craic-caroussel-slide {
    /* margin: 0 10px; */
  }

  .craic-caroussel-text-content {
    gap: 16px;
  }

  .craic-caroussel-paragraph {
    font-size: 0.875rem;
  }
}