/**
 * wc-hero-benefit.css
 * SDC component styles for the hero benefit descriptor items.
 * Drupal auto-attaches this when the component is rendered.
 */

/* ── Benefits row wrapper (rendered in the parent hero template) ── */
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-lg);
  margin-top: var(--sp-lg);
  padding-top: var(--sp-md);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── Individual benefit item ── */
.hero-benefit {
  text-align: center;
  max-width: 200px;
}

/* Icon circle */
.hero-benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--sp-xs);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Label */
.hero-benefit-label {
  font-size: var(--t-small);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

/* Description */
.hero-benefit-desc {
  font-size: var(--t-micro);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .hero-benefits {
    gap: var(--sp-md);
  }

  .hero-benefit {
    max-width: 160px;
  }
}
