/* Organization-select page only — dropdown, org rows, and contact hint.
   Loaded alongside auth-shell.css (which provides the shared shell). auth-* prefix. */

/* Dropdown */
.auth-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  box-shadow: 0 16px 38px color-mix(in srgb, var(--ink) 16%, transparent);
  overflow: hidden;
  padding: 0.375rem;
  display: none;
}

.auth-dropdown--open { display: block; }

.auth-dropdown-label {
  padding: 0.5rem 0.75rem 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  line-height: 1;
}

.auth-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background .12s;
}

.auth-dropdown-item:hover { background: var(--surface-sunken); }

.auth-org-avatar {
  width: 2.125rem;
  height: 2.125rem;
  flex: none;
  border-radius: 0.5625rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
}

.auth-org-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  min-width: 0;
}

.auth-org-name {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-strong);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auth-org-domain {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  color: var(--text-subtle);
}

/* Contact hint */
.auth-contact-hint {
  margin: 1.375rem 0 0;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-subtle);
}

.auth-contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.auth-contact-link:hover { text-decoration: underline; }
