/**
 * Hub — premium identity strip + feed scope (Community / Vänner)
 */
.tw-hub-you-strip {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid var(--border, #2a2a2a);
  background: var(--surface-2, #1a1a1a);
  box-sizing: border-box;
}

.tw-hub-you-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.tw-hub-you-avatar {
  width: 48px;
  height: 48px;
  border-radius: 0;
  object-fit: cover;
  border: 1px solid var(--border, #333);
  flex-shrink: 0;
}

.tw-hub-you-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.tw-hub-you-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted, #888);
}

.tw-hub-you-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary, #fff);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tw-hub-you-meta {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary, #bbb);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tw-hub-you-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}

.tw-hub-you-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-primary, #fff);
  border: 1px solid var(--border, #333);
  background: var(--surface-1, #121212);
  border-radius: 0;
  white-space: nowrap;
}

.tw-hub-you-btn:hover {
  border-color: var(--primary, #2796f2);
  color: var(--primary, #2796f2);
}

.tw-hub-you-btn--primary {
  border-color: rgba(39, 150, 242, 0.55);
  background: rgba(39, 150, 242, 0.12);
}

.tw-hub-feed-scope {
  display: flex;
  gap: 0;
  margin-bottom: 14px;
  border: 1px solid var(--border, #2a2a2a);
  background: var(--surface-1, #121212);
}

.tw-hub-feed-scope a {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted, #888);
  border-right: 1px solid var(--border, #2a2a2a);
}

.tw-hub-feed-scope a:last-child {
  border-right: 0;
}

.tw-hub-feed-scope a.is-active {
  color: var(--text-primary, #fff);
  box-shadow: inset 0 -3px 0 0 var(--primary, #2796f2);
}

@media (max-width: 520px) {
  .tw-hub-you-strip {
    flex-direction: column;
    align-items: stretch;
  }
  .tw-hub-you-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
