.jh-sucursales{
  width:100%;
  background:#120a0b;
  color:#fff;
  padding:28px 18px;
  box-sizing:border-box;
}

.jh-sucursales__inner{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:110px minmax(0,1fr);
  gap:26px;
  align-items:center;
}

.jh-sucursales__icon{
  width:90px;
  justify-self:center;
}

.jh-sucursales__icon svg{
  display:block;
  width:100%;
  height:auto;
}

.jh-sucursales__viewport{
  min-width:0;
}

.jh-sucursales__track{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  gap:28px 42px;
}

.jh-sucursales__item{
  min-width:170px;
  flex:0 1 auto;
  text-align:center;
}

.jh-sucursales__title,
.jh-sucursales__address,
.jh-sucursales__phone{
  margin:0;
  text-transform:uppercase;
  line-height:1;
}

@font-face{
  font-family:"JH Knockout Title";
  src: local("KNOCKOUT HTF94-ULTMTSUMO REGULAR"),
       local("KNOCKOUT HTF94-ULTMTSUMO"),
       local("Knockout HTF94-ULTMTSUMO Regular"),
       local("Knockout HTF94-ULTMTSUMO");
  font-display:swap;
}

.jh-sucursales__title{
  color:#fff;
  font-family:"JH Knockout Title","Arial Black",Arial,sans-serif;
  font-size:clamp(26px,2.3vw,36px);
  font-weight:400;
  letter-spacing:-0.03em;
  margin-bottom:6px;
}

.jh-sucursales__address,
.jh-sucursales__phone,
.jh-sucursales__phone a{
  color:#f1b728;
  font-family:Arial, Helvetica, sans-serif;
  text-decoration:none;
  font-size:clamp(16px,1.2vw,18px);
  font-weight:700;
}

.jh-sucursales__address{
  margin-bottom:4px;
}

@media (max-width: 900px){
  .jh-sucursales{
    padding:22px 16px;
  }

  .jh-sucursales__inner{
    grid-template-columns:1fr;
    gap:14px;
  }

  .jh-sucursales__icon{
    width:72px;
    margin:0 auto 2px;
  }

  .jh-sucursales__viewport{
    overflow:hidden;
    width:100%;
    position:relative;
  }

  .jh-sucursales__track{
    display:block;
    position:relative;
    width:100%;
  }

  .jh-sucursales__item{
    min-width:100%;
    width:100%;
    box-sizing:border-box;
    padding:0 8px;
    position:absolute;
    inset:0;
    opacity:0;
    transform:translateY(10px) scale(.985);
    transition:opacity .7s ease, transform .7s ease;
    pointer-events:none;
  }

  .jh-sucursales__item.is-active{
    opacity:1;
    transform:translateY(0) scale(1);
    pointer-events:auto;
    position:relative;
  }

  .jh-sucursales__title{
    font-size:clamp(28px,8vw,40px);
  }

  .jh-sucursales__address,
  .jh-sucursales__phone,
  .jh-sucursales__phone a{
    font-size:clamp(16px,4.2vw,21px);
  }
}
