.friends-section {
  margin-bottom: 1rem;
}

.friends-group-title {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s ease;
}

.friends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  padding: 1rem 0 2rem;
}

.friend-card {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.2s ease;
  text-decoration: none;
}

.friend-card:hover {
  border-color: var(--mid);
}

.friend-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.friend-desc {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.5;
}
