:root {
  --follow-bg: #fff8ef;
  --follow-card: #fffdf9;
  --follow-text: #1e2a25;
  --follow-muted: #737b75;
  --follow-green: #0b9470;
  --follow-line: rgba(58, 55, 48, 0.12);
}

.follow-list-shell {
  min-height: 100vh;
  color: var(--follow-text);
  background: linear-gradient(180deg, #fff8ef 0%, #f7efe5 100%);
}

.follow-list-header {
  position:-webkit-sticky;position:sticky;
  top: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 10px 14px;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid var(--follow-line);
  -webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);
}

.follow-list-back {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #23342f;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.follow-list-back .ui-icon {
  width: 16px;
  height: 16px;
}

.follow-list-title {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.follow-list-title strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
  font-weight: 850;
}

.follow-list-title span {
  color: var(--follow-muted);
  font-size: 11px;
  font-weight: 700;
}

.follow-list-tabs {
  position:-webkit-sticky;position:sticky;
  top: 52px;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 253, 249, 0.98);
  border-bottom: 1px solid var(--follow-line);
}

.follow-list-tabs a {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #5a635d;
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
}

.follow-list-tabs a.active {
  color: var(--follow-green);
  font-weight: 900;
}

.follow-list-tabs a.active::after {
  content: '';
  position: absolute;
  left: 34%;
  right: 34%;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--follow-green);
}

.follow-list-tabs em {
  color: #b58a3f;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}

.follow-list-main {
  padding: 12px 12px 110px;
}

.follow-list-status {
  margin: 0 2px 10px;
  color: var(--follow-muted);
  font-size: 12px;
  font-weight: 700;
}

.follow-list {
  display: grid;
  gap: 10px;
}

.follow-list-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  background: var(--follow-card);
  border: 1px solid rgba(230, 218, 202, 0.88);
  box-shadow: 0 8px 16px rgba(58, 46, 28, 0.06);
}

.follow-list-avatar {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  background: #efe6d8;
  text-decoration: none;
}

.follow-list-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.follow-list-copy {
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.follow-list-copy strong {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 850;
}

.follow-list-copy span {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--follow-muted);
  font-size: 11px;
  font-weight: 650;
}

.follow-list-action {
  min-width: 72px;
  height: 32px;
  padding: 0 12px;
  border-radius: 13px;
  border: 1px solid var(--follow-green);
  background: var(--follow-green);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.follow-list-action.is-following {
  color: #4e564f;
  background: rgba(255, 253, 249, 0.95);
  border-color: #ded4c5;
}

.follow-list-action:disabled {
  opacity: 0.65;
  cursor: wait;
}

.follow-list-empty {
  margin: 28px 4px 0;
  padding: 28px 16px;
  text-align: center;
  color: var(--follow-muted);
  font-size: 13px;
  line-height: 1.55;
  border: 1px dashed rgba(58, 55, 48, 0.18);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.9);
}

.follow-list-more {
  width: 100%;
  margin-top: 12px;
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid #ded4c5;
  background: rgba(255, 253, 249, 0.95);
  color: #4e564f;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.follow-list-back:focus-visible,
.follow-list-tabs a:focus-visible,
.follow-list-action:focus-visible,
.follow-list-more:focus-visible,
.follow-list-avatar:focus-visible,
.follow-list-copy:focus-visible {
  outline: 3px solid rgba(7, 136, 102, 0.28);
  outline-offset: 2px;
}
