
/* Profile Highlights Component */
.highlight-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(99, 102, 241, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  background: rgba(124, 58, 237, 0.12);
  color: rgb(79, 70, 229);
}

.highlight-content dt {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(100, 116, 139, 0.9);
}

.highlight-content dd {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 1);
  word-break: break-word;
}

.highlight-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgb(79, 70, 229);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.highlight-link:hover {
  color: rgba(79, 70, 229, 0.8);
  transform: translateX(2px);
}

@media (max-width: 640px) {
  .highlight-tile {
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
  }
  .highlight-icon {
    width: 2.4rem;
    height: 2.4rem;
  }
}

