/* ── EADA — European Architecture Design Award ─────────────────
   Everything below (starting from :root) is EADA's source CSS,
   copied verbatim from EADA_website.html. Blocks emit source
   markup so the output matches the design 1:1. Only the two
   .page-section SPA-toggle rules were dropped (they'd hide
   real pages when the JS runtime isn't present).

   The editor-only DOM hides that follow are ADS-CMS additions —
   they keep the +Add / URL pill / block toolbar chrome invisible
   on the public site, and let editor.css style them under
   body.cms-edit. */

/* Editor-only DOM hides.

   Under body.cms-edit we restore each class to the SPECIFIC display
   editor.css expects. Blanket `display: initial` flattens
   .cms-link-tools (a <span>) to `inline`, which makes its
   .cms-link-btn flex children stack vertically. */
.cms-list-item-add, .cms-list-item-remove, .cms-list-item-move,
.cms-block-tools, .cms-block-info, .cms-block-name, .cms-block-bg-btn,
.cms-href-btn, .cms-link-tools, .cms-link-warn, .cms-add-link,
.cms-field-color-chip, .chips-source { display: none !important; }

body.cms-edit .cms-list-item-add    { display: block        !important; }
body.cms-edit .cms-list-item-remove,
body.cms-edit .cms-list-item-move,
body.cms-edit .cms-block-tools,
body.cms-edit .cms-block-info,
body.cms-edit .cms-block-name,
body.cms-edit .cms-block-bg-btn     { display: flex         !important; }
body.cms-edit .cms-href-btn         { display: inline-block !important; }
body.cms-edit .cms-link-tools       { display: inline-flex  !important; }
body.cms-edit .cms-add-link         { display: inline-flex  !important; }
body.cms-edit .cms-link-warn        { display: inline-block !important; }
body.cms-edit .cms-field-color-chip { display: inline-flex  !important; }

/* Every editor-wrapped block must be a positioned ancestor so that
   the absolute-positioned .cms-block-tools (top-right ↑↓✕) and
   .cms-block-info (bottom-left name pill + colour chip) anchor to the
   block. Without this the pill falls back to the viewport, which
   authors see as "block name doesn't appear until refresh". */
body.cms-edit .cms-block-host { position: relative; }

/* ── EADA source CSS begins ───────────────────────────────── */
    :root {
      --red: #D93A5A;
      --red-dark: #B82E48;
      --red-light: #F0466A;
      --white: #FFFFFF;
      --off-white: #F7F5F2;
      --dark: #1A1A1A;
      --mid: #555555;
      --light: #AAAAAA;
      --rule: #E0DADA;
      --font-title: 'Avenir Next Arabic', 'Avenir Next', 'AvenirNext-Bold', sans-serif;
      --font-body: 'Helvetica Neue', 'HelveticaNeue', Helvetica, Arial, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--off-white);
      color: var(--dark);
      font-weight: 400;
      line-height: 1.6;
    }

    /* ── HEADER ─────────────────────────────────────── */
    header {
      background: var(--red);
      color: var(--white);
      padding: 60px 80px 70px;
      position: relative;
      overflow: hidden;
    }

    header::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 6px;
      background: repeating-linear-gradient(90deg, var(--white) 0, var(--white) 30px, transparent 30px, transparent 40px);
      opacity: 0.25;
    }

    .header-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 60px;
      align-items: end;
    }

    .logo-block {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .logo-text {
      font-family: var(--font-title);
      font-weight: 700;
      font-size: clamp(42px, 6vw, 72px);
      line-height: 0.92;
      letter-spacing: -0.01em;
      text-transform: uppercase;
    }

    .header-meta {
      padding-bottom: 6px;
    }

    .edition-tag {
      display: inline-block;
      border: 2px solid rgba(255,255,255,0.5);
      padding: 4px 14px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 18px;
      opacity: 0.85;
    }

    .header-tagline {
      font-size: 16px;
      font-weight: 300;
      line-height: 1.55;
      max-width: 380px;
      opacity: 0.88;
    }


    /* ── SECTIONS ─────────────────────────────────────── */
    .section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 80px;
    }

    .section + .section {
      border-top: 1px solid var(--rule);
    }

    .section-number {
      font-family: var(--font-title);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: var(--font-title);
      font-weight: 600;
      font-size: clamp(32px, 4vw, 52px);
      line-height: 0.95;
      text-transform: uppercase;
      color: var(--dark);
      margin-bottom: 36px;
    }

    .body-text {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.75;
      color: var(--mid);
      max-width: 680px;
    }

    .body-text p + p { margin-top: 16px; }

    /* ── PLACEHOLDER NOTICE ──────────────────────────── */
    .placeholder {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(217,58,90,0.08);
      border-left: 3px solid var(--red);
      padding: 10px 16px;
      font-size: 13px;
      font-weight: 500;
      color: var(--red-dark);
      margin-top: 20px;
      font-style: italic;
    }

    .placeholder::before {
      content: '✏';
      font-style: normal;
    }

    /* ── AWARD TRACKS ────────────────────────────────── */
    .award-tracks {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin-top: 52px;
      border: 1px solid var(--rule);
    }

    .track-card {
      padding: 36px 32px;
      display: flex;
      flex-direction: column;
    }

    .track-card.track-red  { background: var(--red);  color: var(--white); }
    .track-card.track-dark { background: var(--dark); color: var(--white); }
    .track-card.track-light { background: var(--white); color: var(--dark); border-left: 1px solid var(--rule); }

    .track-title {
      font-family: var(--font-title);
      font-size: 22px;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .track-divider {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.25);
      margin-bottom: 16px;
    }

    .track-card.track-light .track-divider { border-color: var(--rule); }

    .track-subtitle {
      font-size: 14px;
      font-style: italic;
      margin-bottom: 16px;
      opacity: 0.9;
    }

    .track-card.track-light .track-subtitle { color: var(--red); opacity: 1; }

    .track-desc {
      font-size: 14px;
      line-height: 1.65;
      opacity: 0.85;
      flex: 1;
      margin-bottom: 32px;
    }

    .track-card.track-light .track-desc { opacity: 1; color: var(--mid); }

    .track-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
    }

    .track-learn {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      border-bottom: 1px solid currentColor;
      padding-bottom: 2px;
      color: inherit;
    }

    .track-arrow {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid currentColor;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      opacity: 0.65;
      text-decoration: none;
      color: inherit;
    }

    @media (max-width: 768px) {
      .award-tracks { grid-template-columns: 1fr; }
      .track-card.track-light { border-left: none; border-top: 1px solid var(--rule); }
    }

    /* ── GRID CARDS ──────────────────────────────────── */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 1px;
      background: var(--rule);
      border: 1px solid var(--rule);
      margin-top: 40px;
    }

    .card {
      background: var(--off-white);
      padding: 32px 28px;
    }

    .card-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 10px;
    }

    .card-value {
      font-family: var(--font-title);
      font-size: 28px;
      font-weight: 600;
      line-height: 1.1;
      color: var(--dark);
      text-transform: uppercase;
    }

    .card-sub {
      font-size: 13px;
      color: var(--light);
      margin-top: 6px;
    }

    /* ── AWARD SPLIT ─────────────────────────────────── */
    .award-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 580px;
    }

    .award-split-image {
      background: #B8B4AE;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 580px;
      overflow: hidden;
    }

    .award-split-image span {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    .asc {
      padding: 64px 72px;
      display: flex;
      flex-direction: column;
    }

    .asc-red  { background: var(--red);  color: var(--white); }
    .asc-dark { background: var(--dark); color: var(--white); }
    .asc-light { background: var(--white); color: var(--dark); }

    .asc-title {
      font-family: var(--font-title);
      font-size: clamp(28px, 3vw, 38px);
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1.05;
      margin-bottom: 16px;
    }

    .asc-desc {
      font-size: 14px;
      line-height: 1.7;
      opacity: 0.85;
      margin-bottom: 0;
    }

    .asc-light .asc-desc { opacity: 1; color: var(--mid); }

    .asc-hr {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.2);
      margin: 28px 0;
    }

    .asc-light .asc-hr { border-color: var(--rule); }

    .asc-block-title {
      font-family: var(--font-title);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .asc-fee-main { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
    .asc-fee-note { font-size: 13px; font-style: italic; opacity: 0.7; margin-bottom: 14px; }
    .asc-fee-text { font-size: 14px; line-height: 1.6; opacity: 0.82; }
    .asc-light .asc-fee-text { color: var(--mid); opacity: 1; }

    .asc-deadline { margin-bottom: 16px; }
    .asc-deadline-date { font-size: 15px; font-weight: 600; }
    .asc-deadline-label { font-size: 13px; font-style: italic; opacity: 0.7; }

    .asc-footnote {
      font-size: 13px;
      font-style: italic;
      opacity: 0.7;
      line-height: 1.55;
      margin-top: 4px;
    }

    .asc-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: auto;
      padding-top: 32px;
      align-self: flex-start;
    }

    .asc-cta a {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(0,0,0,0.25);
      color: var(--white);
      padding: 14px 24px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
    }

    .asc-light .asc-cta a { background: var(--dark); color: var(--white); }

    @media (max-width: 768px) {
      .award-split { grid-template-columns: 1fr; }
      .award-split-image { min-height: 280px; order: -1; }
      .asc { padding: 40px 24px; }
    }

    /* ── TIMELINE ────────────────────────────────────── */
    .timeline {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 160px 1fr;
      align-items: start;
      gap: 32px;
      padding: 28px 0;
      border-bottom: 1px solid var(--rule);
      position: relative;
    }

    .timeline-item:first-child { border-top: 1px solid var(--rule); }

    .tl-date {
      font-family: var(--font-title);
      font-size: 20px;
      font-weight: 600;
      color: var(--red);
      text-transform: uppercase;
      line-height: 1.1;
    }

    .tl-label {
      font-size: 15px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .tl-desc {
      font-size: 14px;
      color: var(--mid);
    }

    /* ── CATEGORIES ──────────────────────────────────── */
    .category-list {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 1px;
      background: var(--rule);
      border: 1px solid var(--rule);
    }

    .category-item {
      background: var(--off-white);
      padding: 0;
    }

    .category-item details {
      padding: 22px 28px;
    }

    .cat-header {
      display: flex;
      align-items: center;
      gap: 14px;
      cursor: pointer;
      user-select: none;
      list-style: none;
    }

    .cat-header::-webkit-details-marker { display: none; }

    .cat-number {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--red);
      flex-shrink: 0;
    }

    .cat-name {
      font-family: var(--font-title);
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--dark);
      line-height: 1.15;
    }

    .cat-toggle {
      margin-left: auto;
      font-size: 16px;
      color: var(--red);
      transition: transform 0.2s;
      flex-shrink: 0;
    }

    details[open] .cat-toggle {
      transform: rotate(180deg);
    }

    .cat-subcategories {
      margin-top: 16px;
      padding-left: 28px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      list-style: none;
    }

    .cat-subcategories li {
      font-size: 14px;
      color: var(--mid);
      display: flex;
      gap: 12px;
      align-items: flex-start;
      line-height: 1.45;
    }

    .cat-subcategories li::before {
      content: '—';
      color: var(--red);
      font-weight: 700;
      flex-shrink: 0;
    }

    /* ── JURY PREVIEW ────────────────────────────────── */
    .jury-preview-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
      margin-bottom: 52px;
    }

    .jury-photo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .jury-photo-placeholder {
      aspect-ratio: 1 / 1;
      background: var(--rule);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .jury-photo-placeholder span {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--light);
    }

    .jury-cta-wrap {
      margin-top: 44px;
      text-align: center;
    }

    .jury-cta-btn {
      display: inline-block;
      border: 2px solid var(--dark);
      padding: 15px 36px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--dark);
      transition: background 0.2s, color 0.2s;
    }

    .jury-cta-btn:hover { background: var(--dark); color: var(--white); }

    /* ── FULL-WIDTH BANNER ────────────────────────────── */
    .page-banner {
      width: 100%;
      min-height: 420px;
      background: #B0ABA4;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
    }

    .page-banner-inner {
      padding: 60px 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .page-banner-title {
      font-family: var(--font-title);
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 700;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.05;
      letter-spacing: -0.01em;
      text-shadow: 0 2px 20px rgba(0,0,0,0.18);
    }

    .page-banner-sub {
      font-size: 17px;
      font-weight: 300;
      color: rgba(255,255,255,0.88);
      max-width: 540px;
      line-height: 1.6;
      text-shadow: 0 1px 8px rgba(0,0,0,0.15);
    }

    @media (max-width: 768px) {
      .jury-preview-header { grid-template-columns: 1fr; gap: 24px; }
      .jury-photo-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ── JURY ────────────────────────────────────────── */
    .jury-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }

    .jury-card {
      background: var(--white);
      border: 1px solid var(--rule);
      padding: 28px 22px;
    }

    .jury-avatar {
      width: 60px;
      height: 60px;
      background: var(--rule);
      border-radius: 50%;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-title);
      font-size: 20px;
      font-weight: 600;
      color: var(--red);
    }

    .jury-name {
      font-family: var(--font-title);
      font-size: 18px;
      font-weight: 600;
      text-transform: uppercase;
      color: var(--dark);
      line-height: 1.1;
      margin-bottom: 6px;
    }

    .jury-role {
      font-size: 12px;
      color: var(--mid);
    }

    /* ── PRIZES ──────────────────────────────────────── */
    .prizes-row {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1px;
      background: var(--rule);
      border: 1px solid var(--rule);
      margin-top: 40px;
    }

    .prize-item {
      background: var(--off-white);
      padding: 32px 28px;
      text-align: center;
    }

    .prize-item.gold { background: var(--dark); }

    .prize-tier {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--light);
      margin-bottom: 12px;
    }

    .prize-item.gold .prize-tier { color: rgba(255,255,255,0.5); }

    .prize-amount {
      font-family: var(--font-title);
      font-size: 42px;
      font-weight: 700;
      color: var(--dark);
      line-height: 1;
    }

    .prize-item.gold .prize-amount { color: var(--white); }

    .prize-desc {
      font-size: 12px;
      color: var(--light);
      margin-top: 8px;
    }

    /* ── ELIGIBILITY / LIST ───────────────────────────── */
    .styled-list {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .styled-list li {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      font-size: 15px;
      color: var(--mid);
      line-height: 1.55;
      list-style: none;
    }

    .styled-list li::before {
      content: '—';
      color: var(--red);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ── CONTACT ─────────────────────────────────────── */
    .contact-block {
      background: var(--red);
      color: var(--white);
      padding: 60px 80px;
    }

    .contact-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .contact-title {
      font-family: var(--font-title);
      font-size: 48px;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 0.92;
      margin-bottom: 20px;
    }

    .contact-text {
      font-size: 15px;
      opacity: 0.85;
      line-height: 1.65;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .contact-row label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      opacity: 0.6;
      display: block;
      margin-bottom: 6px;
    }

    .contact-row a, .contact-row span {
      font-size: 16px;
      font-weight: 500;
      color: var(--white);
      text-decoration: none;
    }

    /* ── FOOTER ──────────────────────────────────────── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.45);
      padding: 64px 80px 32px;
      font-size: 13px;
    }

    .footer-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-brand {
      font-family: var(--font-title);
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      text-transform: uppercase;
      line-height: 1.3;
      letter-spacing: 0.02em;
      margin-bottom: 14px;
    }

    .footer-tagline {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      line-height: 1.65;
    }

    .footer-col-title {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 18px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--white); }

    .footer-news-placeholder {
      font-size: 12px;
      font-style: italic;
      color: rgba(255,255,255,0.25);
      line-height: 1.6;
      margin-top: 4px;
    }

    .footer-bottom {
      max-width: 1100px;
      margin: 28px auto 0;
      font-size: 11px;
      color: rgba(255,255,255,0.22);
      letter-spacing: 0.07em;
      display: flex;
      justify-content: space-between;
    }

    @media (max-width: 768px) {
      header, .section, .contact-block, footer { padding-left: 24px; padding-right: 24px; }
      .header-inner { grid-template-columns: 1fr; gap: 28px; }
      .contact-inner { grid-template-columns: 1fr; }
      nav ul { padding-left: 24px; }
      .timeline-item { grid-template-columns: 1fr; gap: 8px; }
    }

/* ── Landing-only rules not present in the standalone CSS ── */
:root { --off: #F7F5F2; }

/* Stats row (landing) — copied from EADA_website.html */
.stat-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 64px;
}
.stat-item {
  background: var(--white);
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.stat-value {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
}
@media (max-width: 900px) {
  .stat-row { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr !important; }
}

/* Cookie bar — ADS-CMS addition (not in EADA source). Dark bar
   above the sticky nav so it doesn't clash with page chrome. */
.cookie {
  position: fixed; left: 0; right: 0; top: 0; z-index: 200;
  background: var(--dark); color: var(--white);
  padding: 10px 22px; font-size: 12px; line-height: 1.4;
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
  letter-spacing: 0;
}
.cookie p { margin: 0; max-width: 850px; }
.cookie button, .cookie button.primary {
  border: 1px solid var(--white); background: transparent; color: var(--white);
  padding: 6px 12px; text-transform: uppercase; font-weight: 600; font-size: 11px; letter-spacing: .1em; cursor: pointer;
}
.cookie button:hover, .cookie button.primary:hover { background: var(--white); color: var(--dark); }
.cookie[hidden] { display: none; }

/* Push the sticky nav below the cookie bar until dismissed */
nav { top: var(--cookie-h, 0px) !important; }

/* ── Topbar + slide-menu (ported verbatim from EADA_website.html) ── */
.topbar {
  position: sticky;
  top: var(--cookie-h, 0px);
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topbar-inner {
  max-width: 100%;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
  cursor: pointer;
}
.topbar-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-cta {
  background: var(--red);
  color: var(--white);
  padding: 10px 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.topbar-cta:hover { background: var(--red-dark); }
.menu-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
}

/* Mobile topbar — hide tagline + topbar CTA (still in slide-menu),
   tighten padding so brand + hamburger both stay in view. */
@media (max-width: 768px) {
  .topbar-inner { padding: 0 16px; }
  .topbar-brand { gap: 8px; }
  .topbar-sub   { display: none; }
  .topbar-cta   { display: none; }
  .topbar-right { gap: 0; }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.slide-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: #111;
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.slide-menu.open {
  transform: translateX(0);
}
.slide-menu-header {
  display: flex;
  justify-content: flex-end;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.menu-close {
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  font-size: 20px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 0 40px;
}
.slide-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.slide-nav ul li a {
  display: block;
  padding: 14px 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.slide-nav ul li a:hover,
.slide-nav ul li a.active {
  color: var(--white);
  border-left-color: var(--red);
  background: rgba(255,255,255,0.04);
}
.slide-nav-group {
  padding: 20px 40px 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.slide-cta-wrap {
  padding: 32px 40px 0;
  margin-top: auto;
}
.slide-cta {
  display: block;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 18px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}
.slide-cta:hover { background: var(--red-dark); }

/* ── Link-list editor tools — force inline row inside slide-nav
   and footer link lists so URL pill + ▲▼✕ sit next to the link. */
body.cms-edit .slide-nav ul li,
body.cms-edit .block-footer ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
body.cms-edit .slide-nav ul li a,
body.cms-edit .block-footer ul li a { flex: 0 1 auto; min-width: 0; }

/* ── Timeline (shared) ──
   Used by eada_timeline (standalone) and eada_how_to_enter blocks.
   Vertical rail with per-step bullet + card. site.js grows the fill
   inside .eada-timeline__fill and toggles .is-active on markers as
   they cross the viewport midline. */
.eada-timeline {
  position: relative;
  padding-left: 56px;
}
.eada-timeline__rail {
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--rule);
  z-index: 0;
}
.eada-timeline__fill {
  position: absolute;
  left: 15px;
  top: 8px;
  width: 2px;
  height: 0;
  background: var(--dark);
  z-index: 1;
  transition: height 0.15s linear;
}
.eada-timeline__step {
  position: relative;
  padding: 4px 0 44px;
  min-height: 60px;
}
.eada-timeline__step:last-child { padding-bottom: 0; }
.eada-timeline__marker {
  position: absolute;
  left: -50px;
  top: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--rule);
  background: var(--white);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.eada-timeline__marker::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--rule);
  transition: background 0.3s ease;
}
.eada-timeline__marker.is-active {
  border-color: var(--dark);
  background: var(--dark);
}
.eada-timeline__marker.is-active::after { background: var(--white); }
.eada-timeline__step-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dark);
  margin: 0 0 12px;
}
.eada-timeline__step-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--mid);
  margin: 0;
}
