/*!***********************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/leco-hero-slideshow/style.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Plugin-wide Variables - Design Tokens
 * File: src/scss/_variables.scss
 * 
 * Usage in blocks within this plugin:
 * @import '../scss/variables';
 * 
 * Example block structure:
 * /src/
 *   ├── scss/
 *   │   └── _variables.scss (this file)
 *   ├── leco-navigation-bar/
 *   │   └── style.scss (imports: @import '../scss/variables')
 *   └── another-block/
 *       └── style.scss (imports: @import '../scss/variables')
 */
/**
* Theme Variables - Synced with theme.json
* File: assets/scss/_variables.scss
* 
* Usage in blocks:
* @import '../../../assets/scss/variables';
*/
/**
 * Hero Slideshow Block - Styles
 * File: src/style.scss
 */
.leco-hero-slideshow-block {
  position: relative;
  width: 100%;
  margin: 0;
}

.leco-hero-slideshow {
  position: relative;
  width: 100%;
}

.leco-hero-main {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.leco-hero-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.leco-hero-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
  transition: opacity 0.5s ease-in-out;
}
.leco-hero-image.is-active {
  display: block;
}

.leco-hero-arrow {
  display: none;
}
@media (min-width: 768px) {
  .leco-hero-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #FFFFFF;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    color: #000000;
  }
  .leco-hero-arrow svg {
    width: 24px;
    height: 24px;
  }
  .leco-hero-arrow:hover {
    background: #E6E6E6;
    transform: translateY(-50%) scale(1.05);
  }
  .leco-hero-arrow:active {
    transform: translateY(-50%) scale(0.95);
  }
  .leco-hero-arrow:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
  }
}
.leco-hero-arrow--prev {
  left: 1rem;
}
.leco-hero-arrow--next {
  right: 1rem;
}

.leco-hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 0;
}
@media (min-width: 768px) {
  .leco-hero-dots {
    display: none;
  }
}

.leco-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.leco-hero-dot:hover {
  background: #999;
}
.leco-hero-dot.is-active {
  background: #001117;
  transform: scale(1.25);
}

.leco-hero-thumbnails {
  display: none;
}
@media (min-width: 768px) {
  .leco-hero-thumbnails {
    display: flex;
    gap: 1rem;
    padding: 19px 0 0;
    overflow-x: auto;
    background: #fff;
    justify-content: left;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
  }
  .leco-hero-thumbnails::-webkit-scrollbar {
    height: 6px;
  }
  .leco-hero-thumbnails::-webkit-scrollbar-track {
    background: transparent;
  }
  .leco-hero-thumbnails::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }
  .leco-hero-thumbnails::-webkit-scrollbar-thumb:hover {
    background: #999;
  }
}

.leco-hero-thumbnail {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: none;
  padding: 0;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .leco-hero-thumbnail {
    width: 100px;
  }
}
@media (min-width: 1024px) {
  .leco-hero-thumbnail {
    width: 120px;
  }
}
.leco-hero-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.leco-hero-thumbnail:hover {
  border-color: #999;
  transform: scale(1.05);
}
.leco-hero-thumbnail.is-active {
  border-color: #001117;
  box-shadow: 0 0 0 2px rgba(0, 17, 23, 0.1);
}

.leco-hero-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  background: #fafafa;
  border: 2px dashed #e5e5e5;
  border-radius: 4px;
}

.leco-hero-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.leco-hero-editor {
  border-radius: 4px;
  overflow: hidden;
}
.leco-hero-editor .leco-hero-thumbnails {
  display: flex;
  border-top: 2px solid #e5e5e5;
}

.leco-hero-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  min-width: 24px;
  padding: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s ease;
  cursor: pointer;
  border: none;
}
.leco-hero-remove:hover {
  background: #c00;
}

.leco-hero-thumbnail:hover .leco-hero-remove {
  opacity: 1;
}

.leco-hero-add-more {
  flex-shrink: 0;
  aspect-ratio: 1/1;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
  border-radius: 4px;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  color: #666;
  transition: all 0.2s ease;
}
@media (min-width: 1024px) {
  .leco-hero-add-more {
    width: 120px;
  }
}
.leco-hero-add-more:hover {
  border-color: #001117;
  background: rgba(0, 17, 23, 0.05);
  color: #001117;
}
.leco-hero-add-more:focus {
  outline: 2px solid #001117;
  outline-offset: 2px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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