/* apply the same bump to the Premium label span */
.ll-premium-features .ll-premium-intro label span { 
  font-size: 1.15em; 
  font-weight: 600; 
  line-height: 1.25; 
}

.ll-gbp-addon-text { 
  font-size: 1.15em; 
  font-weight: 600; 
  line-height: 1.25; 
}

/* two columns on wide screens */
.two-column-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem; /* row-gap col-gap */
  margin: 0;
  padding-left: 1.2em;   /* space for bullets */
  list-style: disc;      /* restore bullets */
}

/* collapse to one column on narrow screens */
@media (max-width: 600px) {
  .two-column-list ul {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────────────────────
   Shared base for Premium/GBP blocks (modal + shortcode)
   (OceanWP often sets html font-size ~62.5%, so 1.6rem ~ 16px)
   ────────────────────────────────────────────────────────── */
.ll-premium-features {
  font-size: 1.6rem;
  line-height: 1.6;
}

/* UL reset (kill theme columns/grids that might leak in) */
.ll-premium-features .ll-premium-checklist {
  column-count: 1 !important;
  display: block !important;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* LI layout: icon + text */
.ll-premium-features .ll-premium-checklist li {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75em;             /* scales with local base */
  margin: 0 0 1em 0;       /* scales with local base */
  font-size: 1em;          /* = 16px via .ll-premium-features */
  line-height: 1.5;
}

/* Checkmark icon: green circle + ✓ */
.ll-premium-features .ll-premium-icon {
  width: 1.75em;                   /* keeps text neatly aligned */
  height: 1.75em;
  border-radius: 999px;
  background: #16a34a;             /* green circle */
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1em;                  /* glyph size */
  font-weight: 900;
  line-height: 1;
  text-align: center;
  margin-top: 0.15em;              /* visual baseline alignment */
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.15);
}
.ll-premium-features .ll-premium-icon::before {
  content: "✓";
}

/* Copy wrapper: takes remaining width */
.ll-premium-features .ll-premium-copy { flex: 1; }

/* Keep title + description inline so they wrap together */
.ll-premium-features .ll-premium-title { font-weight: 600; display: inline; }
.ll-premium-features .ll-premium-desc  { display: inline; }

