.feature-hub-hero {
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(34, 211, 238, 0.2), transparent 50%),
    radial-gradient(120% 120% at 100% 0%, rgba(59, 130, 246, 0.24), transparent 58%),
    linear-gradient(145deg, #0f172a, #0b1222);
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}

.feature-hub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 22%, transparent 75%, rgba(255, 255, 255, 0.05));
  pointer-events: none;
}

.feature-hub-card {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.78));
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  overflow: hidden;
}

.feature-hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.8);
  box-shadow: 0 14px 30px rgba(8, 47, 73, 0.45);
}

.feature-hub-tag {
  display: inline-flex;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.45);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #a5f3fc;
}

.feature-hub-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-hub-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.feature-hub-card-content {
  min-width: 0;
}

@media (max-width: 640px) {
  .feature-hub-icon {
    width: 52px;
    height: 52px;
  }
}
