/* ======================================
   Adicto.Bike – Premium content block
   ====================================== */

/* ===== BASE ===== */
.ab-premium {
  font-size: 18px;
  line-height: 1.75;
  opacity: .96;
}

/* ===== HEADINGS ===== */
.ab-premium h1 {
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.ab-premium h2 {
  margin: 26px 0 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* ===== TEXT ===== */
.ab-premium p {
  margin: 14px 0;
}

/* ======================================================
   REMOVE GREY VERTICAL LINES (WAREHOUSE THEME FIX)
   ====================================================== */

/* 1) borders on UL / OL */
.ab-premium ul,
.ab-premium ol,
.ab-premium .rte ul,
.ab-premium .rte ol,
.ab-premium .rte-content ul,
.ab-premium .rte-content ol {
  border-left: none !important;
  padding-left: 0 !important;
  background: none !important;
}

/* 2) pseudo-elements on UL / OL */
.ab-premium ul::before,
.ab-premium ol::before,
.ab-premium .rte ul::before,
.ab-premium .rte ol::before,
.ab-premium .rte-content ul::before,
.ab-premium .rte-content ol::before {
  content: none !important;
  display: none !important;
}

/* 3) pseudo-elements on LI */
.ab-premium li::before,
.ab-premium .rte li::before,
.ab-premium .rte-content li::before {
  content: none !important;
  display: none !important;
}

/* 4) normalize list spacing */
.ab-premium ul,
.ab-premium ol {
  list-style: disc;
  margin: 14px 0 18px;
}

.ab-premium li {
  margin-left: 18px;
  margin-bottom: 8px;
  padding-left: 0 !important;
}

/* ===== LINKS ===== */
.ab-premium a {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  opacity: .92;
}

.ab-premium a:hover {
  opacity: 1;
}

/* ===== EMPHASIS ===== */
.ab-premium strong {
  font-weight: 600;
}

/* ===== DARK MODE SAFETY ===== */
@media (prefers-color-scheme: dark) {
  .ab-premium a {
    border-bottom-color: rgba(255,255,255,.5);
  }
}
/* === FINAL FIX: remove grey vertical line on Warehouse lists === */

.ab-premium__list {
  border-left: none !important;
  padding-left: 0 !important;
  background: none !important;
}

.ab-premium__list::before {
  content: none !important;
  display: none !important;
}

.ab-premium__list li::before {
  content: none !important;
  display: none !important;
}

