/* === HERO — Frontend ===
   Reutiliza las clases internas de slide del hero-slider
   (slowcadiz-hero-slider__slide, __overlay, __content, __flex)
   que están definidas en blocks/hero-slider/style.css
*/

.slowcadiz-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  background: #1f2a37;
}

.slowcadiz-hero .slowcadiz-hero-slider__slide {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 768px) {
  .slowcadiz-hero {
    height: 100vh;
    max-height: 100dvh;
  }
}


.slowcadiz-hero.box-silver .slowcadiz-hero-slider__content {
    background: #c9ccd1c4;
    box-shadow: 10px 10px 18px #00000052;
}

.slowcadiz-hero.box-gold .slowcadiz-hero-slider__content {
    background: #c9b39ac2;
    box-shadow: 10px 10px 18px #00000052;
}

.slowcadiz-hero.right .slowcadiz-hero-slider__content {
    width: 30vw;
    margin-right: calc(50vw - 600px);
}

.slowcadiz-hero.left .slowcadiz-hero-slider__content {
  width: 30vw;
  margin-left: calc(50vw - 600px);
}




.slowcadiz-hero.box-silver h2.hero-title {
    font-size: 2.8rem;
    line-height: 2.5rem;
}

.slowcadiz-hero.box-gold h2.hero-title {
    font-size: 2.8rem;
    line-height: 2.5rem;
    color: #c9ccd1;
}

.slowcadiz-hero.box-gold p.hero-subtitle,
.slowcadiz-hero.box-silver p.hero-subtitle {
    color: #222;
    font-weight: 600;
    font-size: 1.1rem;
}



.slowcadiz-hero.box-gold .slowcadiz-hero-iflex-text,
.slowcadiz-hero.box-silver .slowcadiz-hero-iflex-text {
    color: #222;
    font-size: 1.1rem;
}

.slowcadiz-hero-slider__flexitem {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slowcadiz-hero.box-regular a:before {
    content: "";
    width: 100%;
    height: 2px;
    background: linear-gradient(180deg, #000000, #00000029);
    position: absolute;
    bottom: 0;
    top: initial;
    left: 0;
    border-radius: 1px;
}

.slowcadiz-hero.box-regular a:after {
  display: none;
}

.slowcadiz-hero.box-regular a:hover {
  background: none;
  color: #000;
}

.slowcadiz-hero.box-regular a:hover:before {
    height: 10px;
    top: auto;
    left: 0;
    width: 100%;
    bottom: -8px;
    border-radius: 4px;
}

.slowcadiz-hero.box-regular .slowcadiz-cta {
    margin-top: 0px !important;
}

.slowcadiz-hero.box-regular a {
    background: none;
    box-shadow: none;
    color: #000;
    padding: 0;
    font-weight: 600;
    overflow: visible;
}