/* Friends: discovery first, compact people grid second. */
.friends-shell { width: min(100%, 1180px); }
.friends-shell__head { margin-bottom: 24px; }
.friends-shell__head h1 { font-size: clamp(30px, 3.5vw, 42px); }
.friends-shell__head p { margin-top: 9px; font-size: 15px; line-height: 1.5; }

.friends-discover,
.friends-list-panel {
  border: 1px solid #dbe3ed;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(10, 27, 52, .045);
}
.friends-discover { padding: 26px 28px; }
.friends-discover__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}
.friends-discover__head h2,
.friends-list-panel__head h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-d);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.friends-discover__head p,
.friends-list-panel__head p { margin: 6px 0 0; color: var(--slate); font-size: 12px; line-height: 1.5; }
.friends-discover .social-add-friends {
  flex-shrink: 0;
  align-self: center;
  min-height: 44px;
  margin: 0;
  border-radius: 9px;
  font-size: 12px;
}
.friends-discover .social-add-friends svg { width: 17px; height: 17px; }
.friends-discover .friends-search { padding: 0; border: 0; border-radius: 0; box-shadow: none; }
.friends-discover .friends-search > label { margin-bottom: 9px; font-size: 12px; }
.friends-discover .friends-search__field { min-height: 54px; border-radius: 9px; }
.friends-discover .friends-search__field button { min-height: 42px; border-radius: 7px; font-size: 12px; }
.friends-discover .friends-search > p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 600;
}
.friends-discover .friends-search > p svg { width: 14px; height: 14px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; }
.friends-discover .friends-search-results { margin-top: 22px; border-radius: 11px; }

.friends-list-panel { margin-top: 24px; padding: 26px 28px 28px; overflow: visible; }
.friends-list-panel__head { padding: 0; border: 0; }
.friends-list-panel .friends-tabs {
  display: flex;
  gap: 24px;
  margin: 22px 0 0;
  border-bottom: 1px solid #e3e9f1;
}
.friends-list-panel .friends-tab {
  position: relative;
  min-height: 46px;
  padding: 0 2px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--slate);
  font-size: 12px;
  font-weight: 750;
}
.friends-list-panel .friends-tab:hover,
.friends-list-panel .friends-tab.is-active { background: transparent; color: var(--navy); }
.friends-list-panel .friends-tab.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: #386caa;
  content: '';
}
.friends-list-panel .friends-tab b {
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 6px;
  background: #eef2f7;
  color: var(--slate);
  font-size: 10px;
}
.friends-list-panel .friends-tab.is-active b { background: #e9f1fb; color: var(--navy); }
.friends-list-panel .friends-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  padding-top: 20px;
}
.friends-list-panel .friend-card,
.friends-search-results .friend-card {
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  min-width: 0;
  min-height: 102px;
  padding: 14px;
  border: 1px solid #e3e9f1;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(10, 27, 52, .025);
}
.friends-list-panel .friend-card:last-child,
.friends-search-results .friend-card:last-child { border-bottom: 1px solid #e3e9f1; }
.friends-list-panel .friend-card__avatar,
.friends-search-results .friend-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  font-size: 26px;
}
.friends-list-panel .friend-card__identity strong,
.friends-search-results .friend-card__identity strong { font-size: 15px; line-height: 1.35; }
.friends-list-panel .friend-card__identity p,
.friends-search-results .friend-card__identity p { font-size: 11px; }
.friends-list-panel .friend-social-actions { gap: 4px; }
.friends-list-panel .friend-social-actions > .friend-action {
  min-height: 38px;
  padding: 8px 11px;
  border-color: #d8e3ef;
  border-radius: 8px;
  background: #f5f8fc;
  color: var(--navy);
  font-size: 11px;
}
.friends-list-panel .friend-social-actions > .friend-action:hover { background: #e9f1fa; }
.friends-list-panel .friend-more > summary { border-radius: 8px; }
.friends-list-panel .friends-empty { grid-column: 1 / -1; }
.friends-list-panel .friend-card:not(:has(.friend-social-actions)) .friend-card__actions { flex-wrap: wrap; }
.friends-list-panel .friend-card:not(:has(.friend-social-actions)) .friend-action { min-height: 38px; }

@media (max-width: 960px) {
  .friends-list-panel .friends-list { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 760px) {
  .friends-shell__head { margin-bottom: 18px; }
  .friends-shell__head p { font-size: 13px; }
  .friends-discover,
  .friends-list-panel { padding: 19px 16px; border-radius: 13px; }
  .friends-discover__head { display: block; margin-bottom: 20px; }
  .friends-discover__head h2,
  .friends-list-panel__head h2 { font-size: 20px; }
  .friends-discover .social-add-friends { width: 100%; margin-top: 16px; }
  .friends-discover .friends-search__field { grid-template-columns: 20px minmax(0, 1fr); }
  .friends-discover .friends-search__field button { grid-column: 1 / -1; width: 100%; }
  .friends-list-panel { margin-top: 16px; }
  .friends-list-panel .friends-tabs {
    gap: 20px;
    margin: 18px -16px 0;
    padding: 0 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .friends-list-panel .friends-tab { min-width: 0; flex: 0 0 auto; font-size: 11px; }
  .friends-list-panel .friends-list { gap: 10px; padding-top: 16px; }
  .friends-list-panel .friend-card,
  .friends-search-results .friend-card {
    grid-template-columns: 58px minmax(0, 1fr) 42px;
    gap: 10px;
    min-height: 86px;
    padding: 11px;
  }
  .friends-list-panel .friend-card__avatar,
  .friends-search-results .friend-card__avatar { width: 58px; height: 58px; font-size: 21px; }
  .friends-list-panel .friend-card__identity strong,
  .friends-search-results .friend-card__identity strong { font-size: 13px; }
  .friends-list-panel .friend-social-actions { display: contents; }
  .friends-list-panel .friend-social-actions > .friend-action {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    width: auto;
    max-width: 100%;
  }
  .friends-list-panel .friend-more { grid-column: 3; grid-row: 1; }
  .friends-list-panel .friend-more > summary { width: 42px; height: 42px; }
  .friends-list-panel .friend-more__menu { top: 42px; bottom: auto; }
  .friends-list-panel .friend-card:not(:has(.friend-social-actions)) .friend-card__actions { grid-column: 1 / -1; }
}
