.sg-ubc-wrap{
  display: grid;
  gap: 18px;
  max-width: 380px;
}

/* La imagen de fondo va en un layer con opacidad */
.sg-ubc-card{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 92px;
  padding: 16px 18px;

  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  transform: translateY(0);
}

.sg-ubc-card::before{
  content:"";
  position:absolute;
  inset: 0;
  background-image: var(--sg-ubc-bg-image, none);
  background-size: var(--sg-ubc-img-size, cover);
  background-position: var(--sg-ubc-img-pos, right top);
  background-repeat: no-repeat;
  opacity: var(--sg-ubc-img-opacity, .22);
  pointer-events: none;
}

.sg-ubc-title{
  position: relative;
  z-index: 1;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
  letter-spacing: .2px;
  color: #07151a;
}

/* Hover suave */
.sg-ubc-card:hover{
  transform: translateY(-2px);
  transition: .18s ease;
}
