@charset "UTF-8";
/* Container Setup — scoped to the block so these don't leak onto every
   .gb-block-container site-wide (a bare `.gb-block-container { overflow:
   hidden }` clips the theme's full-bleed background pseudo on unrelated
   Genesis containers). */
.wp-block-feature-slide.gb-block-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-left: 0;
  margin-right: 0;
}
.wp-block-feature-slide.gb-block-container .gb-container-inside {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track: hold all slides side-by-side */
.feature-slide-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

/* Each slide: full viewport width */
.feature-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 500px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: white;
  box-sizing: border-box;
  flex-shrink: 0;
  border-radius: 6px;
  /* Dark overlay – only when .has-overlay is present */
}
.feature-slide.has-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 6px;
}
.feature-slide-content {
  /* Content inside slide */
  position: relative;
  padding-inline: var(--wdg-gap-xsmall);
  z-index: 2;
  max-width: 650px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  display: flex;
  gap: var(--wdg-gap-xsmall);
  height: inherit;
  justify-content: center;
}
.feature-slide-content h2 {
  font-size: var(--wdg-font-size-h3);
  margin-bottom: 10px;
  color: var(--wdg-color-white);
}
.feature-slide-content p {
  font-size: var(--wdg-font-size-default);
  margin: 0;
  color: var(--wdg-color-white);
}
.feature-slide-content .wp-block-button__link:hover svg, .feature-slide-content .wp-block-button__link:focus svg {
  color: var(--wdg-color-white);
}
.feature-slide-content .wp-block-button svg use {
  fill: transparent;
}
.feature-slide-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 47.9375em) {
  .feature-slide-controls {
    flex-direction: column;
    margin-top: var(--wdg-gap-xsmall);
  }
}
.feature-slide-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  gap: var(--wdg-gap-xsmall);
}
@media (min-width: 48em) {
  .feature-slide-nav {
    position: absolute;
    top: 50%;
    left: var(--wdg-gap-large);
    right: var(--wdg-gap-large);
    transform: translateY(-50%);
    z-index: 10;
  }
}
.feature-slide-button {
  background: var(--wdg-color-secondary);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  align-items: center;
  border: none;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  padding: 0;
  pointer-events: auto;
  position: relative;
  z-index: 11;
}
.feature-slide-button svg use {
  fill: transparent;
}
@media (max-width: 47.9375em) {
  .feature-slide-button {
    width: 55px;
    height: 55px;
  }
}
.feature-slide-button:hover, .feature-slide-button:focus {
  background: var(--wdg-color-primary);
  color: var(--wdg-color-white);
}
.feature-slide-button:hover svg path, .feature-slide-button:focus svg path {
  stroke: var(--wdg-color-white);
}
.feature-slide-button:disabled {
  opacity: 0.6;
}
.feature-slide-prev svg {
  transform: rotate(180deg);
  color: white;
}
.feature-slide-next svg {
  color: white;
}
.feature-slide-pagination {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--wdg-gap-xsmall);
}
@media (max-width: 47.9375em) {
  .feature-slide-pagination {
    display: flex;
  }
}
.feature-slide-pagination .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--wdg-color-secondary);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}
.feature-slide-pagination .dot.active {
  background-color: var(--wdg-color-primary, #0032a0);
  width: 25px;
  height: 10px;
  border-radius: 5px;
}
/*# sourceMappingURL=feature-slide.css.map */
