/* ===== CMS PILL BUTTON (SAFE GLOBAL) ===== */

/* prende SOLO i bottoni dentro le card CMS */
[data-cms-card] a.btn{
  border-radius: 999px !important;
  padding: .09rem .65rem !important;
  font-weight: 600 !important;

  text-decoration: none !important;
  transition: all .25s ease !important;
}

/* hover */
[data-cms-card] a.btn:hover{
  text-decoration: none !important;
}

/* forza il colore anche sul testo interno */
[data-cms-card] a.btn *,
[data-cms-card] a.btn span{
  color: inherit !important;
}

/* ===== HERO SPLIT ===== */

.cms-hero-split{
  position: relative;
}

/* altezze */
.hero-h-md{ padding: 4rem 0; }
.hero-h-lg{ padding: 6rem 0; }
.hero-h-screen{ min-height: 100vh; display: flex; }

/* contenuti */
.cms-hero-eyebrow{
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .7;
}

.cms-hero-title{
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
}

.cms-hero-text{
  font-size: 1.05rem;
  line-height: 1.6;
}

/* immagine */
.cms-hero-img img{
  border-radius: 12px;
  object-fit: cover;
}