/* ==========================================================================
   Areas — use-case icon cards
   ========================================================================== */

.areas { background: var(--surface); }
.areas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.area-card {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.area-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; margin-bottom: 18px;
  border-radius: 16px; background: var(--red-soft);
}
.area-card__icon img { width: 34px; height: 34px; }
.area-card__title { font-size: 18px; margin-bottom: 8px; }
.area-card__text { font-size: 14px; line-height: 1.6; color: var(--text-mute); }
