.x-profile-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f7f9fa;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.x-profile-card:hover {
  background: #e8ebed;
}

.x-profile-icon {
  width: 48px;
  height: 48px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.x-profile-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.x-profile-info {
  flex: 1;
  min-width: 0;
}

.x-profile-name {
  font-weight: 600;
  font-size: 15px;
  color: #0f1419;
}

.x-profile-handle {
  font-size: 13px;
  color: #536471;
}

.x-profile-bio {
  font-size: 13px;
  color: #0f1419;
  margin-top: 4px;
}

.x-follow-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #000;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

.x-follow-btn:hover {
  background: #272c30;
}
