/*
  CUBE — People page: full builder list
  Shown by default (no search query) — one row per builder,
  photo + full name + tagline/department/year, glass style.
*/

.people-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.person-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.person-row:hover {
  background: rgba(227, 17, 54, 0.12);
  border-color: rgba(227, 17, 54, 0.3);
  transform: translateX(4px);
}

.person-row img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.person-row-info {
  flex: 1;
  min-width: 0;
}

.person-row-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #f2e9e9;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.person-row-info h3 i {
  color: #7ee0ff;
  font-size: 13px;
}

.person-row-info p {
  font-size: 12.5px;
  color: rgba(242, 233, 233, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.person-row-stats {
  flex-shrink: 0;
  font-size: 12.5px;
  color: rgba(242, 233, 233, 0.55);
  display: none;
}

.person-row-arrow {
  flex-shrink: 0;
  color: rgba(242, 233, 233, 0.35);
  font-size: 13px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.person-row:hover .person-row-arrow {
  color: #e31136;
  transform: translateX(3px);
}

@media (min-width: 640px) {
  .person-row-stats {
    display: block;
  }
}

/* ================================================
   TOP NAVBAR — remove opaque box, keep avatar in place
   ================================================ */
.top-navbar,
.top-navbar .navbar-right,
.top-navbar .navbar-right * {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
}

.top-navbar .navbar-avatar img {
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  border-radius: 50%;
}
