/* ═══════════════════════════════════════════════════════════════
   EQ-SHELL.CSS — a közös fejléc (eq-head, mega-menü, burger, élő programlista)
   és a közös lábléc (footer, .footer-grid/.footer-col/.footer-bottom) stílusa.
   EGY FORRÁS a Worker-hosztok lapjainak (payment. / member. / admin.); a site
   lapjain ugyanezek a szabályok ma még beágyazva élnek (a build-lánc írja őket).
   Az index.html beágyazott stílusából kinyerve 2026-09-06 (site-shell 2/c);
   a szín-változók a lapok :root-jából jönnek, ahol nincs, a beégetett tartalék.
   ═══════════════════════════════════════════════════════════════ */
footer {
      background: var(--green-dark, #021A14);
      color: rgba(246,243,238,0.5);
      padding: 56px 8vw 36px;
      font-size: 12px;
      letter-spacing: 0.08em;
    }
.footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 48px;
      max-width: 1200px;
      margin: 0 auto 32px;
    }
.footer-col h4 {
      font-size: 10px;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--gold, #D8B750);
      margin-bottom: 14px;
      font-weight: 500;
    }
.footer-col p { margin-bottom: 4px; }
.footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      border-top: 1px solid rgba(216,183,80,0.15);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(246,243,238,0.3);
    }
@media (max-width: 800px) {
.footer-grid { grid-template-columns: 1fr; gap: 32px; }
.footer-bottom { flex-direction: column; gap: 10px; }
}
.eq-head {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
      background: transparent;
      border-bottom: 1px solid rgba(246,243,238,0);
    }
.eq-head.is-solid, .eq-head.is-open, body.eq-nohero .eq-head {
      background: rgba(2,26,20,0.96);
      -webkit-backdrop-filter: saturate(140%) blur(10px);
      backdrop-filter: saturate(140%) blur(10px);
      border-bottom-color: rgba(216,183,80,0.22);
    }
.eq-head-inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 32px; padding: 0 8vw; height: 66px;
      max-width: 1200px; margin: 0 auto;
    }
.eq-mark {
      font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
      font-weight: 500; color: #D8B750; line-height: 1.25; white-space: nowrap;
    }
.eq-mark .eq-beta {
      display: inline-block; margin-left: 8px; margin-top: 0;
      font-size: 8.5px; letter-spacing: 0.16em; text-transform: uppercase;
      font-weight: 500; color: rgba(246,243,238,0.62);
      border: 1px solid rgba(216,183,80,0.45); border-radius: 2px;
      padding: 1px 5px; vertical-align: 2px;
    }
.eq-mark span {
      display: block; font-size: 9.5px; letter-spacing: 0.08em; font-weight: 300;
      color: rgba(246,243,238,0.42); margin-top: 3px; text-transform: none;
    }
.eq-nav { display: flex; align-items: center; gap: 4px; height: 100%; }
.eq-item { position: relative; height: 100%; display: flex; align-items: center; }
.eq-link {
      display: flex; align-items: center; gap: 6px; height: 100%; padding: 0 14px;
      font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(246,243,238,0.72); background: none; border: 0; cursor: pointer;
      font-family: inherit; transition: color .25s;
      border-bottom: 1px solid transparent; text-decoration: none;
    }
.eq-link:hover, .eq-item.is-open > .eq-link { color: #D8B750; }
.eq-item.is-current > .eq-link { color: #F6F3EE; border-bottom-color: #D8B750; }
.eq-caret { width: 7px; height: 7px; border-right: 1px solid currentColor;
      border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px);
      opacity: .5; transition: transform .25s, opacity .25s; }
.eq-item.is-open .eq-caret { transform: rotate(225deg) translateY(-2px); opacity: 1; }
.eq-panel {
      position: absolute; top: 100%; left: 50%;
      width: min(880px, calc(100vw - 40px));
      background: rgba(2,26,20,0.985);
      -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
      border: 1px solid rgba(216,183,80,0.26);
      box-shadow: 0 22px 44px rgba(0,0,0,0.38);
      opacity: 0; visibility: hidden;
      transform: translateX(-50%) translateY(-8px);
      transition: opacity .2s ease, transform .2s ease, visibility .2s;
      padding: 30px 32px 28px;
    }
.eq-panel {
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }
@supports not (height: 100dvh) {
.eq-panel { max-height: calc(100vh - 96px); }
}
.eq-panel::-webkit-scrollbar { width: 8px; }
.eq-panel::-webkit-scrollbar-thumb {
    background: rgba(246,243,238,.22); border-radius: 4px; }
.eq-panel::-webkit-scrollbar-track { background: transparent; }
.eq-item.is-open .eq-panel {
      opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
    }
@media (hover: hover) and (min-width: 921px) {
.eq-item:hover > .eq-panel { opacity: 1; visibility: visible;
        transform: translateX(-50%) translateY(0); }
.eq-item.is-hushed:hover > .eq-panel { opacity: 0; visibility: hidden; }
}
.eq-panel-grid {
      display: grid; grid-template-columns: 1.05fr 1.05fr 1fr; gap: 30px;
      align-items: start; min-height: 0;
    }
.eq-panel-grid > div { display: flex; flex-direction: column; }
.eq-col-label {
      font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
      color: rgba(216,183,80,0.85); margin-bottom: 18px; font-weight: 500;
    }
.eq-lead {
      font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px;
      font-weight: 300; line-height: 1.35; color: #F6F3EE; margin-bottom: 14px;
    }
.eq-lead em { font-style: italic; color: #D8B750; }
.eq-blurb { font-size: 13.5px; line-height: 1.62; color: rgba(246,243,238,0.62); }
.eq-links { display: flex; flex-direction: column; gap: 2px; }
.eq-links a {
      display: block; padding: 9px 0; font-size: 14px; line-height: 1.4;
      color: rgba(246,243,238,0.86); text-decoration: none;
      border-bottom: 1px solid rgba(246,243,238,0.08); transition: color .2s, padding-left .2s;
    }
.eq-links a.eq-primary { border: 1px solid rgba(216,183,80,.5);
      background: rgba(216,183,80,.07); padding-left: 12px; padding-right: 12px;
      margin: 4px 0; color: #D8B750; }
.eq-links a.eq-primary:hover { background: rgba(216,183,80,.16);
      border-color: #D8B750; }
.eq-links a.eq-primary small { color: rgba(246,243,238,.62); }
.eq-links a:hover { color: #D8B750; padding-left: 6px; }
.eq-links small {
      display: block; font-size: 11.5px; color: rgba(246,243,238,0.4);
      margin-top: 3px; letter-spacing: .01em;
    }
.eq-cta {
      border: 1px solid rgba(216,183,80,0.3); padding: 20px 20px 18px;
      background: rgba(216,183,80,0.05); justify-content: flex-start;
    }
.eq-cta .eq-btn { align-self: flex-start; }
.eq-cta-title {
      font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px;
      color: #F6F3EE; font-weight: 300; margin-bottom: 10px;
    }
.eq-cta-note { font-size: 12.5px; line-height: 1.6; color: rgba(246,243,238,0.55); margin-bottom: 18px; }
.eq-btn {
      display: inline-block; padding: 11px 20px; font-size: 11.5px;
      letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
      color: #021A14; background: #D8B750; transition: background .25s, transform .25s;
    }
.eq-btn:hover { background: #E8CB72; transform: translateY(-1px); }
.eq-btn-ghost {
      display: inline-block; margin-top: 10px; font-size: 11.5px; letter-spacing: 0.14em;
      text-transform: uppercase; color: rgba(246,243,238,0.7); text-decoration: none;
      border-bottom: 1px solid rgba(216,183,80,0.4); padding-bottom: 2px;
    }
.eq-btn-ghost:hover { color: #D8B750; }
.eq-live { display: flex; flex-direction: column; gap: 10px; }
.eq-live a {
      display: block; padding: 10px 0; text-decoration: none;
      border-bottom: 1px solid rgba(246,243,238,0.08);
    }
.eq-live .d { display: block; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: #D8B750; }
/* A LISTA SORAI (2026-09-06): a datum sajat sor, a cim es a nyelvi jelolo egy sorban,
   a jelolo a JOBB SZELEN. */
.eq-live .t { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; font-size: 14px; color: rgba(246,243,238,0.88); margin-top: 4px; line-height: 1.35; }
.eq-live .m { font-size: 11.5px; color: rgba(246,243,238,0.42); margin-top: 3px; }
.eq-live .t .eq-lang { flex: 0 0 auto; margin-left: auto; }
.eq-live-empty { font-size: 13px; color: rgba(246,243,238,0.45); line-height: 1.6; }
/* ══ FOGLALTSÁG-GYŰRŰ (2026-09-07) ══ Egy rajz, három helyen: a site foglaltság-nézete,
   az eseménylap és az admin foglaltság-lapja. A minta a színnel EGYÜTT hordozza a jelentést. */
.eq-gyuru { display: flex; gap: 18px; align-items: flex-start; flex-wrap: wrap; }
.eq-gyuru-kor { color: var(--gold, #D8B750); line-height: 0; }
.eq-gyuru-reszlet { flex: 1 1 220px; min-width: 200px; }
.eq-gyuru-lista { list-style: none; margin: 0; padding: 0; font-size: 13px; line-height: 1.7; }
.eq-gyuru-lista li { display: flex; align-items: baseline; gap: 8px; }
.eq-gyuru-lista b { font-weight: 600; font-variant-numeric: tabular-nums; }
.eq-gyuru-lista em { opacity: 0.6; font-style: normal; }
.eq-gyuru-jelek { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 11.5px; opacity: 0.75; }
.eq-gyuru-jelek li { display: flex; align-items: center; gap: 6px; }
.eq-gyuru-pont { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; display: inline-block; }
.eq-gyuru-ures { font-size: 13px; opacity: 0.7; margin: 0; }
.eq-gyuru[data-havi] { display: inline-flex; gap: 0; }
.eq-gyuru[data-hiba] { display: none; }

/* ══ EQ-NAPTÁR — egy naptár minden foglaláshoz (2026-09-08) ══
   A cellák EGYFORMÁK (fix magasság a cellán, nem a rács során — a sormagasság a fejlécre
   is ráült volna), a nap telítettségét EGY sáv mutatja, a részletek a rács alatt nyílnak,
   nem lebegő dobozban: így semmi nem vágódik el és nem lóg ki. */
.eq-naptar { --n-cella: 58px; --n-racs: 700px; }
@media (max-width: 720px) { .eq-naptar { --n-cella: 46px; } }

/* A RÁCS NEM NYÚLIK EL (2026-09-08): a teljes szélességen a cellák 200 px szélesek és
   58 magasak lettek volna. Széles képernyőn a részlet a naptár MELLÉ kerül. */
.eq-naptar { display: grid; grid-template-columns: minmax(0, var(--n-racs)) minmax(280px, 1fr);
  grid-template-rows: min-content min-content 1fr; align-content: start; align-items: start; gap: 8px 28px; }
.eq-n-fejlec, .eq-n-dows, .eq-n-racs { grid-column: 1; }
.eq-n-reszlet-doboz { grid-column: 2; grid-row: 1 / 4; margin-top: 0; align-self: start; }
@media (max-width: 1100px) {
  .eq-naptar { grid-template-columns: minmax(0, 1fr); }
  .eq-n-fejlec, .eq-n-dows, .eq-n-racs, .eq-n-reszlet-doboz { grid-column: 1; }
  .eq-n-reszlet-doboz { grid-row: auto; margin-top: 16px; }
}
.eq-n-fejlec { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.eq-n-honap { font-size: 13px; letter-spacing: .06em; min-width: 150px; }
.eq-n-lep { padding: 5px 11px; font: inherit; font-size: 12px; cursor: pointer; }
.eq-n-dows { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 4px; }
.eq-n-dow { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; opacity: .55; text-align: center; }
.eq-n-racs { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.eq-n-nap {
  height: var(--n-cella); box-sizing: border-box; display: flex; flex-direction: column;
  justify-content: space-between; align-items: stretch; padding: 7px 8px; cursor: pointer;
  background: #fff; border: 1px solid rgba(0,0,0,.12); border-radius: 2px; font: inherit; text-align: left;
}
.eq-n-nap:hover { border-color: rgba(31,93,62,.55); }
.eq-n-nap.valasztott { border-color: #1F5D3E; box-shadow: inset 0 0 0 1px #1F5D3E; }
.eq-n-nap.mas-honap { opacity: .4; }
/* A DÁTUM A LEGFONTOSABB ADAT (2026-09-08): a szám erős, mellette a nap neve. */
.eq-n-szam { font-size: 13px; font-weight: 600; color: #1C1917; display: flex; align-items: baseline; gap: 5px; }
.eq-n-szam small { font-size: 9.5px; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; opacity: .55; }
.eq-n-nap.mas-honap .eq-n-szam { font-weight: 400; }
@media (max-width: 720px) {
  .eq-n-szam { font-size: 11.5px; gap: 3px; }
  .eq-n-szam small { display: none; }   /* mobilon a fejléc mutatja a napot */
  .eq-n-nap { padding: 5px 6px; }
}
.eq-n-sav { display: block; height: 6px; background: #E6E1D6; border-radius: 3px; overflow: hidden; }
.eq-n-sav i { display: block; height: 100%; width: 0; background: #1F5D3E; transition: width .2s; }
.eq-n-sav i.tele { background: #8A3A3A; }
.eq-n-sav i.zarva { background: #3A3830; opacity: .6; }
.eq-n-reszlet-doboz { margin-top: 16px; min-height: 40px; }
.eq-n-reszlet-fej h4 { margin: 0 0 8px; font-size: 13px; letter-spacing: .04em; }
.eq-n-reszlet { display: flex; gap: 18px; align-items: flex-start; flex-wrap: wrap; }
@media (min-width: 1101px) { .eq-n-reszlet { flex-direction: column; } .eq-n-panel { flex: 1 1 auto; width: 100%; } }
.eq-n-kor { line-height: 0; color: #D8B750; }
.eq-n-kozep { flex: 1 1 220px; min-width: 200px; }
.eq-n-lista { list-style: none; margin: 0; padding: 0; font-size: 13px; line-height: 1.7; }
.eq-n-lista li { display: flex; align-items: baseline; gap: 8px; }
/* A LEMOND GOMB A SOR VEGEN (2026-09-11): halvany, amig nem kell — a napi lista attol
   olvashato, hogy a gombok nem kiabalnak. Hoverre lesz hatarozott. */
.eq-n-lista li .eq-n-lemond { margin-left: auto; font-size: 11px; padding: 2px 8px;
  border: 1px solid rgba(139,58,46,.35); background: transparent; color: #8B3A2E;
  border-radius: 999px; cursor: pointer; opacity: .65; }
.eq-n-lista li .eq-n-lemond:hover { opacity: 1; background: rgba(139,58,46,.08); }
.eq-n-lista li .eq-n-lemond[disabled] { opacity: .4; cursor: default; }
.eq-n-lista li.eq-n-lemondva { opacity: .5; text-decoration: line-through; }
.eq-n-lista b { font-variant-numeric: tabular-nums; }
.eq-n-lista em { opacity: .6; font-style: normal; }
.eq-n-pont { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.eq-n-ures { font-size: 13px; opacity: .7; margin: 0; }
.eq-n-panel { flex: 0 0 260px; display: flex; flex-direction: column; gap: 8px; }
.eq-n-sor { display: flex; align-items: center; gap: 8px; }
.eq-n-cimke { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; opacity: .6; min-width: 58px; }
.eq-n-sor select { flex: 1 1 auto; padding: 6px 8px; font: inherit; font-size: 13px; }
.eq-n-osszeg { font-size: 12px; opacity: .75; margin: 0; }
.eq-n-indok { padding: 6px 8px; font: inherit; font-size: 13px; }
.eq-n-gombok { display: flex; gap: 8px; }
.eq-n-gomb { flex: 1 1 auto; padding: 9px 12px; font: inherit; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.eq-n-zar { opacity: .8; }

/* ══ FOGLALÁSI PANEL (2026-09-07) ══ A gyűrű mellett: kezdés és időtartam félóránként. */
.eq-foglalo { display: flex; flex-direction: column; gap: 10px; min-width: 220px; }
.eq-foglalo-sor { display: flex; align-items: center; gap: 10px; }
.eq-foglalo-cimke { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.65; min-width: 68px; }
.eq-foglalo-valaszto { flex: 1 1 auto; padding: 7px 9px; font: inherit; font-size: 13.5px; }
.eq-foglalo-osszegzes { font-size: 12.5px; opacity: 0.75; margin: 2px 0 0; line-height: 1.5; }
.eq-foglalo-gomb { padding: 10px 16px; font: inherit; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; }
.eq-foglalo-ures { font-size: 13px; opacity: 0.7; margin: 0; }
.eq-foglalo-gyors { display: flex; gap: 6px; flex-wrap: wrap; }
.eq-foglalo-gyorsgomb { padding: 5px 10px; font: inherit; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; opacity: 0.85; }
.eq-foglalo-indok { padding: 7px 9px; font: inherit; font-size: 13px; width: 100%; box-sizing: border-box; }
.eq-foglalo-gombok { display: flex; gap: 8px; }
.eq-foglalo-gombok .eq-foglalo-gomb { flex: 1 1 auto; }
.eq-foglalo-zar { opacity: 0.8; }

/* ══ ADMIN FEJLÉC (2026-09-07) ══ Az admin lapokon a nyilvános, menüs fejléc helyett ez áll:
   ugyanaz a hang, de a ház belső útjaival. Ragadós, tehát görgetéskor a helyén marad. */
.eq-admin-head {
  position: sticky; top: 0; z-index: 900;
  background: #021A14; color: #F6F3EE;
  border-bottom: 1px solid rgba(216,183,80,0.22);
  padding: 0; margin: 0;
}
.eq-admin-inner {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding: 12px 5vw; max-width: 1400px; margin: 0 auto;
}
.eq-admin-mark {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: #D8B750; text-decoration: none; white-space: nowrap;
}
.eq-admin-nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.eq-admin-nav a {
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(246,243,238,0.72); text-decoration: none; white-space: nowrap;
  padding-bottom: 2px; border-bottom: 1px solid transparent;
}
.eq-admin-nav a:hover { color: #F6F3EE; }
.eq-admin-nav a.is-current { color: #D8B750; border-bottom-color: rgba(216,183,80,0.5); }
.eq-admin-tagi {
  margin-left: auto; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(246,243,238,0.6); text-decoration: none; white-space: nowrap;
}
.eq-admin-tagi:hover { color: #D8B750; }
@media (max-width: 920px) { .eq-admin-inner { gap: 14px; padding: 10px 6vw; } .eq-admin-tagi { margin-left: 0; } }

/* A LAP AKCIÓ-LINKJE a fix fejléc jobb szélén (2026-09-07) — ugyanaz a betű, mint a menüé. */
.eq-lap-akcio {
  margin-left: auto; white-space: nowrap; text-decoration: none;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(246,243,238,0.72); border-bottom: 1px solid rgba(216,183,80,0.28);
  padding-bottom: 2px;
}
.eq-lap-akcio:hover { color: #D8B750; }
@media (max-width: 920px) { .eq-lap-akcio { display: none; } }

.eq-burger {
      display: none; width: 40px; height: 40px; background: none; border: 0;
      cursor: pointer; padding: 0; position: relative; margin-right: -8px;
    }
.eq-burger span {
      position: absolute; left: 9px; right: 9px; height: 1px; background: #F6F3EE;
      transition: transform .3s, opacity .2s;
    }
.eq-burger span:nth-child(1) { top: 15px; }
.eq-burger span:nth-child(2) { top: 20px; }
.eq-burger span:nth-child(3) { top: 25px; }
.eq-head.is-open .eq-burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.eq-head.is-open .eq-burger span:nth-child(2) { opacity: 0; }
.eq-head.is-open .eq-burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
body.eq-nohero { padding-top: 66px; }
@media (max-width: 1120px) {
.eq-head-inner { gap: 20px; }
.eq-mark span { display: none; }
.eq-link { padding: 0 9px; font-size: 11px; letter-spacing: 0.1em; }
.eq-caret { width: 6px; height: 6px; }
}
@media (max-width: 980px) {
.eq-panel { width: min(680px, calc(100vw - 32px)); }
.eq-panel-grid { grid-template-columns: 1fr 1fr; gap: 24px; min-height: 0; }
.eq-cta { grid-column: 1 / -1; }
}
@media (max-width: 920px) {
.eq-head-inner { padding: 0 6vw; height: 58px; }
.eq-burger { display: block; }
.eq-nav {
        position: fixed; top: 58px; left: 0; right: 0; bottom: 0;
        background: #021A14; flex-direction: column; align-items: stretch;
        gap: 0; padding: 12px 6vw 48px; overflow-y: auto;
        height: calc(100vh - 58px); height: calc(100dvh - 58px);
        transform: translateX(100%); transition: transform .32s ease; display: flex;
      }
.eq-head.is-open .eq-nav { transform: translateX(0); }
.eq-item { display: block; height: auto; border-bottom: 1px solid rgba(246,243,238,0.09); }
.eq-link { width: 100%; justify-content: space-between; height: auto; padding: 18px 0; font-size: 13px; }
.eq-item.is-current > .eq-link { border-bottom-color: transparent; }
.eq-panel {
        position: static; opacity: 1; visibility: visible; width: auto;
        background: none; border: 0; box-shadow: none; padding: 0 0 22px;
        display: none; backdrop-filter: none; -webkit-backdrop-filter: none;
      }
.eq-item.is-open .eq-panel { display: block; transform: none; }
.eq-panel-grid { grid-template-columns: 1fr; gap: 24px; }
.eq-lead { font-size: 18px; }
body.eq-nohero { padding-top: 58px; }
.eq-panel-grid { padding: 0; }
}
.eq-chip {
      display: inline-block; margin-left: 8px; padding: 2px 7px; border-radius: 2px;
      font-size: 9px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
      vertical-align: 2px;
    }
.eq-chip.new { background: rgba(216,183,80,.16); color: #D8B750; border: 1px solid rgba(216,183,80,.4); }
.eq-chip.hot { background: rgba(216,183,80,.9); color: #021A14; }
.eq-cta-price {
      font-family: 'Cormorant Garamond', Georgia, serif; font-size: 27px; line-height: 1.1;
      color: #D8B750; margin-bottom: 4px;
    }
.eq-cta-price small {
      display: block; font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0;
      color: rgba(246,243,238,0.5); margin-top: 4px;
    }
.eq-walls { border: 1px solid rgba(216,183,80,.3); background: rgba(216,183,80,.07);
      padding: 12px 14px; margin-top: 22px; border-radius: 2px; }
.eq-walls b { display: block; font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
      color: #D8B750; font-weight: 500; margin-bottom: 5px; }
.eq-walls strong { display: block; font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 400; font-size: 15.5px; color: #F6F3EE; line-height: 1.3; }
/* A VAT-JELZES AZ ARHOZ TARTOZIK (2026-09-09): az .eq-walls span display:block a
   vat-note-ot is blokka tette, ezert kerult uj sorba a + VAT. A kivetel visszaadja
   soron belulre — a nowrap onmagaban nem segit egy blokk elemen. */
.eq-walls span.vat-note { display: inline; }
.eq-walls span { display: block; font-size: 11px; line-height: 1.5;
      color: rgba(246,243,238,.55); margin-top: 4px; }
.eq-walls a { display: inline-block; margin-top: 8px; font-size: 10px; letter-spacing: .12em;
      text-transform: uppercase; color: #D8B750; text-decoration: none;
      border-bottom: 1px solid rgba(216,183,80,.35); padding-bottom: 2px; }
.eq-walls img { display: block; width: 100%; height: auto; aspect-ratio: 16/10;
      object-fit: cover; margin: 0 0 10px; border: 1px solid rgba(216,183,80,.25); }
@media (min-width: 921px) {
.eq-walls img { max-height: 132px; }
}
@media (max-width: 920px) {
.eq-walls img { aspect-ratio: 16/7; }
}
.eq-walls[hidden] { display: none; }
.wf a:focus-visible, .walls a:focus-visible, .begin a:focus-visible,
    .eq-panel a:focus-visible, footer a:focus-visible {
      outline-color: var(--cream, #F6F3EE);
    }
.space-card, .begin-item, .way, .writeup, .format-card, .bring,
    .eqb-past-item, .walls-in, .eq-walls, [data-next] {
      position: relative;
    }
.space-card:hover, .begin-item:hover, .way:hover, .writeup:hover,
    .format-card:hover, .bring:hover, .eqb-past-item:hover,
    .walls-in:hover, .eq-walls:hover, [data-next]:hover { cursor: pointer; }
.space-card > a::after, .begin-item > a::after, .way > a::after,
    .writeup > a::after, .format-card > a::after, .bring > a::after,
    .eqb-past-item > a::after, .walls-in a::after, .eq-walls a::after,
    [data-next] > a::after {
      content: ''; position: absolute; inset: 0; z-index: 1;
    }
.eq-skip {position:absolute;left:-9999px;top:0;z-index:9999;background:#14110f;color:#fff;padding:10px 18px;border-radius:0 0 6px 0;font:500 14px/1.2 system-ui,-apple-system,sans-serif;text-decoration:none}
.eq-skip:focus {left:0}
@media (max-width: 1400px) {
.eq-head-inner { gap: clamp(12px, 2vw, 32px); padding: 0 4vw; }
.eq-link { padding: 0 11px; letter-spacing: 0.13em; }
}
.eq-head-inner { min-width: 0; }
.eq-nav { min-width: 0; flex-wrap: nowrap; }
.eq-link { white-space: nowrap; }
@media (min-width: 921px) {
.eq-nav > .eq-item:nth-last-child(1) > .eq-panel,
      .eq-nav > .eq-item:nth-last-child(2) > .eq-panel {
        left: auto; right: 0; transform: translateX(0) translateY(-6px);
      }
.eq-nav > .eq-item:nth-last-child(1).is-open > .eq-panel,
      .eq-nav > .eq-item:nth-last-child(2).is-open > .eq-panel,
      .eq-nav > .eq-item:nth-last-child(1):hover > .eq-panel,
      .eq-nav > .eq-item:nth-last-child(2):hover > .eq-panel {
        transform: translateX(0) translateY(0);
      }
.eq-panel { max-width: calc(100vw - 32px); }
}
@media (min-width: 921px) {
.eq-nav > .eq-item:nth-last-child(3) > .eq-panel {
        left: auto; right: 0; transform: translateX(0) translateY(-6px);
      }
.eq-nav > .eq-item:nth-last-child(3).is-open > .eq-panel,
      .eq-nav > .eq-item:nth-last-child(3):hover > .eq-panel {
        transform: translateX(0) translateY(0);
      }
}
/* VÉDELEM A LAPOK SAJÁT `header { … }` ELEM-SZABÁLYAI ELLEN (admin/tagi lapok): azok
   padding-ot, flex-et, betűt tesznek MINDEN header-re — az eq-head-re is; itt a class
   nyer (nagyobb specificitás), és ami a sablon-fejlécből hiányzott, azt visszaállítjuk. */
header.eq-head { display: block; padding: 0; margin: 0; border: 0; gap: 0; height: auto; min-height: 0;
  align-items: normal; justify-content: normal; box-sizing: border-box; }

/* A WORKER-LAPOK SAJÁT (ragadós) FEJLÉCE a fix eq-head ALÁ kerüljön, ne mögé:
   a `top` csak sticky/fixed elemre hat, a statikusakra ártalmatlan. */
body.eq-nohero header:not(.eq-head) { top: 66px; }
@media (max-width: 920px) { body.eq-nohero header:not(.eq-head) { top: 58px; } }
