/* White Media core brand tokens. Standalone landings keep their own scoped palettes. */
:root{
  --wm-color-deep-graphite:#1C1D20;
  --wm-color-graphite-surface:#2B2D31;
  --wm-color-warm-ivory:#F4F1EA;
  --wm-color-matte-gold:#C6A05C;

  /* Compatibility aliases for standard WordPress templates. */
  --wm-dark:var(--wm-color-deep-graphite);
  --wm-panel:var(--wm-color-graphite-surface);
  --wm-light:var(--wm-color-warm-ivory);
  --wm-gold:var(--wm-color-matte-gold);
}

/* Shared White Media logo across standard pages, homepage and standalone landings. */
.wm-global-brand{
  display:inline-flex;
  align-items:center;
  gap:11px;
  color:var(--wm-color-warm-ivory);
  text-decoration:none;
}
.wm-global-brand__mark{
  display:block;
  width:64px;
  flex:0 0 auto;
  line-height:0;
}
.wm-global-brand__mark img{
  display:block;
  width:100%;
  height:auto;
}
.wm-global-brand__name{
  color:var(--wm-color-warm-ivory) !important;
  font-family:Inter,Arial,sans-serif;
  font-size:12px;
  font-weight:800;
  line-height:1;
  letter-spacing:.15em;
  white-space:nowrap;
}
.wm-global-brand--altai{
  position:relative;
  z-index:12;
  margin-bottom:clamp(34px,5vw,72px);
}
@media(max-width:680px){
  .wm-global-brand__mark{width:56px}
  .wm-global-brand__name{font-size:10px}
}
@media(max-width:380px){
  .wm-global-brand__name{display:none}
}
