/*!************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/page-carousel/style.scss ***!
  \************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* ===================== EDITOR (aperçu) ===================== */
.br-page-carousel-editor {
  padding: 12px;
  background: #f5f7fb;
}
.br-page-carousel-editor .br-editor-title {
  margin: 0 0 10px;
  font-weight: 600;
}
.br-page-carousel-editor .br-page-carousel-editor-inner {
  position: relative;
  padding-bottom: 40px;
}
.br-page-carousel-editor .br-editor-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}
.br-page-carousel-editor .br-editor-card {
  min-width: 260px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.br-page-carousel-editor .br-editor-card.is-selected {
  border-color: #009cd6;
  box-shadow: 0 10px 25px rgba(0, 156, 214, 0.3);
  transform: translateY(-3px);
}
.br-page-carousel-editor .br-editor-card.is-drop-target {
  outline: 2px dashed #009cd6;
}
.br-page-carousel-editor .br-editor-card .img-wrap {
  height: 150px;
  background: #e5e7eb;
}
.br-page-carousel-editor .br-editor-card .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.br-page-carousel-editor .br-editor-card .img-wrap .img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #6b7280;
  font-size: 13px;
}
.br-page-carousel-editor .br-editor-card .card-body {
  padding: 12px 14px 14px;
}
.br-page-carousel-editor .br-editor-card .card-body .card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.br-page-carousel-editor .br-editor-card .card-body .card-year {
  font-size: 12px;
  color: #6b7280;
}
.br-page-carousel-editor .br-editor-arrows {
  position: absolute;
  right: 6px;
  bottom: -14px; /* aligné avec le front, un peu plus bas */
  display: flex;
  gap: 8px;
}
.br-page-carousel-editor .br-editor-arrows .arrow {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #4b5563;
}

/* ===================== FRONT – GRID HORIZONTAL ===================== */
.br-page-carousel.br-grid-horizontal {
  position: relative;
  padding-bottom: 40px;
}

.br-page-carousel.br-grid-horizontal .br-grid-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 16px;
  /* cacher la vraie scrollbar */
  scrollbar-width: none; /* Firefox */
}

.br-page-carousel.br-grid-horizontal .br-grid-track::-webkit-scrollbar {
  display: none; /* Chrome / Edge / Safari */
}

.br-page-carousel.br-grid-horizontal .br-grid-card {
  min-width: 320px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 1.5rem rgba(169, 202, 216, 0.078);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.br-page-carousel.br-grid-horizontal .br-grid-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.br-page-carousel.br-grid-horizontal .br-grid-card img {
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.br-page-carousel.br-grid-horizontal .br-grid-card .content {
  padding: 18px 20px 20px;
}
.br-page-carousel.br-grid-horizontal .br-grid-card .content h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
}
.br-page-carousel.br-grid-horizontal .br-grid-card .content p {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}
.br-page-carousel.br-grid-horizontal .br-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 1.5rem rgba(31, 167, 217, 0.2117647059);
}

/* barre de progression */
.br-page-carousel.br-grid-horizontal .br-grid-progress {
  position: absolute;
  left: 0;
  right: 120px;
  bottom: 18px;
}
.br-page-carousel.br-grid-horizontal .br-grid-progress .bar-bg {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}
.br-page-carousel.br-grid-horizontal .br-grid-progress .bar-fill {
  width: 0%;
  height: 100%;
  background: #009cd6;
  border-radius: inherit;
  transition: width 0.15s linear;
}

/* flèches front */
.br-page-carousel.br-grid-horizontal .br-grid-controls {
  position: absolute;
  right: 10px;
  bottom: 2px; /* flèches un peu plus bas */
  display: flex;
  gap: 10px;
}

.br-page-carousel.br-grid-horizontal .br-grid-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  box-shadow: 0 0 1.5rem rgba(169, 202, 216, 0.078);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #009cd6 !important;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}
.br-page-carousel.br-grid-horizontal .br-grid-arrow:hover {
  background: #e5f5fb;
  transform: translateY(-1px);
  box-shadow: 0 0 1.5rem rgba(31, 167, 217, 0.2117647059);
  border: 2px solid #009cd6;
  color: #black;
}

/* ===================== FRONT – CLASSIC CAROUSEL ===================== */
.br-page-carousel {
  position: relative;
  overflow: hidden;
}

.br-page-carousel .br-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.br-page-carousel .br-slide {
  min-width: 100%;
}
.br-page-carousel .br-slide a {
  display: block;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 1.5rem rgba(169, 202, 216, 0.078);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.br-page-carousel .br-slide a:hover {
  box-shadow: 0 0 1.5rem rgba(31, 167, 217, 0.2117647059);
  transform: translateY(-3px);
}
.br-page-carousel .br-slide img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
.br-page-carousel .br-slide .content {
  padding: 20px;
}
.br-page-carousel .br-slide .content h4 {
  font-size: 18px;
  margin: 0 0 6px;
}
.br-page-carousel .br-slide .content p {
  margin: 0;
  color: #6b7280;
}

/* flèches mode carousel classique */
.br-page-carousel .br-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  box-shadow: 0 0 1.5rem rgba(169, 202, 216, 0.078);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #4b5563;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}
.br-page-carousel .br-arrow:hover {
  background: #f3f4f6;
  transform: translate(-1px, -1px);
  box-shadow: 0 0 1.5rem rgba(31, 167, 217, 0.2117647059);
}

.br-page-carousel .br-prev {
  left: 16px;
}

.br-page-carousel .br-next {
  right: 16px;
}

/*# sourceMappingURL=style-index.css.map*/