/* ═══════════════════════════════════════════════════════
   Delta Harvest Festival — "Throughout the Village" map
   Lazy-loaded: only fetched once the trigger is engaged.
   Designed senior-first: large type, large targets, high
   contrast, always-visible labels, no hover-only interaction.
   ═══════════════════════════════════════════════════════ */

:root {
  --vm-parchment:   #F1E8D6;
  --vm-parchment-2: #E7DBBE;
  --vm-ink:         #2E2210;
  --vm-brick:       #7A3B22;
  --vm-brick-deep:  #5C2C18;
  --vm-green:       #5C6B47;
  --vm-green-deep:  #3C4A28;
  --vm-water:       #6E8FA0;
  --vm-water-deep:  #43677A;
  --vm-gold:        #9C6A1E;
}

/* ─── overlay shell ─── */
.vmap-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 2vw, 28px);
  background: rgba(20, 15, 9, 0.82);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .28s ease;
}
.vmap-overlay.is-open { opacity: 1; }
.vmap-overlay[hidden] { display: none; }

/* ─── inline embed variant (festival-map.html) ───────────────
   Same modal markup, parented into a page container instead of
   a full-viewport overlay — no backdrop, no fixed positioning. */
.vmap-overlay.is-inline {
  position: relative;
  inset: auto;
  z-index: auto;
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  backdrop-filter: none;
  opacity: 1;
}
.vmap-overlay.is-inline .vmap-modal {
  width: 100%;
  height: clamp(520px, 78vh, 860px);
  max-height: none;
  transform: none;
  opacity: 1;
  border-radius: 10px;
}
.vmap-overlay.is-inline .vmap-close { display: none; }
@media (max-width: 860px) {
  .vmap-overlay.is-inline .vmap-modal { border-radius: 10px; height: clamp(480px, 82vh, 720px); }
}

.vmap-modal {
  position: relative;
  width: min(1640px, 100%);
  height: min(1040px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--vm-parchment);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.35), transparent 45%),
    radial-gradient(circle at 90% 95%, rgba(0,0,0,.06), transparent 50%);
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  overflow: hidden;
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: opacity .32s ease, transform .32s ease;
}
.vmap-overlay.is-open .vmap-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ─── header ─── */
.vmap-header {
  flex: 0 0 auto;
  padding: clamp(16px, 2vw, 26px) clamp(18px, 2.6vw, 36px) clamp(10px, 1.4vw, 16px);
  border-bottom: 1px solid rgba(46,34,16,.2);
}
.vmap-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.vmap-header-text .vmap-label {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--vm-brick-deep);
  margin-bottom: 8px;
}
.vmap-header-text h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  color: var(--vm-ink);
  margin: 0;
  letter-spacing: -.01em;
}
.vmap-header-text h2 .it { font-style: italic; }
.vmap-header-text p {
  margin: 10px 0 0;
  max-width: 68ch;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--vm-ink);
  opacity: .82;
}

.vmap-close {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(46,34,16,.35);
  background: rgba(255,255,255,.55);
  color: var(--vm-ink);
  font-size: 32px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s, border-color .2s;
}
.vmap-close:hover { background: rgba(255,255,255,.85); transform: rotate(90deg); }
.vmap-close:focus-visible { outline: 3px solid var(--vm-brick); outline-offset: 3px; }

/* ─── toolbar: view toggle + legend ─── */
.vmap-toolbar {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
}

.vmap-toggle-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--vm-parchment);
  background: var(--vm-brick);
  border: none;
  border-radius: 9px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  transition: background .2s, transform .15s;
}
.vmap-toggle-btn:hover { background: var(--vm-brick-deep); transform: translateY(-1px); }
.vmap-toggle-btn:focus-visible { outline: 3px solid var(--vm-gold); outline-offset: 3px; }
.vmap-toggle-btn .icon { font-size: 20px; }

.vmap-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
}
.vmap-legend-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
}
.vmap-legend-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vm-ink);
  opacity: .7;
  margin-right: 4px;
}
.vmap-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--vm-ink);
}
.vmap-legend-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--vm-brick);
  border: 2px solid var(--vm-parchment);
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.vmap-legend-swatch svg { width: 16px; height: 16px; color: var(--vm-parchment); fill: var(--vm-parchment); }

@media (max-width: 760px) {
  .vmap-toolbar { min-width: 0; }
  .vmap-legend { width: 100%; min-width: 0; }
  .vmap-legend-title { width: 100%; margin: 0 0 2px; }
  .vmap-legend-items {
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .vmap-legend-item { flex: 0 0 auto; }
}

/* ─── body: stage + panel ─── */
.vmap-body {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: 0;
}

.vmap-stage {
  position: relative;
  overflow: hidden;
  background: var(--vm-parchment-2);
  cursor: grab;
  touch-action: none;
}
.vmap-stage.is-dragging { cursor: grabbing; }
.vmap-stage:focus-visible { outline: 3px solid var(--vm-brick); outline-offset: -3px; }
.vmap-stage[hidden] { display: none; }

.vmap-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 1600px;
  height: 1100px;
  transform-origin: 0 0;
  will-change: transform;
}
.vmap-canvas svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── hotspots: large, high-contrast, always-labelled ─── */
.vmap-hotspot {
  position: absolute;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -100%) scale(var(--vmap-counter-scale, 1));
  transform-origin: 50% 100%;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--sans);
}
/* Old Stone Mill is the village's primary landmark and the map's projection
   anchor — kept visually on top of its tightly-clustered neighbours rather
   than enlarged, so the cluster still reads as one compact place. */
.vmap-hotspot[data-id="mill"] { z-index: 3; }
.vmap-hotspot-pin {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--vm-brick);
  border: 4px solid var(--vm-parchment);
  box-shadow: 0 5px 18px rgba(0,0,0,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.vmap-hotspot[data-id="mill"] .vmap-hotspot-pin { box-shadow: 0 0 0 3px var(--vm-gold), 0 5px 18px rgba(0,0,0,.38); }
.vmap-hotspot-pin svg { width: 25px; height: 25px; color: var(--vm-parchment); fill: var(--vm-parchment); }
.vmap-hotspot-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--vm-ink);
  background: rgba(241,232,214,.97);
  border: 1.5px solid rgba(46,34,16,.3);
  padding: 4px 10px;
  border-radius: 9px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
  transition: background .18s ease;
}
/* Direction overrides for the tightly-clustered village core: each label is
   pushed outward, away from the cluster's centre, instead of always sitting
   below the pin, so neighbouring labels stop colliding without moving any
   marker's true geographic position. */
.vmap-hotspot[data-label-pos="n"] .vmap-hotspot-label {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 6px;
}
.vmap-hotspot[data-label-pos="nw"] .vmap-hotspot-label,
.vmap-hotspot[data-label-pos="ne"] .vmap-hotspot-label {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 6px;
}
.vmap-hotspot[data-label-pos="sw"] .vmap-hotspot-label,
.vmap-hotspot[data-label-pos="se"] .vmap-hotspot-label {
  margin-top: 6px;
}
.vmap-hotspot[data-label-pos="nw"] .vmap-hotspot-label,
.vmap-hotspot[data-label-pos="sw"] .vmap-hotspot-label {
  left: auto;
  right: 100%;
  transform: none;
  margin-right: 6px;
  text-align: right;
}
.vmap-hotspot[data-label-pos="ne"] .vmap-hotspot-label,
.vmap-hotspot[data-label-pos="se"] .vmap-hotspot-label {
  left: 100%;
  transform: none;
  margin-left: 6px;
  text-align: left;
}
.vmap-hotspot[data-label-pos="w"] .vmap-hotspot-label,
.vmap-hotspot[data-label-pos="e"] .vmap-hotspot-label {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
.vmap-hotspot[data-label-pos="w"] .vmap-hotspot-label {
  left: auto;
  right: 100%;
  margin-right: 6px;
  text-align: right;
}
.vmap-hotspot[data-label-pos="e"] .vmap-hotspot-label {
  left: 100%;
  margin-left: 6px;
  text-align: left;
}
/* Diagonal/side labels wrap onto short lines instead of one long line, so
   they reach less far sideways — keeps them clear of neighbouring labels
   without running off the edge of narrow phone screens. */
.vmap-hotspot[data-label-pos="nw"] .vmap-hotspot-label,
.vmap-hotspot[data-label-pos="ne"] .vmap-hotspot-label,
.vmap-hotspot[data-label-pos="sw"] .vmap-hotspot-label,
.vmap-hotspot[data-label-pos="se"] .vmap-hotspot-label,
.vmap-hotspot[data-label-pos="w"] .vmap-hotspot-label,
.vmap-hotspot[data-label-pos="e"] .vmap-hotspot-label {
  white-space: normal;
  max-width: 84px;
}
.vmap-hotspot:hover .vmap-hotspot-pin,
.vmap-hotspot:focus-visible .vmap-hotspot-pin,
.vmap-hotspot.is-active .vmap-hotspot-pin {
  transform: scale(1.16);
  background: var(--vm-brick-deep);
  box-shadow: 0 6px 18px rgba(0,0,0,.4);
}
.vmap-hotspot:hover .vmap-hotspot-label,
.vmap-hotspot:focus-visible .vmap-hotspot-label {
  background: #fff;
}
.vmap-hotspot:focus-visible { outline: none; }
.vmap-hotspot:focus-visible .vmap-hotspot-pin { box-shadow: 0 0 0 5px var(--vm-gold); }
.vmap-hotspot.is-active .vmap-hotspot-pin { background: var(--vm-green-deep); }
.vmap-hotspot.is-active .vmap-hotspot-label {
  background: var(--vm-green-deep);
  color: var(--vm-parchment);
  border-color: var(--vm-green-deep);
}

@keyframes vmap-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(0,0,0,.35), 0 0 0 0 rgba(122,59,34,.55); }
  50% { box-shadow: 0 4px 14px rgba(0,0,0,.35), 0 0 0 10px rgba(122,59,34,0); }
}
.vmap-hotspot-pin { animation: vmap-pulse 3.2s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .vmap-hotspot-pin { animation: none; }
}

/* ─── zoom controls ─── */
.vmap-controls {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(241,232,214,.92);
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
}
.vmap-controls button {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 2px solid rgba(46,34,16,.3);
  background: var(--vm-parchment);
  color: var(--vm-ink);
  font-family: var(--sans);
  font-size: 27px;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s;
}
.vmap-controls button:hover { background: #fff; }
.vmap-controls button:focus-visible { outline: 3px solid var(--vm-brick); outline-offset: 2px; }
.vmap-controls .vmap-reset { font-size: 15px; }

.vmap-hint {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 4;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--vm-ink);
  background: rgba(241,232,214,.92);
  padding: 12px 16px;
  border-radius: 9px;
  opacity: .9;
}
@media (max-width: 900px) {
  .vmap-hint { display: none; }
}

/* ─── side panel ─── */
.vmap-panel {
  border-left: 1px solid rgba(46,34,16,.2);
  background: var(--vm-parchment);
  padding: clamp(22px, 2.4vw, 32px);
  overflow-y: auto;
}
.vmap-panel[hidden] { display: none; }
.vmap-panel-empty {
  font-family: var(--display);
  font-style: italic;
  font-size: 25px;
  color: var(--vm-ink);
  opacity: .65;
  line-height: 1.6;
  margin-top: 40px;
  text-align: center;
}

.vmap-card-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 6px;
  margin-bottom: 18px;
}
.vmap-card-badge.is-official {
  background: rgba(92,107,71,.18);
  color: var(--vm-green-deep);
  border: 1.5px solid rgba(92,107,71,.45);
}
.vmap-card-badge.is-placeholder {
  background: rgba(156,106,30,.18);
  color: var(--vm-brick-deep);
  border: 1.5px solid rgba(156,106,30,.55);
}

.vmap-card-eyebrow {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--vm-brick-deep);
  margin: 0 0 9px;
}
.vmap-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.18;
  color: var(--vm-ink);
  margin: 0 0 14px;
}
.vmap-card .vmap-card-time {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--vm-ink);
  opacity: .85;
  margin: 0 0 20px;
}
.vmap-card .vmap-card-desc {
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.75;
  color: var(--vm-ink);
  margin: 0 0 24px;
}
.vmap-card-placeholder-note {
  font-family: var(--sans);
  font-size: 16px;
  font-style: italic;
  line-height: 1.65;
  color: var(--vm-brick-deep);
  background: rgba(156,106,30,.12);
  border-left: 3px solid var(--vm-gold);
  padding: 14px 16px;
  margin: 0 0 24px;
}
.vmap-card-heritage {
  border-top: 1.5px solid rgba(46,34,16,.2);
  padding-top: 20px;
  margin-top: 4px;
}
.vmap-card-heritage h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vm-green-deep);
  margin: 0 0 10px;
}
.vmap-card-heritage p {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: var(--vm-ink);
  margin: 0;
}
.vmap-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 4px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--vm-ink);
  border-bottom: 2px solid var(--vm-ink);
  transition: gap .2s, color .2s, border-color .2s;
}
.vmap-card-link:hover { gap: 15px; color: var(--vm-brick-deep); border-color: var(--vm-brick-deep); }

/* ─── "View All Events" list view ─── */
.vmap-list {
  grid-column: 1 / -1;
  overflow-y: auto;
  padding: clamp(24px, 3vw, 48px);
  background: var(--vm-parchment-2);
}
.vmap-list[hidden] { display: none; }
.vmap-list-inner { max-width: 840px; margin: 0 auto; }
.vmap-list-head {
  font-family: var(--display);
  font-size: 28px;
  color: var(--vm-ink);
  margin: 0 0 8px;
}
.vmap-list-sub {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--vm-ink);
  opacity: .75;
  margin: 0 0 30px;
}
.vmap-list-card {
  background: var(--vm-parchment);
  border: 1.5px solid rgba(46,34,16,.18);
  border-radius: 14px;
  padding: clamp(22px, 2.6vw, 32px);
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.vmap-list-card .vmap-locate-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding: 13px 24px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--vm-ink);
  background: rgba(92,107,71,.14);
  border: 1.5px solid rgba(92,107,71,.4);
  border-radius: 8px;
  cursor: pointer;
  transition: background .18s;
}
.vmap-list-card .vmap-locate-btn:hover { background: rgba(92,107,71,.26); }
.vmap-list-card .vmap-locate-btn:focus-visible { outline: 3px solid var(--vm-brick); outline-offset: 2px; }

/* ─── responsive: stacked / bottom-sheet on mobile ─── */
@media (max-width: 860px) {
  .vmap-modal { border-radius: 0; width: 100%; height: 100%; }
  .vmap-body { grid-template-columns: 1fr; }
  .vmap-header-top { flex-wrap: wrap; }
  .vmap-close { width: 54px; height: 54px; font-size: 26px; }
  .vmap-toolbar { gap: 14px; }
  .vmap-toggle-btn { width: 100%; justify-content: center; }

  .vmap-panel {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    border-left: none;
    border-top: 2px solid rgba(46,34,16,.3);
    border-radius: 18px 18px 0 0;
    max-height: 68%;
    box-shadow: 0 -12px 30px rgba(0,0,0,.28);
    transform: translateY(100%);
    transition: transform .3s ease;
  }
  .vmap-panel.is-open { transform: translateY(0); }
  .vmap-body:has(.vmap-panel.is-open) .vmap-controls,
  .vmap-body:has(.vmap-panel.is-open) .vmap-hint {
    display: none;
  }
  .vmap-panel-handle {
    display: block;
    width: 48px;
    height: 5px;
    border-radius: 3px;
    background: rgba(46,34,16,.35);
    margin: 0 auto 18px;
  }
  .vmap-panel-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(46,34,16,.1);
    color: var(--vm-ink);
    font-size: 25px;
    cursor: pointer;
  }
  .vmap-controls { gap: 8px; padding: 8px; }
  .vmap-controls button { width: 48px; height: 48px; font-size: 20px; }
  .vmap-hotspot { width: 41px; height: 41px; }
  .vmap-hotspot-pin { width: 41px; height: 41px; }
  .vmap-hotspot-pin svg { width: 20px; height: 20px; }
  .vmap-hotspot-label {
    font-size: 11px;
    padding: 3px 8px;
    margin-top: 5px;
    white-space: normal;
    max-width: 104px;
    text-align: center;
  }
  .vmap-hotspot[data-label-pos="n"] .vmap-hotspot-label,
  .vmap-hotspot[data-label-pos="nw"] .vmap-hotspot-label,
  .vmap-hotspot[data-label-pos="ne"] .vmap-hotspot-label { margin-top: 0; margin-bottom: 5px; }
  .vmap-hotspot[data-label-pos="sw"] .vmap-hotspot-label,
  .vmap-hotspot[data-label-pos="se"] .vmap-hotspot-label { margin-top: 5px; }
  .vmap-hotspot[data-label-pos="nw"] .vmap-hotspot-label,
  .vmap-hotspot[data-label-pos="sw"] .vmap-hotspot-label,
  .vmap-hotspot[data-label-pos="w"] .vmap-hotspot-label { margin-right: 5px; }
  .vmap-hotspot[data-label-pos="ne"] .vmap-hotspot-label,
  .vmap-hotspot[data-label-pos="se"] .vmap-hotspot-label,
  .vmap-hotspot[data-label-pos="e"] .vmap-hotspot-label { margin-left: 5px; }
  .vmap-hotspot[data-label-pos="nw"] .vmap-hotspot-label,
  .vmap-hotspot[data-label-pos="ne"] .vmap-hotspot-label,
  .vmap-hotspot[data-label-pos="sw"] .vmap-hotspot-label,
  .vmap-hotspot[data-label-pos="se"] .vmap-hotspot-label,
  .vmap-hotspot[data-label-pos="w"] .vmap-hotspot-label,
  .vmap-hotspot[data-label-pos="e"] .vmap-hotspot-label { max-width: 64px; }
  /* On very small screens the whole-map default view is zoomed out enough
     that Russell Greenspace's "ne" (up-right) core label runs past the top
     of the stage; pin it to the side instead, which has more headroom. */
  .vmap-hotspot[data-id="russell"] .vmap-hotspot-label {
    top: 50%;
    bottom: auto;
    left: 100%;
    right: auto;
    transform: translateY(-50%);
    margin: 0 0 0 5px;
    text-align: left;
  }
}
@media (min-width: 861px) {
  .vmap-panel-handle, .vmap-panel-close { display: none; }
}

/* ─── visually hidden helper ─── */
.vmap-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
