/* ==========================================================================
   SectionCompareBenefits.css
   Shortcode: [SectionCompareBenefits]
   Clases encapsuladas: srCB__
   ✅ 100vw real (sin romper layout del theme)
   ✅ Rayo con PNG
   ✅ Sin font-family
   ========================================================================== */

.srCB {
  background: #ffffff;

  /* ✅ Full width real */
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);

  /* ✅ Evita scroll lateral por 100vw + scrollbar */
  overflow-x: hidden;

  padding: 55px 0 42px;
  max-width: none;
}

.srCB__container {
  width: 90%;
  margin: 0 auto;
}

/* =========================
   TITLE
   ========================= */

.srCB__title {
  margin: 0 0 28px;
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: #1f2937;
  letter-spacing: -0.02em;
}

.srCB__highlight {
  color: var(--color3);
  font-weight: 900;
}

/* =========================
   GRID ITEMS
   ========================= */

.srCB__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.srCB__item {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* ✅ Rayo en PNG */
.srCB__boltIcon {
  width: 50px;
  height: 50px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  transform: translateY(1px);
}

.srCB__text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color3);
  letter-spacing: -0.01em;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px) {
  .srCB__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }

  .srCB__text {
    font-size: 1.2rem;
  }
}

@media (max-width: 520px) {
  .srCB__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .srCB__text {
    font-size: 1.15rem;
  }
}
