/* =========================================================
   NuestroSí — Brand component
   Single source of truth for the product wordmark + isotype.
   Isotype assets: public/assets/img/logos/logo-mark*.svg
   Markup (canonical):
     <a class="ns-brand" href="{ROOT}{LANG}/home" aria-label="NuestroSí">
       <img class="ns-brand-mark" src=".../logo-mark.svg" alt="" aria-hidden="true" width="30" height="30" />
       <span class="ns-brand-word">NuestroS&iacute;</span>
     </a>
========================================================= */

.ns-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #2c2825;
  line-height: 1;
}

.ns-brand-mark {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.ns-brand-word {
  font-family: 'Cormorant Garamond', 'Noto Serif', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.40rem;
  letter-spacing: .01em;
  color: inherit;
  white-space: nowrap;
}

/* ── Inverse: dark / photographic backgrounds ───────────── */
.ns-brand--inverse {
  color: #f7f2ed;
}

/* ── Compact: isotype only, wordmark stays sr-only ──────── */
.ns-brand--compact .ns-brand-word {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Fixed: pages with no header chrome ─────────────────── */
.ns-brand--fixed {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 20;
}

/* ── Footer: reduced size, centered ─────────────────────── */
.ns-brand--footer {
  gap: 6px;
  justify-content: center;
}
.ns-brand--footer .ns-brand-mark {
  width: 20px;
  height: 20px;
}
.ns-brand--footer .ns-brand-word {
  font-size: 1.05rem;
}

/* ── Overlay: centered above the boot-time loading spinner ── */
.ns-brand--overlay {
  position: absolute;
  top: calc(50% - 92px);
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.ns-brand--overlay .ns-brand-mark {
  width: 36px;
  height: 36px;
}
.ns-brand--overlay .ns-brand-word {
  font-size: 1.25rem;
}

/* ── Responsive sizing ───────────────────────────────────── */
@media (max-width: 768px) {
  .ns-brand-mark { width: 26px; height: 26px; }
  .ns-brand-word { font-size: 1.15rem; }
}

@media (max-width: 360px) {
  .ns-brand-word {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}
