/* Czech Royal Hunt — Shared portal components (provider + marketplace) */

.crh-eyebrow {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold-soft);
  margin: 0 0 .5rem;
}

.crh-empty {
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(237, 230, 214, .07);
  background: rgba(14, 20, 15, .5);
}
.crh-empty__bg {
  position: absolute;
  inset: 0;
  opacity: .14;
}
.crh-empty__bg img { width: 100%; height: 100%; object-fit: cover; }
.crh-empty__inner { position: relative; z-index: 1; max-width: 420px; margin: 0 auto; }
.crh-empty__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--ivory);
  margin: 0 0 .65rem;
  font-weight: 500;
}
.crh-empty__text {
  color: var(--stone);
  font-size: .88rem;
  margin: 0 0 1.5rem;
  line-height: 1.65;
}

.crh-dossier-frame {
  background: #0b0f0c;
  border: 1px solid rgba(237, 230, 214, .08);
  overflow: hidden;
}
.crh-dossier-frame .container { max-width: 100%; padding-left: clamp(1rem, 3vw, 2.5rem); padding-right: clamp(1rem, 3vw, 2.5rem); }
.crh-dossier-hero { margin-top: 0 !important; padding-top: 0 !important; min-height: min(55vh, 520px) !important; }
.crh-dossier-hero__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #1a2820, #0e140f); min-height: 320px; }
.crh-dossier-lead { max-width: 52ch; margin-top: .75rem; color: rgba(244, 239, 229, .82); }
.crh-dossier-body { padding: clamp(2rem, 4vw, 3rem) 0 !important; }
.crh-dossier-narrative { margin-top: 1rem; font-size: .92rem; line-height: 1.85; color: rgba(255, 255, 255, .72); }
.crh-dossier-spacer { display: block; margin-top: 2rem; }
.crh-dossier-spacer-sm { display: block; margin-top: 1.5rem; }
.crh-dossier-list { margin: 1rem 0 0; padding-left: 1.1rem; color: rgba(255, 255, 255, .68); font-size: .88rem; line-height: 1.8; }
.crh-dossier-list--cols { columns: 2; gap: 1.5rem; }
.crh-dossier-estate { font-family: var(--font-display); font-size: 1.25rem; color: #f4efe5; margin: .5rem 0 0; }
.crh-dossier-estate-meta { font-size: .78rem; color: #9a958a; margin-top: .25rem; }

@media (max-width: 768px) {
  .crh-dossier-list--cols { columns: 1; }
  .crh-dossier-hero { min-height: 360px !important; }
}

/* Flash messages — visible without JS; hidden when toast enhancement runs */
.ops-flash--toast-source {
  margin: 0 1.25rem 1rem;
}
html.js .ops-flash--toast-source {
  display: none;
}

/* Toast notifications (provider + marketplace) */
.prv-toast-stack {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  pointer-events: none;
}
.prv-toast {
  padding: .85rem 1.15rem;
  font-size: .82rem;
  border: 1px solid;
  background: rgba(14, 20, 15, .95);
  backdrop-filter: blur(8px);
  animation: prvToastIn .35s ease;
  pointer-events: auto;
}
.prv-toast--ok { border-color: rgba(124, 154, 106, .45); color: #a8c49a; }
.prv-toast--err { border-color: rgba(196, 122, 106, .45); color: #d4a09a; }
@keyframes prvToastIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Google OAuth — hunter & provider auth */
.oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  width: 100%;
  padding: .72rem 1rem;
  border: 1px solid rgba(237, 230, 214, .14);
  background: rgba(255, 255, 255, .04);
  color: rgba(244, 239, 229, .92);
  font: inherit;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.oauth-btn:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(224, 192, 131, .35);
  color: #f4efe5;
}
.oauth-btn__icon {
  flex-shrink: 0;
}
.oauth-divider {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin: 1.1rem 0;
  color: rgba(154, 149, 138, .85);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.oauth-divider::before,
.oauth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(237, 230, 214, .1);
}

/* Keyboard focus */
a:focus-visible,
button:focus-visible,
[role="tab"]:focus-visible,
[role="tablist"] button:focus-visible {
  outline: 2px solid var(--gold-soft, #c4a574);
  outline-offset: 2px;
}
