.shopable-image-links{
  background: var(--bg-color);
  color: var(--text-color);
  padding: 65px;
  text-align: center;
}
.shopable-image img{
  width: 100%;
  max-height: 350px;
  object-fit: contain;
}
.shopable-title{
  margin-top: 32px;
  font-family: 'Larsseit';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--text-color);
}
.shopable-links{
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
@media(max-width: 1279px){
  .shopable-image-links{
    padding: 54px;
  }
  .shopable-image img{
    max-height: 295px;
  }
  .shopable-title{
    font-size: 27px;
    line-height: 30px;
    margin-top: 26px;
  }
  .shopable-links{
    margin-top: 26px;
  }

}
@media(max-width: 767px){
  .shopable-image img{
    max-height: 204px;
  }
  .shopable-title{
    font-size: 24px;
    line-height: 28px;
  }
}