.auth-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-height: 40px;
}

.auth-area:empty {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.auth-identity {
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 260px;
}

.auth-identity img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.auth-identity strong,
.auth-identity span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-identity strong {
  max-width: 190px;
  font-size: .84rem;
  color: #fff;
}

.auth-identity span {
  max-width: 190px;
  margin-top: 2px;
  font-size: .72rem;
  color: #aeb9c8;
}

.auth-logout {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 9px;
  padding: 8px 10px;
  background: transparent;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
}

.auth-loading {
  font-size: .78rem;
  color: #b9c3d0;
}

.bank-card.paid-access {
  background: #fff;
  border-color: #c6a767;
}

@media (max-width: 720px) {
  .header-inner {
    align-items: flex-start;
    padding: 12px 0;
  }

  .header-actions {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 7px;
  }

  .auth-identity span {
    display: none;
  }

  .auth-identity strong {
    max-width: 120px;
  }
}
