/* Styles for advantage-card.hbs — one feature card.
   Ported from the legacy `HomeAdvantageCard.vue`. */

/* `width: 100%` on three row siblings is deliberate: they shrink equally, which
   is what splits the row into thirds without a grid or a hard-coded basis. */
.advantage-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background-color: var(--gray-0);
}

/* `--black` rather than `--gray-900`: the disc keeps its cream fill in dark mode
   (`--low-identity` has no dark value), so a glyph that flips to white would
   vanish. `--black` is the legacy colour and is stable across both themes. */
.advantage-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: var(--low-identity);
  color: var(--black);
}

.advantage-card-title {
  margin-top: 12px;
  margin-bottom: 4px;
  color: var(--gray-900);
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

.advantage-card-text {
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
