/* ============================================================
   Σχεδία (Shedia) — Homepage  ·  Design tokens & styles
   Recreated from Shedia_Homepage_and_menu.fig
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&display=swap');

:root {
  /* Brand */
  --red-51: #DA2B31;
  --red-40: #C4091E;
  --red-51-25: rgba(218, 43, 49, 0.25);
  --red-51-20: rgba(218, 43, 49, 0.20);
  --red-51-10: rgba(218, 43, 49, 0.10);
  --red-51-05: rgba(218, 43, 49, 0.05);
  --red-51-02: rgba(218, 43, 49, 0.02);

  --orange-50: #FFB900;
  --orange-45: #E6A700;
  --peach: #FFB774;
  --blue-il: #6CADDF;
  --indigo-il: #1900A8;

  /* Neutrals */
  --grey-13: #1E2022;          /* near-black ink */
  --black: #000000;
  --white: #FFFFFF;
  --grey-91: #E7E7E7;
  --grey-96: #F6F6F6;
  --grey-d4: #D4D4D4;

  --ink-90: rgba(30, 32, 34, 0.90);
  --ink-80: rgba(30, 32, 34, 0.80);
  --ink-70: rgba(30, 32, 34, 0.70);
  --ink-60: rgba(30, 32, 34, 0.60);
  --ink-45: rgba(30, 32, 34, 0.45);
  --ink-10: rgba(30, 32, 34, 0.10);

  --white-90: rgba(255, 255, 255, 0.90);
  --white-70: rgba(255, 255, 255, 0.70);
  --white-60: rgba(255, 255, 255, 0.60);
  --white-40: rgba(255, 255, 255, 0.40);
  --white-15: rgba(255, 255, 255, 0.15);

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --container: 1800px;
  --pad: clamp(20px, 5vw, 100px);

  --r-pill: 9999px;
  --r-card: 24px;
  --r-img: 25px;
  --r-md: 12px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-y: scroll; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--grey-13);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--red-51);
  margin: 0;
}
.section-h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: var(--grey-13);
}

/* ---------- generic buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 17px 32px;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-red { background: var(--red-51); color: #fff; }
.btn-red:hover { background: var(--red-40); }
.btn-outline-dark { border: 2px solid var(--grey-13); color: var(--grey-13); }
.btn-outline-dark:hover { background: var(--grey-13); color: #fff; }
.btn-outline-red { border: 2px solid var(--red-51); color: var(--red-51); }
.btn-outline-red:hover { background: var(--red-51); color: #fff; }
.btn-white { background: #fff; color: var(--grey-13); border: 2px solid #fff; }
.btn-white:hover { background: transparent; color: #fff; }
.btn-peach { background: var(--peach); color: var(--grey-13); }
.btn-peach:hover { filter: brightness(1.05); }
.btn-ico {
  width: 20px; height: 20px; flex: 0 0 auto; display: block;
  background-color: currentColor;
  -webkit-mask: url("assets/icon-gine-syndromitis.svg") no-repeat center / contain;
  mask: url("assets/icon-gine-syndromitis.svg") no-repeat center / contain;
}
.btn-outline-white { border: 2px solid var(--white-40); color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--red-40); }

/* frosted-glass button — only for use OVER imagery/video (e.g. the hero),
   where there's something behind it to blur. Don't use on flat-white sections. */
.btn-frost {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  box-shadow: 0 8px 28px -12px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
}
.btn-frost:hover { background: rgba(255,255,255,0.92); color: var(--grey-13); border-color: #fff; }

/* arrow-on-hover: the custom thin arrow grows in right after the label on hover,
   widening the button so it nudges its neighbour (intended "push"). No reserved gap
   at rest (collapsed to 0 width). Masked → takes the button's text colour.
   NB: inline-block (not flex) so the masked ::after keeps real inline width and
   doesn't collapse the way an empty flex item does. */
.btn-arrow { display: inline-block; text-align: center; white-space: nowrap; }
.btn-arrow::after {
  content: "";
  display: inline-block; vertical-align: middle; position: relative; top: -.06em;
  width: 1.35em; height: .9em;
  max-width: 0; margin-left: 0; opacity: 0;
  background-color: currentColor;
  -webkit-mask: url("assets/thin-arrow.svg") no-repeat center / contain;
  mask: url("assets/thin-arrow.svg") no-repeat center / contain;
  transform: translateX(-.3em); overflow: hidden;
  transition: max-width .28s cubic-bezier(.22,1,.36,1), margin-left .28s cubic-bezier(.22,1,.36,1),
              opacity .2s ease, transform .26s cubic-bezier(.22,1,.36,1);
}
.btn-arrow:hover::after { max-width: 1.35em; margin-left: .5em; opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .btn-arrow::after { transition: max-width .2s ease, margin-left .2s ease, opacity .2s ease; transform: translateX(0); }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
}
.link-arrow i { transition: transform .2s ease; }
.link-arrow:hover i { transform: translateX(4px); }

/* ============================================================
   PREHEADER
   ============================================================ */
.preheader {
  background: linear-gradient(90deg, #000 0%, #74171A 100%);
  color: #fff;
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 7px 44px;
  text-align: center;
}
.preheader .ph-inner { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.preheader i { color: var(--orange-50); }
.preheader a { color: #fff; font-weight: 700; }
.preheader a:hover { text-decoration: underline; }
/* dismiss button — pinned to the right edge */
.preheader { position: relative; }
.ph-close {
  position: absolute; top: 50%; right: 10px; transform: translateY(-50%);
  width: 28px; height: 28px; flex: 0 0 auto;
  display: grid; place-items: center;
  background: transparent; border: none; border-radius: 50%;
  color: rgba(255,255,255,0.7); font-size: 15px; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.ph-close:hover { background: rgba(255,255,255,0.16); color: #fff; }
.preheader.is-closed { display: none; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  /* own compositing layer — stops the sticky+backdrop-filter flicker on scroll */
  transform: translateZ(0);
  will-change: transform;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}
/* fallback for browsers without backdrop-filter */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .header { background: rgba(255, 255, 255, 0.96); }
}
.header-inner {
  max-width: 1788px;
  margin-inline: auto;
  height: 84px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-inline: clamp(20px, 3.4vw, 66px);
}
.brand { display: inline-flex; align-items: center; position: relative; }
.brand-logo { display: block; transition: opacity .3s ease, transform .35s cubic-bezier(.2,.6,.2,1); }
.brand-full { height: 56px; width: auto; }
.brand-mark {
  height: 52px; width: auto;
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%) scale(.85);
  opacity: 0; pointer-events: none;
}
/* when scrolled: shrink + crossfade to the emblem mark */
.header.scrolled .brand-full { opacity: 0; transform: scale(.9); }
.header.scrolled .brand-mark { opacity: 1; transform: translateY(-50%) scale(1); }
@media (prefers-reduced-motion: reduce) {
  .brand-logo { transition: none; }
}
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--red-51);
  font-size: 18px;
  transition: background .15s ease;
}
.icon-btn:hover { background: var(--red-51-10); }
.icon-btn .search-ico { width: 20px; height: 20px; display: block; }
.header .spacer { flex: 1; }

.lang-switch {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 700; font-size: 15px; color: var(--grey-13);
}
.lang-switch button { color: var(--ink-60); padding: 4px 6px; border-radius: 6px; font-weight: 700; }
.lang-switch button.active { color: var(--grey-13); }
.lang-switch .sep { color: #C9C9C9; }
/* header language: single circular toggle showing the current language flag */
.lang-toggle {
  width: 20px; height: 20px; border-radius: 50%; flex: 0 0 auto;
  position: relative; overflow: hidden; padding: 0; box-sizing: border-box;
  border: 1.5px solid rgba(0,0,0,0.16); background: #fff; cursor: pointer;
  transition: border-color .22s ease, transform .18s ease, box-shadow .22s ease;
}
.lang-toggle .flag { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
.lang-toggle[data-lang="gr"] .flag-gr { display: block; }
.lang-toggle[data-lang="en"] .flag-en { display: block; }
.lang-toggle:hover { border-color: rgba(0,0,0,0.35); box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.lang-toggle:active { transform: scale(.92); }
.header .vdivider { width: 1px; height: 37px; background: #C9C9C9; }

.btn-eshop {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: #1A1818; color: #fff;
  font-weight: 700; font-size: 15px;
  height: 55px; padding: 0 18px; border-radius: var(--r-pill);
  transition: background .15s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-eshop:hover { background: #000; transform: translateY(-2px); box-shadow: 0 10px 22px -12px rgba(0,0,0,0.55); }
.eshop-ico {
  width: 12px; height: 12px; flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url("assets/up-right-arrow.svg") no-repeat center / contain;
  mask: url("assets/up-right-arrow.svg") no-repeat center / contain;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
}
/* arrow launches up-and-right on hover */
.btn-eshop:hover .eshop-ico { transform: translate(2px, -2px); }
@media (prefers-reduced-motion: reduce) {
  .btn-eshop, .eshop-ico { transition: background .15s ease; }
  .btn-eshop:hover { transform: none; }
  .btn-eshop:hover .eshop-ico { transform: none; }
}
.btn-support {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FFB900; color: #000;
  font-weight: 700; font-size: 15px;
  padding: 18px 30px; border-radius: var(--r-pill);
  transition: background .15s ease;
}
.btn-support:hover { background: #FF9D00; }
.btn-support .chev { transition: transform .25s ease; font-size: 13px; }

/* ---- support dropdown ---- */
.support-dd { position: relative; }
.support-dd.open .btn-support { background: #FF9D00; }
.support-dd.open .chev { transform: rotate(180deg); }
.support-menu {
  position: absolute; top: calc(100% + 12px); right: 0;
  width: 366px; padding: 12px;
  background: #fff;
  border: 1px solid var(--grey-91);
  border-radius: 18px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.30), 0 6px 14px -8px rgba(0,0,0,0.15);
  display: flex; flex-direction: column; gap: 4px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transform-origin: top right;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 80;
}
.support-dd.open .support-menu { opacity: 1; visibility: visible; transform: none; }
.support-menu::before {
  content: ''; position: absolute; top: -7px; right: 38px;
  width: 14px; height: 14px; background: #fff;
  border-left: 1px solid var(--grey-91); border-top: 1px solid var(--grey-91);
  transform: rotate(45deg);
}
.sm-row {
  display: flex; align-items: center; gap: 15px;
  padding: 15px 16px; border-radius: 13px;
  transition: background .15s ease, transform .15s ease;
}
.sm-row:hover { transform: translateX(3px); }
.sm-ic {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--grey-96); border-radius: 10px;
  transition: background .15s ease;
}
.sm-ic img { width: 25px; height: 25px; display: block; }
.sm-label { font-weight: 700; font-size: 16px; letter-spacing: -.2px; white-space: nowrap; }
.r-yellow .sm-label { color: var(--orange-45); }   .r-yellow:hover { background: rgba(255,185,0,0.12); }   .r-yellow:hover .sm-ic { background: rgba(255,185,0,0.18); }
.r-blue   .sm-label { color: var(--blue-il); }      .r-blue:hover   { background: rgba(108,173,223,0.12); } .r-blue:hover .sm-ic   { background: rgba(108,173,223,0.20); }
.r-peach  .sm-label { color: #E8965A; }             .r-peach:hover  { background: rgba(255,183,116,0.14); } .r-peach:hover .sm-ic  { background: rgba(255,183,116,0.22); }
.r-red    .sm-label { color: var(--red-51); }       .r-red:hover    { background: var(--red-51-05); }       .r-red:hover .sm-ic    { background: var(--red-51-10); }
.r-indigo .sm-label { color: var(--indigo-il); }    .r-indigo:hover { background: rgba(25,0,168,0.07); }     .r-indigo:hover .sm-ic { background: rgba(25,0,168,0.12); }
.btn-menu {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--grey-13); font-weight: 700; font-size: 16px;
  padding: 18px 19px; border-radius: var(--r-pill);
  transition: background .32s cubic-bezier(.22,1,.36,1), color .25s ease, box-shadow .32s ease;
}
.btn-menu .menu-label { }
.btn-menu:hover { background: var(--red-51-10); color: var(--red-51); }
.btn-menu .bars { display: inline-flex; flex-direction: column; gap: 4px; width: 19px; }
.btn-menu .bars span { height: 2px; width: 100%; background: var(--grey-13); border-radius: 2px;
  transition: width .4s cubic-bezier(.22,1,.36,1), margin .4s cubic-bezier(.22,1,.36,1), background .25s ease; }
.btn-menu .bars span:nth-child(2) { width: 70%; margin-left: auto; }
/* hover: bars turn red and reshuffle their widths with a gentle stagger */
.btn-menu:hover .bars span { background: var(--red-51); }
.btn-menu:hover .bars span:nth-child(1) { width: 60%; margin-left: auto; transition-delay: 0s; }
.btn-menu:hover .bars span:nth-child(2) { width: 100%; margin-left: 0; transition-delay: .07s; }
.btn-menu:hover .bars span:nth-child(3) { width: 75%; margin-left: auto; transition-delay: .14s; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  border-radius: 0 0 35px 35px;
  overflow: hidden;
  background: var(--grey-13);
}
.hero-track { position: relative; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .8s ease;
  background-size: cover;
  background-position: 50% 50%;
}
.hero-slide.active { opacity: 1; visibility: visible; }
/* video slide */
.hero-video { background: #000; }
.hero-yt { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 0; object-fit: cover; }
.hero-yt-facade { position: absolute; inset: 0; z-index: 0; cursor: pointer; overflow: hidden; }
.hero-yt-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-yt-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 92px; height: 92px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(218, 9, 30, 0.92); color: #fff; font-size: 30px; padding-left: 5px;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.6);
  transition: transform .25s cubic-bezier(.2,.6,.2,1), background .2s ease;
}
.hero-yt-facade:hover .hero-yt-play { transform: translate(-50%, -50%) scale(1.08); background: var(--red-51); }
.hero-yt-facade:focus-visible { outline: 3px solid #fff; outline-offset: -6px; }
.hero-video::before { z-index: 1; pointer-events: none; }
.hero-video .hero-content { z-index: 2; pointer-events: none; }
.hero-video .hero-content a, .hero-video .hero-content button { pointer-events: auto; }
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0.52) 52%, rgba(0,0,0,0.28) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0) 42%);
}
/* height scales with width but never exceeds the viewport (minus preheader+header),
   so the dots/arrows at the bottom stay visible at sizes like 1920×1080 */
.hero-track { height: max(500px, min(clamp(560px, 48vw, 900px), calc(100svh - 150px))); }
.hero-content {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  gap: 24px;
}
.hero-text { max-width: 672px; }
.hero h1 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.hero p {
  color: #fff;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 30px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.32);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-dots {
  position: absolute;
  left: max(var(--pad), calc(50% - var(--container)/2 + var(--pad))); bottom: 56px;
  display: flex; gap: 10px; z-index: 3; align-items: center;
}
.hero-dot { box-sizing: border-box; flex: 0 0 auto; width: 10px; height: 10px; padding: 0; border: 0; -webkit-appearance: none; appearance: none; border-radius: 50%; background: var(--white-40); cursor: pointer; transition: background .3s ease, transform .3s ease; }
.hero-dot.active { width: 10px; height: 10px; border-radius: 50%; background: #fff; transform: scale(1.3); }
.hero-arrows { position: absolute; right: max(var(--pad), calc(50% - var(--container)/2 + var(--pad))); bottom: 48px; display: flex; gap: 12px; z-index: 3; }
.hero-arrows button {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white-15); color: #fff; font-size: 16px;
  backdrop-filter: blur(4px);
  transition: background .15s ease;
}
.hero-arrows button:hover { background: var(--white-40); }
.hero-arrows button svg { width: 22px; height: 22px; display: block; }

/* ============================================================
   NUMBERS
   ============================================================ */
.numbers {
  background: var(--red-51-02);
  border-radius: 0 0 50px 50px;
  padding: clamp(76px, 7vw, 104px) 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat .num {
  font-weight: 800;
  font-size: clamp(34px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -1px;
}
.stat .label { font-weight: 700; font-size: 18px; color: var(--ink-70); margin-top: 6px; }
.stat:nth-child(1) .num { color: var(--red-51); }
.stat:nth-child(2) .num { color: var(--orange-50); }
.stat:nth-child(3) .num { color: var(--blue-il); }
.stat:nth-child(4) .num { color: var(--grey-13); }

/* ============================================================
   ΤΙ ΕΙΝΑΙ Η ΣΧΕΔΙΑ  (what is shedia)
   ============================================================ */
.whatis { padding: clamp(96px, 9vw, 150px) 0; }
.whatis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}
.whatis-copy .eyebrow { margin-bottom: 20px; }
.whatis-copy h2 {
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 800; line-height: 1.18; letter-spacing: -0.5px;
  margin-bottom: 24px; text-wrap: balance;
}
.whatis-copy p.lead { color: var(--ink-80); font-size: 16px; line-height: 1.83; margin-bottom: 32px; max-width: 585px; }
.whatis-copy .btn-outline-dark { margin-top: 18px; }
.whatis-media { position: relative; }
.whatis-media img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--r-img);
}
.mission {
  position: absolute; left: -28px; bottom: 48px;
  width: 320px; max-width: 80%;
  background: var(--orange-50);
  border-radius: var(--r-md);
  padding: 22px 30px;
}
.mission h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--grey-13); }
.mission p { font-size: 15px; line-height: 1.5; color: var(--grey-13); }

/* ============================================================
   ΤΟ ΠΕΡΙΟΔΙΚΟ  (the magazine)
   ============================================================ */
.magazine-wrap { padding: 0 0 clamp(40px,5vw,70px); }
.magazine {
  position: relative;
  background: var(--red-40);
  border-radius: 50px;
  overflow: hidden;
  max-width: 1788px;
  margin-inline: auto;
  padding: clamp(48px, 7vw, 140px) clamp(28px, 5vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.magazine::after {
  content: '';
  position: absolute; right: -60px; bottom: -120px;
  width: 620px; height: 453px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  transform: rotate(-8deg);
  pointer-events: none;
}
.mag-covers { position: relative; display: flex; justify-content: center; align-items: center; min-height: 520px; }
.mag-cover-stack { position: relative; display: flex; justify-content: center; }
.mag-cover-stack::before {
  content: '';
  position: absolute; z-index: 1;
  width: clamp(280px, 27vw, 430px);
  aspect-ratio: 508 / 641;
  top: 8px; left: 22px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  transform: rotate(5deg);
}
.mag-cover-img {
  position: relative; z-index: 2;
  width: clamp(280px, 27vw, 430px);
  height: auto;
  border-radius: 14px;
  box-shadow: 0 34px 70px -18px rgba(0,0,0,0.55);
  transform: rotate(-3.5deg);
  transition: opacity .35s ease, transform .45s ease;
}
.mag-cover-img.swapping { opacity: 0; transform: rotate(-3.5deg) scale(.97); }
.mag-content { position: relative; z-index: 4; color: #fff; max-width: 700px; }
.mag-eyebrow { color: var(--peach); text-transform: uppercase; font-weight: 700; font-size: 14px; letter-spacing: .7px; margin-bottom: 24px; }
.mag-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 26px; }
.mag-tab {
  padding: 13px 24px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px; color: var(--grey-13);
  background: rgba(255,255,255,0.85);
  border: 1px solid transparent;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.mag-tab.active { background: var(--orange-50); color: var(--grey-13); }
.mag-tab:hover:not(.active) { background: #fff; transform: translateY(-1px); }
.mag-content h2 { font-size: clamp(26px, 2.8vw, 38px); font-weight: 800; line-height: 1.3; margin-bottom: 22px; text-wrap: balance; }
.mag-content p { color: var(--white-90); font-size: 16px; line-height: 1.83; margin-bottom: 32px; white-space: pre-line; }
.mag-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 12px; }

/* ============================================================
   ΔΡΑΣΕΙΣ / ecosystem
   ============================================================ */
.ecosystem { padding: clamp(96px, 9vw, 150px) 0; }
.eco-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); }
.eco-head .eyebrow { margin-bottom: 16px; color: var(--red-51); }
.eco-head h2 { margin-bottom: 16px; }
.eco-head p { color: var(--ink-70); font-size: 16px; }
.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.eco-card {
  position: relative;
  height: clamp(440px, 38vw, 580px);
  border-radius: var(--r-card);
  overflow: hidden;
  isolation: isolate;
  background: var(--grey-13);
}
.eco-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}
.eco-card:hover .eco-img { transform: scale(1.06); }
/* dark base shade — always present for legibility */
.eco-shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,18,18,0.85) 0%, rgba(20,18,18,0.35) 38%, rgba(20,18,18,0) 65%);
  transition: opacity .45s ease;
}
/* brand color flood — subtle at rest, full on hover */
.eco-tint {
  position: absolute; inset: 0; z-index: 2;
  opacity: .22;
  transition: opacity .45s ease;
}
.eco-card:hover .eco-tint { opacity: .9; }
.eco-card.c-red    .eco-tint { background: linear-gradient(to top, var(--red-51) 8%, rgba(218,43,49,0.55) 45%, rgba(218,43,49,0) 80%); }
.eco-card.c-orange .eco-tint { background: linear-gradient(to top, #E07B0E 8%, rgba(224,123,14,0.55) 45%, rgba(224,123,14,0) 80%); }
.eco-card.c-blue   .eco-tint { background: linear-gradient(to top, #2F7FB8 8%, rgba(47,127,184,0.55) 45%, rgba(47,127,184,0) 80%); }

.eco-body {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px 34px;
  color: #fff;
}
.eco-index {
  font-size: 15px; font-weight: 800; letter-spacing: 1px;
  color: var(--white-70); margin-bottom: auto;
}
.eco-card h3 {
  font-size: clamp(24px, 2vw, 30px); font-weight: 800; letter-spacing: -.4px;
  line-height: 1.15; margin-bottom: 0;
  text-shadow: 0 2px 14px rgba(0,0,0,0.3);
}
.eco-reveal {
  display: grid; grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .45s cubic-bezier(.2,.6,.2,1), opacity .35s ease, margin-top .45s ease;
  margin-top: 0;
}
.eco-reveal > * { overflow: hidden; min-height: 0; }
.eco-card:hover .eco-reveal { grid-template-rows: 1fr; opacity: 1; margin-top: 14px; }
.eco-reveal p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.92); }
.eco-more {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 18px; font-weight: 700; font-size: 14px; color: #fff;
}
.eco-more i { transition: transform .25s ease; }
.eco-card:hover .eco-more i { transform: translateX(4px); }
.eco-link { position: absolute; inset: 0; z-index: 4; }
/* keyboard focus reveal */
.eco-card:focus-within .eco-img { transform: scale(1.06); }
.eco-card:focus-within .eco-tint { opacity: .9; }
.eco-card:focus-within .eco-reveal { grid-template-rows: 1fr; opacity: 1; margin-top: 14px; }

/* ============================================================
   ΟΙ ΚΟΙΝΩΝΙΚΕΣ ΜΑΣ ΔΡΑΣΕΙΣ  (activities carousel)
   ============================================================ */
.activities { background: rgba(212,212,212,0.19); padding: clamp(96px, 9vw, 150px) 0; overflow: hidden; }
.act-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: clamp(36px, 4vw, 56px);
}
.act-head .eyebrow { margin-bottom: 14px; color: var(--red-51); }
.act-head .h-left { max-width: 820px; }
.act-head h2 { margin-bottom: 12px; }
.act-head p { color: var(--ink-70); font-size: 16px; }
.carousel-arrows { display: flex; gap: 11px; flex-shrink: 0; }
.carousel-arrows button {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: transparent; border: 1.5px solid rgba(0,0,0,0.22);
  color: rgba(0,0,0,0.55);
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
/* hide the Font Awesome glyph; draw the custom thin arrow as a currentColor mask */
.carousel-arrows button > i { display: none; }
.carousel-arrows button::before {
  content: ""; width: 22px; height: 14px;
  background-color: currentColor;
  -webkit-mask: url("assets/thin-arrow.svg") no-repeat center / contain;
  mask: url("assets/thin-arrow.svg") no-repeat center / contain;
}
.carousel-arrows .prev::before { transform: rotate(180deg); }
.carousel-arrows button.is-on { border-color: rgba(0,0,0,0.55); color: #000; }
.carousel-arrows button:hover { background: rgba(0,0,0,0.06); border-color: #000; color: #000; }
/* news arrows: shown on desktop (carousel) */
.blog-arrows { display: flex; }
.blog-arrows button { width: 46px; height: 46px; background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.blog-arrows button.is-on { background: transparent; border-color: #fff; color: #fff; }
.blog-arrows button:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }
.blog-arrows button:disabled { opacity: .4; cursor: default; }
.act-viewport { overflow: hidden; }
.act-track {
  display: flex; gap: 17px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.act-card {
  flex: 0 0 clamp(300px, 31%, 491px);
  background: #fff; border: 1px solid var(--grey-91);
  border-radius: var(--r-card); overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 560px;
  transition: transform .3s cubic-bezier(.2,.6,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.act-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px -22px rgba(20,18,18,0.40);
  border-color: transparent;
}
.act-card .media { height: 320px; overflow: hidden; border-radius: 0 0 25px 25px; }
.act-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.6,.2,1), filter .4s ease; }
.act-card:hover .media img { transform: scale(1.06); filter: brightness(0.82); }
.act-card .body { padding: 36px 32px 32px; flex: 1; display: flex; flex-direction: column; }
.act-card h3 { font-size: 22px; font-weight: 700; color: var(--grey-13); margin-bottom: 14px; transition: color .2s ease; }
.act-card:hover h3 { color: var(--red-51); }
.act-card p { font-size: 15px; line-height: 1.73; color: #757575; flex: 1; }
.act-card .btn { margin-top: 28px; align-self: flex-start; }
.act-progress { margin-top: clamp(36px, 4vw, 56px); height: 2px; background: rgba(79,79,79,0.25); border-radius: 100px; position: relative; }
.act-progress .bar { position: absolute; top: -1px; left: 0; height: 4px; border-radius: 100px; background: #000; transition: left .45s ease, width .45s ease; }

/* ============================================================
   ΑΝΘΡΩΠΙΝΕΣ ΙΣΤΟΡΙΕΣ  (human stories)
   ============================================================ */
.stories { background: #000; padding: clamp(96px, 9vw, 150px) 0; overflow: hidden; }
.stories .act-head h2 { color: #fff; }
.stories .act-head p, .stories .act-head .link-arrow { color: var(--white-70); }
.stories .carousel-arrows button { border-color: rgba(255,255,255,0.32); color: rgba(255,255,255,0.6); }
.stories .carousel-arrows button.is-on { border-color: rgba(255,255,255,0.78); color: #fff; }
.stories .carousel-arrows button:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.story-card {
  flex: 0 0 clamp(300px, 31%, 491px);
  position: relative; height: clamp(480px, 42vw, 630px);
  border-radius: var(--r-img); overflow: hidden;
}
.story-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.04);
  transition: filter .5s ease, transform .65s cubic-bezier(.22,1,.36,1);
}
.story-card:hover img { filter: saturate(1.1) brightness(1.03); transform: scale(1.07); }
.story-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0.62) 62%, rgba(0,0,0,0.95) 100%);
  transition: background .5s ease;
}
.story-card:hover::after {
  background: linear-gradient(180deg, rgba(0,0,0,0) 18%, rgba(0,0,0,0.55) 58%, rgba(0,0,0,0.95) 100%);
}
.story-body { position: absolute; left: 32px; right: 32px; bottom: 32px; z-index: 2; color: #fff; }
.story-body .quote-mark { color: var(--red-51); font-size: 22px; margin-bottom: 12px; }
.story-body .quote { font-size: 15px; line-height: 1.73; margin-bottom: 16px; }
.story-body h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.story-body .role { font-size: 16px; font-weight: 700; color: var(--red-51); }
.story-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; padding: 11px 20px; border-radius: 999px;
  background: rgba(255,255,255,0.14); border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff; font-size: 14px; font-weight: 700; line-height: 1;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background .22s ease, border-color .22s ease, gap .22s ease, color .22s ease;
}
.story-cta i { font-size: 13px; transition: transform .22s ease; }
.story-card:hover .story-cta { background: var(--red-51); border-color: var(--red-51); }
.story-cta:hover { gap: 12px; }
.stories .act-progress { background: var(--white-15); }
.stories .act-progress .bar { background: #fff; }
/* blog scroll-line (white thumb on the red section bg) */
.blog .blog-progress { margin-top: clamp(32px, 4vw, 52px); background: var(--white-15); }
.blog .blog-progress .bar { background: #fff; }

/* ============================================================
   MAPS
   ============================================================ */
.maps { padding: clamp(96px, 9vw, 150px) 0; }
.maps-head { text-align: center; max-width: 760px; margin: 0 auto clamp(36px, 4vw, 56px); }
.maps-head .eyebrow { margin-bottom: 16px; color: var(--red-51); }
.maps-head h2 { margin-bottom: 16px; }
.maps-head p { color: var(--ink-70); font-size: 16px; }
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.map-card {
  background: #FCFCFC; border: 1px solid rgba(0,0,0,0.16);
  border-radius: var(--r-card); overflow: hidden;
  display: flex; flex-direction: column;
}
.map-card .head { padding: 40px 40px 28px; position: relative; }
.map-card .head-ico {
  position: absolute; top: 32px; right: 34px;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; font-size: 25px;
}
.map-card.sellers .head-ico { background: rgba(255,185,0,0.14); color: var(--orange-50); }
.map-card.ngos .head-ico, .map-card.events-cal .head-ico { background: var(--red-51-10); color: var(--red-51); }
.map-card h3 { font-size: 30px; font-weight: 700; margin-bottom: 12px; }
.map-card.sellers h3 { color: var(--orange-50); }
.map-card.ngos h3 { color: var(--red-51); }
.map-card .head p { color: var(--ink-70); font-size: 16px; }
.map-canvas { position: relative; min-height: 360px; flex: 1 1 auto; overflow: hidden; background: #F0F0F0; }
.map-canvas img { width: 100%; height: 100%; object-fit: cover; }
.map-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.map-pin { width: 80px; height: 80px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.map-card.sellers .map-pin i { color: var(--orange-50); font-size: 30px; }
.map-card.ngos .map-pin i { color: var(--red-40); font-size: 30px; }
.map-open {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: var(--r-pill);
  color: #fff; font-weight: 700; font-size: 16px;
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border: 1.5px solid rgba(255,255,255,0.55);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: background .22s ease, color .22s ease, transform .22s ease,
              box-shadow .22s ease, border-color .22s ease;
}
.map-open .fa-arrow-right-long { transition: transform .24s cubic-bezier(.4,0,.2,1); }
.map-open:hover { transform: translateY(-2px); }
.map-open:hover .fa-arrow-right-long { transform: translateX(5px); }

/* colored frost — translucent brand tint over the map, settles solid on hover */
.map-card.sellers .map-open {
  background: var(--orange-50); color: #2B1B00;
}
.map-card.sellers .map-open:hover {
  background: var(--orange-50); color: var(--grey-13);
  border-color: rgba(255,255,255,0.85);
  box-shadow: 0 22px 46px -16px rgba(214,120,0,0.6), inset 0 1px 0 rgba(255,255,255,0.5);
}
.map-card.ngos .map-open {
  background: rgba(218,43,49,0.32); color: #fff;
}
.map-card.ngos .map-open:hover {
  background: var(--red-40); color: #fff;
  border-color: rgba(255,255,255,0.85);
  box-shadow: 0 22px 46px -16px rgba(218,43,49,0.6), inset 0 1px 0 rgba(255,255,255,0.5);
}
@media (prefers-reduced-motion: reduce) {
  .map-open, .map-open .fa-arrow-right-long { transition: background .2s ease, color .2s ease; }
  .map-open:hover { transform: none; }
  .map-open:hover .fa-arrow-right-long { transform: none; }
}

/* weekly-events calendar (vertical list) */
.map-card.events-cal h3 { color: var(--red-51); }
.evt-list { list-style: none; margin: 0; padding: 8px 40px 28px; flex: 1 1 auto; min-height: 0; overflow-y: auto; }
.evt-list::-webkit-scrollbar { width: 8px; }
.evt-list::-webkit-scrollbar-thumb { background: rgba(218,43,49,0.30); border-radius: 8px; }
.evt-list::-webkit-scrollbar-thumb:hover { background: rgba(218,43,49,0.5); }
.evt-list { scrollbar-width: thin; scrollbar-color: rgba(218,43,49,0.35) transparent; }
.evt {
  display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 22px;
  padding: 16px 18px; margin: 0 -18px; border-radius: 14px;
  border-top: 1px solid rgba(0,0,0,0.09);
  transition: background .2s ease;
}
.evt:first-child { border-top: none; }
.evt:hover { background: var(--red-51-05); }
.evt-day {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--red-51-10); color: var(--red-51);
  display: grid; place-items: center; font-weight: 800; font-size: 14px; letter-spacing: .5px;
  transition: background .2s ease, color .2s ease;
}
.evt:hover .evt-day { background: var(--red-51); color: #fff; }
.evt-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.evt-title { font-size: 18px; font-weight: 700; color: var(--grey-13); }
.evt-meta { font-size: 14px; color: var(--ink-60); }
.evt-time { font-size: 17px; font-weight: 800; color: var(--red-51); white-space: nowrap; }

/* ============================================================
   ΜΑΣ ΣΤΗΡΙΖΟΥΝ — partners marquee
   ============================================================ */
.partners { background: #F6F6F4; padding: clamp(88px, 8.5vw, 140px) 0; overflow: hidden; }
.partners-head { margin-bottom: clamp(40px, 5vw, 68px); text-align: center; }
.partners-head .eyebrow { margin-bottom: 16px; }
.partners-marquee {
  position: relative; overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  /* force own compositing layer so the masked, animated track actually paints
     on first load (mobile Safari/Chrome otherwise leave it blank until a
     scroll/tap triggers a repaint) */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  isolation: isolate;
}
.partners-track {
  display: flex; align-items: center; width: max-content;
  gap: clamp(56px, 7vw, 120px);
  animation: partnersScroll 42s linear infinite;
  will-change: transform;
}
.partners-marquee:hover .partners-track { animation-play-state: paused; }
.partner { flex: 0 0 auto; display: grid; place-items: center; height: clamp(82px, 8vw, 108px); }
.partner img {
  max-height: clamp(62px, 6.2vw, 84px); max-width: clamp(170px, 17vw, 240px);
  height: auto; width: auto; object-fit: contain;
  filter: grayscale(1) contrast(.95); opacity: .55;
  transition: filter .28s ease, opacity .28s ease, transform .28s ease;
}
.partner:hover img { filter: none; opacity: 1; transform: translateY(-2px); }
/* touch devices have no hover — show logos in full color by default */
@media (hover: none) {
  .partner img { filter: none; opacity: 1; }
}
/* boxed lockups (e.g. Homeless World Cup red box) — soften corners so the
   solid background reads as intentional rather than a hard rectangle */
.partner-box img { border-radius: 9px; }
@keyframes partnersScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  /* no animation → keep ONE compact, swipeable row instead of wrapping all
     ~24 logos into a tall grid. Hide the duplicated (clone) set. */
  .partners-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .partners-marquee::-webkit-scrollbar { display: none; }
  .partners-track { animation: none; width: max-content; }
  .partners-track .partner[aria-hidden="true"] { display: none; }
  .partner img { opacity: .65; }
}
@media (max-width: 700px) {
  .partners { padding: 34px 0; }
  .partners-head { margin-bottom: 22px; }
  .partner { height: 56px; }
  .partner img { max-height: 46px; max-width: 132px; filter: none; opacity: 1; }
  .partners-track { gap: 40px; }
}

/* ============================================================
   BLOG & NEWS
   ============================================================ */
.blog { background: var(--red-51); border-radius: 0 0 25px 25px; padding: clamp(96px, 9vw, 150px) 0; }
.blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(40px, 5vw, 64px); }
.blog-head .eyebrow { color: #fff; margin-bottom: 16px; }
.blog-head h2 { color: #fff; }
.blog-head > div:first-child { flex: 1 1 auto; }
.blog-head .link-arrow { color: #fff; flex-shrink: 0; }
/* blog is a horizontal carousel (3 per view) instead of wrapping the 4th post */
.blog-grid {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding-bottom: 4px;
}
.blog-grid::-webkit-scrollbar { display: none; }
.blog-grid .article { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; }
.article {
  background: #fff; border: 1px solid var(--grey-91);
  border-radius: var(--r-card); overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  display: flex; flex-direction: column;
  transition: transform .2s ease;
}
.article:hover { transform: translateY(-6px); }
.article .media { height: 290px; overflow: hidden; border-radius: 0 0 25px 25px; }
.article .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.article:hover .media img { transform: scale(1.05); }
.article .body { padding: 16px 32px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.tag {
  align-self: flex-start;
  background: var(--red-51-10); color: var(--red-51);
  border-radius: var(--r-pill); padding: 4px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
}
.tag-podcast { background: rgba(25,0,168,0.08); color: var(--indigo-il); }
/* play badge marks the podcast thumbnail */
.article .media { position: relative; }
.article .date { font-size: 14px; color: var(--ink-60); }
.article h3 { font-size: 18px; font-weight: 700; line-height: 1.5; color: var(--grey-13); }
.article .more { padding: 0 32px 24px; }
.article .more a { color: var(--red-51); font-weight: 700; font-size: 14px; }
.article .more a:hover { text-decoration: underline; }

/* ============================================================
   ACTIONS
   ============================================================ */
.actions { padding: clamp(96px, 9vw, 150px) 0; }
.actions-head { text-align: center; max-width: 800px; margin: 0 auto clamp(40px, 5vw, 60px); }
.actions-head .eyebrow { margin-bottom: 14px; }
.actions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 17px; }
.action-card {
  border-radius: var(--r-card);
  padding: 32px 17px;
  display: flex; flex-direction: column;
  min-height: 320px;
  transition: transform .2s ease, background .2s ease;
}
.action-card:hover { transform: translateY(-6px); }
.action-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; display: grid; place-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
  font-size: 22px; margin-bottom: 32px;
}
.action-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.action-card p { font-size: 14px; line-height: 1.85; color: var(--ink-90); flex: 1; }
.action-card .more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: #000; margin-top: 16px; }
.action-card .more i { transition: transform .2s ease; }
.action-card:hover .more i { transform: translateX(4px); }
.action-icon img { width: 28px; height: 28px; display: block; }
.action-card.a-peach  { background: rgba(255,183,116,0.2); }   .a-peach  h3 { color: var(--peach); }
.action-card.a-red    { background: var(--red-51-20); }        .a-red    h3 { color: var(--red-51); }
.action-card.a-yellow { background: rgba(255,185,0,0.2); }     .a-yellow h3 { color: var(--orange-50); }
.action-card.a-blue   { background: rgba(108,173,223,0.2); }   .a-blue   h3 { color: var(--blue-il); }
.action-card.a-indigo { background: rgba(25,0,168,0.2); }      .a-indigo h3 { color: var(--indigo-il); }

/* hover: fill with solid brand color, text turns white, icon circle stays white */
.action-card.a-peach:hover  { background: var(--peach); }
.action-card.a-red:hover    { background: var(--red-51); }
.action-card.a-yellow:hover { background: var(--orange-50); }
.action-card.a-blue:hover   { background: var(--blue-il); }
.action-card.a-indigo:hover { background: var(--indigo-il); }
.action-card:hover h3,
.action-card:hover p,
.action-card:hover .more,
.action-card:hover .more i { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; background: #000; color: #fff; padding: clamp(72px, 7vw, 120px) 0 0; }
.footer-inner { position: relative; z-index: 1; }
.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
  padding-bottom: clamp(52px, 5vw, 84px);
}

/* ---- left: brand ---- */
.f-brand { max-width: 460px; }
.footer .f-logo { margin-bottom: clamp(26px, 3vw, 42px); }
.footer-logo { height: clamp(74px, 6vw, 92px); width: auto; display: block; }
.f-tagline {
  font-size: clamp(19px, 1.5vw, 24px); line-height: 1.55; font-weight: 300;
  color: #fff; letter-spacing: .2px; margin: 0 0 clamp(46px, 6vw, 84px);
  text-wrap: balance; max-width: 24ch;
}
.f-follow-label { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 20px; font-weight: 400; }
.f-social { display: flex; gap: 26px; }
.f-social a { color: #fff; font-size: 19px; line-height: 1; transition: color .15s ease, transform .15s ease; }
.f-social a:hover { color: var(--red-51); transform: translateY(-2px); }

/* ---- right: columns ---- */
.f-cols { display: grid; grid-template-columns: repeat(3, max-content); gap: clamp(32px, 3.5vw, 72px); }
.f-col-title {
  font-size: 16px; font-weight: 400; color: #fff; letter-spacing: .3px;
  padding-bottom: 16px; margin: 0 0 22px; position: relative;
}
.f-col-title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 44px; height: 1px; background: rgba(255,255,255,0.38);
}
.f-links-col { display: flex; flex-direction: column; gap: 17px; align-items: flex-start; }
.f-links-col a {
  font-size: 15px; color: rgba(255,255,255,0.62); font-weight: 300; letter-spacing: .2px;
  transition: color .15s ease, transform .15s ease;
}
.f-links-col a:hover { color: #fff; transform: translateX(3px); }

/* find-us column */
.f-find { display: flex; flex-direction: column; gap: 20px; }
.f-office { display: flex; flex-direction: column; gap: 11px; }
.f-office-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: .6px; text-transform: uppercase; }
.f-find-row { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.62); font-size: 15px; font-weight: 300; line-height: 1.5; transition: color .15s ease; }
.f-find-row i {
  flex: 0 0 auto; width: 18px; margin-top: 2px; font-size: 16px;
  color: transparent;
  -webkit-text-stroke: 1px var(--red-51); text-stroke: 1px var(--red-51);
}
.f-find-row:hover { color: #fff; }

/* language pill */
.f-lang {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: clamp(28px, 4vw, 52px);
  padding: 11px 18px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.25); background: transparent;
  color: #fff; font-family: var(--font); font-size: 15px; cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.f-lang:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }
.f-lang .f-lang-flag { font-size: 17px; line-height: 1; }
.f-lang i { font-size: 11px; color: rgba(255,255,255,0.55); margin-left: 4px; }

/* ---- bottom bar ---- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: clamp(24px, 3vw, 34px) 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 32px;
}
.footer-bottom .copy { font-size: 13.5px; color: rgba(255,255,255,0.55); font-weight: 300; }
.footer-bottom .f-links { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.footer-bottom .f-links a { font-size: 13.5px; color: rgba(255,255,255,0.55); font-weight: 300; }
.footer-bottom .f-links a:hover { color: #fff; }

/* ============================================================
   STICKY BTN  (back to top)
   ============================================================ */
.sticky-top {
  position: fixed; right: 28px; bottom: 28px; z-index: 70;
  width: 52px; height: 52px; border-radius: 50%;
  color: #fff; display: grid; place-items: center;
  font-size: 18px;
  background: #111;
  border: none;
  box-shadow: none;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.sticky-top.show { opacity: 1; visibility: visible; transform: none; }
.sticky-top:hover { transform: translateY(-3px); background: #000; }
/* custom thin arrow (rotated up) instead of the Font Awesome glyph */
.sticky-top > i { display: none; }
.sticky-top::before {
  content: ""; width: 20px; height: 13px;
  background-color: currentColor;
  -webkit-mask: url("assets/thin-arrow.svg") no-repeat center / contain;
  mask: url("assets/thin-arrow.svg") no-repeat center / contain;
  transform: rotate(-90deg);
}

/* sticky "Γίνε Πωλητής" CTA — red liquid glass. Sits at the bottom of the
   viewport; slides UP only once the back-to-top button appears (they're
   adjacent siblings) instead of always reserving its slot. */
.sticky-sell {
  position: fixed; right: 28px; bottom: 28px; z-index: 70;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; text-decoration: none;
  background: rgba(200,28,34,0.94);
  -webkit-backdrop-filter: blur(14px) saturate(1.6);
  backdrop-filter: blur(14px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: none;
  opacity: 0; visibility: hidden; transform: translateY(140%);
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .3s ease, box-shadow .22s ease, bottom .3s cubic-bezier(.22,1,.36,1), visibility .35s;
}
.sticky-sell.show { opacity: 1; visibility: visible; transform: none; }
/* once back-to-top shows, it pushes the sell button up */
.sticky-top.show ~ .sticky-sell { bottom: 92px; }
.sticky-sell::before {
  content: ""; width: 24px; height: 32px; background-color: #fff;
  -webkit-mask: url("assets/icon-gine-politis.svg") no-repeat center / contain;
  mask: url("assets/icon-gine-politis.svg") no-repeat center / contain;
}
.sticky-sell.show:hover { transform: translateY(-3px); }
.sticky-sell-label {
  position: absolute; right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%) translateX(0); white-space: nowrap;
  background: var(--red-51); color: #fff; padding: 8px 15px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: -.2px;
  opacity: 1; pointer-events: none; box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: opacity .22s ease, transform .22s cubic-bezier(.22,1,.36,1);
}
.sticky-sell:hover .sticky-sell-label { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ============================================================
   BURGER OVERLAY  (mega menu)
   ============================================================ */
.overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity .5s cubic-bezier(.22,1,.36,1), visibility .5s;
}
.overlay.open { opacity: 1; visibility: visible; }

/* red Σχεδία orbs glowing behind the frosted panel */
.overlay-orbs { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.overlay-orbs .orb { position: absolute; border-radius: 50%; opacity: 0; transition: opacity .6s ease; }
.overlay.open .overlay-orbs .orb { opacity: 1; }
.orb-1 { width: 46vw; height: 46vw; max-width: 720px; max-height: 720px; top: -12vw; left: -8vw;
  background: radial-gradient(circle at 50% 50%, rgba(218,43,49,0.55) 0%, rgba(218,43,49,0) 70%); }
.orb-2 { width: 40vw; height: 40vw; max-width: 620px; max-height: 620px; bottom: -14vw; right: -6vw;
  background: radial-gradient(circle at 50% 50%, rgba(184,30,38,0.50) 0%, rgba(184,30,38,0) 70%); }
.orb-3 { width: 30vw; height: 30vw; max-width: 460px; max-height: 460px; top: 28%; right: 18%;
  background: radial-gradient(circle at 50% 50%, rgba(255,183,116,0.45) 0%, rgba(255,183,116,0) 70%); }
.orb-4 { width: 26vw; height: 26vw; max-width: 400px; max-height: 400px; bottom: 6%; left: 24%;
  background: radial-gradient(circle at 50% 50%, rgba(218,43,49,0.38) 0%, rgba(218,43,49,0) 70%); }
@media (prefers-reduced-motion: no-preference) {
  .overlay.open .orb-1 { animation: orbFloatA 26s ease-in-out infinite; }
  .overlay.open .orb-2 { animation: orbFloatB 32s ease-in-out infinite; }
  .overlay.open .orb-3 { animation: orbFloatA 30s ease-in-out infinite reverse; }
  .overlay.open .orb-4 { animation: orbFloatB 28s ease-in-out infinite; }
}
@keyframes orbFloatA { 0%,100% { transform: translate(0,0); } 50% { transform: translate(4%, 5%); } }
@keyframes orbFloatB { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-5%, -4%); } }

.overlay-panel {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.74);
  -webkit-backdrop-filter: blur(46px) saturate(1.35);
  backdrop-filter: blur(46px) saturate(1.35);
  overflow-y: auto; overflow-x: hidden;
  transform: translateY(-26px) scale(.99);
  transform-origin: top center;
  will-change: transform;
  transition: transform .66s cubic-bezier(.19,1,.22,1);
}
.overlay.open .overlay-panel { transform: none; }

/* staggered reveal of the menu content */
.overlay-top,
.overlay .mega-col {
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s ease, transform .62s cubic-bezier(.16,1,.3,1);
}
.overlay.open .overlay-top,
.overlay.open .mega-col { opacity: 1; transform: none; }
.overlay.open .overlay-top { transition-delay: .06s; }
.overlay.open .mega-col:nth-child(1) { transition-delay: .14s; }
.overlay.open .mega-col:nth-child(2) { transition-delay: .21s; }
.overlay.open .mega-col:nth-child(3) { transition-delay: .28s; }
.overlay.open .mega-col:nth-child(4) { transition-delay: .35s; }
@media (prefers-reduced-motion: reduce) {
  .overlay-panel, .overlay-top, .overlay .mega-col { transition: opacity .2s ease; transform: none; }
}
.overlay-inner {
  max-width: var(--container); margin-inline: auto;
  padding: clamp(20px, 2vw, 30px) var(--pad) clamp(40px, 5vw, 80px);
  position: relative;
}
@media (min-width: 769px) {
  /* decorative gradient replaced by the orb layer */
  .overlay-inner::after { display: none; }
}
.overlay-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: clamp(20px, 2vw, 30px);
  position: relative; z-index: 2;
}
.overlay-brand { display: flex; align-items: center; gap: 16px; }
.overlay-lang { display: none; }
.overlay-lang button { font-size: 14px; }
.overlay-close {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red-51-10); color: var(--red-51); font-size: 17px;
  transition: background .15s ease, transform .15s ease;
}
.overlay-close:hover { background: var(--red-51-20); transform: rotate(90deg); }

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 1.8vw, 38px);
  align-items: start;
}
.mega-col { min-width: 0; }
/* invisible eyebrow that keeps a continuation column's groups aligned with its neighbours */
.ov-spacer { visibility: hidden; }
.mega-col.support {
  align-self: stretch;
  border-left: 1px solid rgba(0,0,0,0.06);
  padding-left: clamp(24px, 2vw, 44px);
}
@media (min-width: 769px) {
  .mega-col.support {
    border-left: none;
    position: relative;
    z-index: 1;
    padding: 40px 0 40px 38px;
    margin: -8px 0;
  }
  /* Χρήσιμα + social sit at the foot of the last column, set apart with a divider */
  .support-foot { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.10); }
  .support-foot .ov-eyebrow { margin-bottom: 12px; }
  .support-social a { width: 38px; height: 38px; font-size: 15px; }
}
.ov-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #8A8A8A; margin-bottom: 18px; }

.mg-thumb { display: none; }
.mg-group { margin-bottom: 24px; }
.mg-group:last-child { margin-bottom: 0; }
.mg-title {
  font-size: 18.5px; font-weight: 800; letter-spacing: -.3px; line-height: 1.2;
  margin-bottom: 9px;
}
.mg-title.c-red { color: var(--red-51); }
.mg-title.c-peach { color: var(--peach); }
.mg-title.c-yellow { color: var(--orange-50); }
.mg-link {
  display: block; font-size: 14px; color: var(--ink-80);
  padding: 5px 0; width: fit-content;
  transition: color .15s ease, transform .15s ease;
}
.mg-link:hover { color: var(--red-51); transform: translateX(5px); }
.mega-divider { height: 1px; width: 82%; background: rgba(0,0,0,0.08); margin: 8px 0 26px; }

/* support cards */
.support-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: clamp(28px, 3vw, 44px); }
.support-card {
  display: flex; align-items: center; gap: 13px; border-radius: 14px;
  padding: 13px 16px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.support-card .sc-ic {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 50%; background: #fff;
  display: grid; place-items: center;
}
.support-card .sc-ic img { width: 24px; height: 24px; display: block; }
.support-card .sc-body { min-width: 0; }
.support-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -14px rgba(0,0,0,0.25); }
.support-card .sc-t { display: block; font-size: 16px; font-weight: 800; letter-spacing: -.3px; margin-bottom: 2px; }
.support-card .sc-d { display: block; font-size: 12.5px; color: var(--ink-70); line-height: 1.45; }
.support-card.sc-yellow { background: #FDEFC9; }   .sc-yellow .sc-t { color: #E0A100; }
.support-card.sc-blue   { background: #DCEBF8; }   .sc-blue   .sc-t { color: var(--blue-il); }
.support-card.sc-peach  { background: #FCE7D6; }   .sc-peach  .sc-t { color: #E8965A; }
.support-card.sc-red    { background: #FBDADB; }   .sc-red    .sc-t { color: var(--red-51); }
.support-card.sc-indigo { background: #E3DEF5; }   .sc-indigo .sc-t { color: var(--indigo-il); }

/* true-color hover */
.support-card.sc-yellow:hover { background: var(--orange-50); }
.support-card.sc-blue:hover   { background: var(--blue-il); }
.support-card.sc-peach:hover  { background: var(--peach); }
.support-card.sc-red:hover    { background: var(--red-51); }
.support-card.sc-indigo:hover { background: var(--indigo-il); }
.support-card:hover .sc-t,
.support-card:hover .sc-d { color: #fff; }

.support-foot .ov-eyebrow { margin-bottom: 18px; }
.support-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 22px; }
.support-links a { font-size: 14px; color: var(--ink-80); padding: 5px 0; width: fit-content; transition: color .15s ease; }
.support-links a:hover { color: var(--red-51); }
.support-social { display: flex; gap: 12px; }
.support-social a {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red-51-10); color: var(--red-51); font-size: 17px;
  transition: background .15s ease, color .15s ease;
}
.support-social a:hover { background: var(--red-51); color: #fff; }

/* ============================================================
   LOGOS
   ============================================================ */
.footer-logo { height: 84px; width: auto; display: block; }
.menu-logo { height: 36px; width: auto; display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .magazine { grid-template-columns: 1fr; }
  .mag-covers { min-height: 380px; order: -1; }
  .footer-main { grid-template-columns: 1fr; gap: clamp(40px, 6vw, 64px); }
  .f-cols { grid-template-columns: 1fr 1fr; gap: 36px 40px; }
  .f-brand { max-width: none; }
  .mega-grid { grid-template-columns: 1fr 1fr; }
  .mega-col.support { border-left: none; padding-left: 0; grid-column: 1 / -1; }
  .support-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 1024px) {
  .header .vdivider { display: none; }
  .eco-grid { grid-template-columns: 1fr 1fr; }
  .actions-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid .article { flex-basis: calc((100% - 24px) / 2); }
}
@media (max-width: 768px) {
  /* compact header — keep eshop + support visible */
  .header-inner { gap: 8px; height: 76px; padding-inline: 16px; }
  .header .vdivider { display: none; }
  .header .lang-toggle { display: none; }
  .overlay-lang { display: inline-flex; }
  .header .icon-btn.search { width: 40px; height: 40px; }
  .header .icon-btn.search .search-ico { width: 24px; height: 24px; }
  .brand-full { height: 40px; }
  .brand-mark { height: 38px; }
  .header .btn-eshop { width: auto !important; height: 45px; padding: 0 20px; font-size: 12.5px; gap: 6px; }
  .header .btn-support { padding: 9px 13px; font-size: 12.5px; }
  .header .btn-support .chev { font-size: 11px; }
  .btn-menu .menu-label { display: none; }
  .btn-menu { width: 44px; height: 44px; padding: 0; justify-content: center; }
  .support-menu { width: min(320px, calc(100vw - 24px)); }

  /* tighter section rhythm */
  .whatis, .ecosystem, .activities, .stories, .maps, .blog, .actions {
    padding-top: clamp(64px, 13vw, 96px); padding-bottom: clamp(64px, 13vw, 96px);
  }
  .numbers { padding-top: clamp(52px, 11vw, 76px); padding-bottom: clamp(52px, 11vw, 76px); }

  /* mobile typography — smaller titles, subtitles & body */
  .eyebrow { font-size: 12px; letter-spacing: .5px; }
  .section-h2,
  .whatis-copy h2,
  .mag-content h2 { font-size: clamp(22px, 5.6vw, 27px); line-height: 1.25; margin-bottom: 14px; }
  .whatis-copy p.lead,
  .mag-content p,
  .eco-reveal p,
  .act-card p,
  .story-body .quote { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
  .act-card h3,
  .story-body h3,
  .eco-name { font-size: 19px; }
  .story-body .role,
  .act-card .label { font-size: 14px; }
  .link-arrow, .act-head p, .eco-head p, .maps-head p, .blog-head p, .actions-head p { font-size: 14px; }
  .eco-head, .act-head, .maps-head, .blog-head, .actions-head { margin-bottom: clamp(24px, 5vw, 34px); }

  /* counters smaller on mobile */
  .stat .num { font-size: clamp(28px, 7vw, 34px); }
  .stat .label { font-size: 13px; margin-top: 4px; line-height: 1.3; }

  /* hero — a touch taller with smaller type */
  .hero-track { height: clamp(540px, 96vw, 660px); }
  .hero h1 { font-size: clamp(26px, 6.8vw, 34px); margin-bottom: 12px; line-height: 1.2; }
  .hero p { font-size: 14px; line-height: 1.55; margin-bottom: 20px; }
  .hero-content { gap: 12px; }
  .hero-cta .btn { padding: 12px 18px; font-size: 13.5px; }

  /* center hero content on mobile */
  .hero-content { align-items: center; text-align: center; }
  /* even, slightly deeper scrim for centered text */
  .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.30) 40%, rgba(0,0,0,0.60) 100%),
      rgba(0,0,0,0.12);
  }
  .hero-text { max-width: 100%; }
  .hero p { max-width: 440px; margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-dots { left: 0; right: 0; justify-content: center; bottom: 28px; }
  .hero-arrows { display: flex; left: 16px; right: 16px; bottom: 16px; gap: 0; justify-content: space-between; z-index: 4; }
  .hero-arrows button { width: 34px; height: 34px; }
  .hero-arrows button svg { width: 17px; height: 17px; }

  /* center the magazine section on mobile */
  .mag-content { text-align: center; }
  .mag-eyebrow { margin-bottom: 16px; }
  .mag-tabs { justify-content: center; }
  .mag-cta { justify-content: center; }
  .mag-content p { margin-left: auto; margin-right: auto; }

  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .whatis-grid { grid-template-columns: 1fr; }
  .whatis-media { order: -1; }
  .whatis-copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .whatis-copy p.lead { margin-left: auto; margin-right: auto; }
  .whatis-copy .btn-outline-dark { align-self: center; }
  .mission { position: relative; left: 0; bottom: 0; margin: -40px auto 0; text-align: center; }
  .maps-grid { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr; }
  /* news → swipeable carousel on mobile */
  .blog-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    scroll-padding-left: var(--pad);
  }
  .blog-grid::-webkit-scrollbar { display: none; }
  .blog-grid .article {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }
  .actions-grid { grid-template-columns: 1fr 1fr; }
  .blog-head, .act-head { flex-direction: column; align-items: flex-start; }
  /* mobile: cards are simpler — drop the per-card CTAs (whole card is tappable) */
  .act-card .btn { display: none; }
  .act-card .body { padding-bottom: 22px; }
  .story-card .story-cta { display: none; }
  /* carousel arrows move to the BOTTOM-right of each section, beside the scroll line */
  .activities .container, .stories .container, .blog .container { position: relative; }
  .blog-head { position: static; }
  .act-head .carousel-arrows,
  .blog-head .carousel-arrows {
    position: absolute; top: auto; bottom: 0; right: var(--pad); height: 0;
    display: flex; align-items: center; gap: 10px; z-index: 4; margin: 0;
  }
  .act-head .carousel-arrows button,
  .blog-head .carousel-arrows button { width: 42px; height: 42px; }
  .act-head .carousel-arrows button svg,
  .act-head .carousel-arrows button i,
  .blog-head .carousel-arrows button i { font-size: 14px; }
  /* shorten the progress bar so the arrows sit to its right, centred on it */
  .act-progress { width: calc(100% - 132px); }
  .blog-head .carousel-arrows { bottom: 0; }
  .f-cols { grid-template-columns: 1fr; gap: 38px; }
  .mega-grid { grid-template-columns: 1fr; gap: 0; }
  .support-list { grid-template-columns: 1fr; }
  .nav-cols { grid-template-columns: 1fr; }

  /* ---- mobile menu accordion ---- */
  .overlay-inner { padding-top: 14px; }
  .overlay-top { margin-bottom: 10px; }
  .overlay .ov-eyebrow { font-size: 11px; letter-spacing: .8px; margin-bottom: 4px; margin-top: 14px; }
  .overlay .mega-col:first-child .ov-eyebrow { margin-top: 2px; }
  .overlay .mega-divider { display: none; }
  .overlay .ov-spacer { display: none; }
  .overlay .mg-group { margin-bottom: 0; border-bottom: 1px solid rgba(0,0,0,0.09); }
  .overlay .mg-title {
    font-size: 16px; font-weight: 700; margin-bottom: 0; cursor: pointer;
    padding: 11px 34px 11px 0; position: relative; user-select: none;
  }
  .overlay .mg-title::after {
    content: ''; position: absolute; right: 6px; top: 50%;
    width: 9px; height: 9px; margin-top: -6px;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg); transition: transform .25s ease; opacity: .7;
  }
  .overlay .mg-group.open .mg-title::after { transform: rotate(225deg); margin-top: -2px; }
  .overlay .mg-group .mg-link { display: none; }
  .overlay .mg-group.open { padding-bottom: 8px; }
  .overlay .mg-group.open .mg-link {
    display: block; width: auto; padding: 7px 0 7px 2px; font-size: 15px;
    animation: mgLinkIn .28s cubic-bezier(.2,.6,.2,1) backwards;
  }
  .overlay .mg-group.open .mg-link:nth-child(2) { animation-delay: .02s; }
  .overlay .mg-group.open .mg-link:nth-child(3) { animation-delay: .05s; }
  .overlay .mg-group.open .mg-link:nth-child(4) { animation-delay: .08s; }
  .overlay .mg-group.open .mg-link:nth-child(n+5) { animation-delay: .11s; }
  @keyframes mgLinkIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

  /* support CTAs are handled by the sticky bottom pill on mobile — hide them in the menu */
  .overlay .mega-col.support > .ov-eyebrow,
  .overlay .mega-col.support > .support-list { display: none; }
  .overlay .mega-col.support .support-foot { margin-top: 0; }
  /* align Χρήσιμα + social flush-left like the accordions */
  .overlay .mega-col.support { padding-left: 0; }
  .overlay .support-foot .ov-eyebrow { margin-top: 22px; margin-bottom: 10px; padding: 14px 0 0; border-top: 1px solid rgba(0,0,0,0.09); }
  .overlay .support-links a { padding: 10px 0; }
  .overlay .support-social { padding: 6px 0 4px; }

  /* core pillars get a colored placeholder card to stand apart from the plain accordions */
  .overlay .mg-group.pillar { border-bottom: none; margin-bottom: 10px; }
  .overlay .mg-group.pillar .mg-title {
    display: block;
    padding: 12px 40px 12px 16px;
    border-radius: 16px;
    font-size: 16.5px; font-weight: 800;
  }
  .overlay .mg-group.pillar .mg-thumb { display: none; }
  .overlay .mg-group.pillar .mg-title::after { right: 18px; }
  .overlay .mg-group.pillar.open { padding-bottom: 6px; }
  .overlay .mg-group.pillar.open .mg-link { padding-left: 16px; }
  /* per-pillar color */
  .overlay .mg-group.pillar .mg-title.c-red    { background: var(--red-51-10); }
  .overlay .mg-group.pillar .mg-title.c-peach  { background: rgba(255,183,116,0.20); }
  .overlay .mg-group.pillar .mg-title.c-yellow { background: rgba(255,185,0,0.18); }
  .overlay-inner { padding-bottom: calc(var(--msb-bar-h, 78px) + 48px); }
}
@media (max-width: 600px) {
  .actions-grid { grid-template-columns: 1fr; gap: 14px; }
  .action-card {
    display: grid; grid-template-columns: auto 1fr; column-gap: 16px;
    align-items: center; padding: 18px 20px; min-height: 0;
  }
  .action-card:hover { transform: none; }
  .action-icon {
    grid-column: 1; grid-row: 1 / span 2;
    width: 46px; height: 46px; align-self: center;
    background: transparent; box-shadow: none; margin-bottom: 0;
  }
  .action-icon img { width: 32px; height: 32px; }
  .action-card h3 { grid-column: 2; margin-bottom: 4px; font-size: 18px; }
  .action-card p { grid-column: 2; font-size: 13px; line-height: 1.5; }
  .action-card .more { display: none; }
  /* very compact header on phones — eshop + support stay visible */
  .preheader a { display: none; }
  .header { border-radius: 0 0 22px 22px; }
  .header-inner { gap: 6px; height: 74px; padding-inline: 14px; }
  .header .icon-btn.search { width: 38px; height: 38px; }
  .header .icon-btn.search .search-ico { width: 23px; height: 23px; }
  .header .btn-eshop { width: auto !important; height: 45px; padding: 0 26px; font-size: 12px; white-space: nowrap; }
  .header .btn-support { padding: 11px 14px; font-size: 12px; white-space: nowrap; }
  .header .btn-support .chev { display: none; }
  /* smaller map card titles + tighter heads on mobile */
  .map-card .head { padding: 26px 22px 18px; }
  .map-card .head-ico { top: 20px; right: 18px; width: 46px; height: 46px; font-size: 20px; }
  .map-card h3 { font-size: 21px; margin-bottom: 8px; }
  .map-card .head p { font-size: 14px; }
  .map-canvas { height: 150px; flex: 0 0 auto; }
  .evt-list { padding: 4px 20px 22px; max-height: 320px; overflow-y: auto; }
  .evt { grid-template-columns: 46px 1fr auto; gap: 14px; padding: 14px 12px; margin: 0 -12px; }
  .evt-day { width: 46px; height: 46px; border-radius: 12px; font-size: 12.5px; }
  .evt-title { font-size: 15.5px; }
  .evt-meta { font-size: 12.5px; }
  .evt-time { font-size: 15px; }
  /* smaller card images on mobile — less tall, more compact */
  .act-card { min-height: 0; }
  .act-card .media { height: 200px; }
  .act-card .body { padding: 22px 24px 24px; }
  .act-card p { flex: 0 0 auto; }
  .act-card .btn { margin-top: 20px; }
  .story-card { height: clamp(360px, 92vw, 420px); }
  .article .media { height: 190px; }
  /* native smooth scroll for carousels on mobile (no JS transform fighting touch) */
  .act-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    scroll-padding-left: var(--pad);
  }
  .act-viewport::-webkit-scrollbar { display: none; }
  .act-track {
    transform: none !important;
    transition: none !important;
    width: max-content;
    max-width: none;
  }
  .act-track > .act-card,
  .act-track > .story-card { scroll-snap-align: start; }
  .act-track > .act-card { flex: 0 0 84vw; width: 84vw; }
  .act-track > .story-card { flex: 0 0 78vw; width: 78vw; }
  /* no hover state on swipeable cards (prevents "stuck" hover on swipe) */
  .act-card:hover {
    transform: none; box-shadow: none; border-color: var(--grey-91);
  }
  .act-card:hover .media img { transform: none; }
  .act-card:hover h3 { color: var(--grey-13); }
  .story-card:hover img { filter: saturate(1.04); transform: none; }
  .story-card:hover::after { background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0.62) 62%, rgba(0,0,0,0.95) 100%); }
  .article:hover { transform: none; box-shadow: none; }
  .article:hover .media img { transform: none; }
  .brand-full { height: 36px; }
  .btn-menu { width: 42px; height: 42px; }
}
@media (max-width: 360px) {
  .brand-full { height: 32px; }
  .header .lang-toggle { display: none; }
  .header .btn-eshop { padding: 8px 18px; font-size: 11.5px; }
  .header .btn-support { padding: 8px 9px; font-size: 11.5px; }
}
@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr 1fr; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   SCROLL REVEAL  (driven by gsap-scroll.js)
   ============================================================ */
/* Pre-reveal hidden state applies ONLY once GSAP has loaded and flagged
   <html class="gsap-ready">. If the CDN fails or JS is off, nothing is
   hidden and all content renders normally. */
.gsap-ready .g-reveal { opacity: 0; will-change: transform, opacity; }
@media (prefers-reduced-motion: reduce) {
  .gsap-ready .g-reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   TOUCH DEVICES — disable hover effects (they "stick" after a tap)
   ============================================================ */
@media (hover: none) {
  /* neutralize lift / zoom / slide transforms */
  .act-card:hover,
  .article:hover,
  .action-card:hover,
  .support-card:hover,
  .mag-tab:hover:not(.active),
  .f-social a:hover,
  .sticky-top:hover,
  .mg-link:hover,
  .overlay-close:hover { transform: none; box-shadow: none; }

  /* arrow / chevron nudges + menu link slide */
  .link-arrow:hover i { transform: none; }
  .mg-link:hover { color: var(--grey-13); }
  .overlay-close:hover { background: var(--grey-96); }

  .act-card:hover .media img,
  .article:hover .media img,
  .eco-card:hover .eco-img,
  .story-card:hover img { transform: none; }

  .act-card:hover h3 { color: var(--grey-13); }

  /* action cards: keep the soft tinted resting state, no full-color fill */
  .action-card.a-peach:hover  { background: rgba(255,183,116,0.2); }
  .action-card.a-red:hover    { background: var(--red-51-20); }
  .action-card.a-yellow:hover { background: rgba(255,185,0,0.2); }
  .action-card.a-blue:hover   { background: rgba(108,173,223,0.2); }
  .action-card.a-indigo:hover { background: rgba(25,0,168,0.2); }
  .action-card:hover h3 { color: inherit; }
  .action-card.a-peach  h3:hover { color: var(--peach); }
  .action-card:hover p { color: #757575; }
  .action-card:hover .more, .action-card:hover .more i { color: #000; }
  .action-card:hover .more i { transform: none; }

  /* support + dropdown rows: no fill / slide on touch */
  .support-card:hover { background: inherit; }
  .support-card:hover .sc-t { color: inherit; }
  .support-card.sc-yellow:hover .sc-t { color: var(--orange-50); }
  .support-card:hover .sc-d { color: var(--ink-70); }
  .sm-row:hover { transform: none; background: transparent; }
  .sm-row:hover .sm-ic { background: var(--grey-96); }

  /* eco cards: reveal text is hover-gated on desktop — show it always on touch */
  .eco-reveal { grid-template-rows: 1fr; opacity: 1; margin-top: 14px; }
  .eco-tint { opacity: .9; }
  .eco-card:hover .eco-more i { transform: none; }
  .story-card:hover::after { background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0.62) 62%, rgba(0,0,0,0.95) 100%); }
}

/* ============================================================
   MOBILE SUPPORT — bottom CTA + bottom sheet
   ============================================================ */
.msb-bar, .msb-sheet, .msb-backdrop { display: none; }

@media (max-width: 768px) {
  /* move support out of the header */
  .header .support-dd { display: none; }
  /* reserve room for the fixed support bar INSIDE the footer (dark), not as
     body padding after it — otherwise the reserved strip shows white below
     the footer. */
  body { padding-bottom: 0; }
  .footer { padding-bottom: 78px; }
  .footer-logo { height: 58px; }
  body.msb-lock { overflow: hidden; }
  /* keep the back-to-top button clear above the sticky support pill.
     --msb-bar-h is kept exact by a ResizeObserver; the +20px is breathing room. */
  .sticky-top { bottom: calc(var(--msb-bar-h, 78px) + 14px); right: 14px; width: 44px; height: 44px; font-size: 16px; }
  .sticky-sell { bottom: calc(var(--msb-bar-h, 78px) + 14px); right: 14px; width: 44px; height: 44px; }
  .sticky-sell::before { width: 20px; height: 27px; }
  /* smart label: hidden by default, peeks out as a pill when the button first
     appears (JS adds .peek for ~3.6s), then tucks away to just the circle */
  .sticky-sell-label {
    display: block; right: calc(100% + 10px);
    padding: 7px 13px; font-size: 12.5px;
    opacity: 0; transform: translateY(-50%) translateX(10px) scale(.9);
    transition: opacity .3s ease, transform .35s cubic-bezier(.22,1,.36,1);
  }
  .sticky-sell.peek .sticky-sell-label { opacity: 1; transform: translateY(-50%) translateX(0) scale(1); }
  .sticky-top.show ~ .sticky-sell { bottom: calc(var(--msb-bar-h, 78px) + 66px); }

  .msb-bar {
    display: block;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 340;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,0.62);
    -webkit-backdrop-filter: blur(16px) saturate(180%); backdrop-filter: blur(16px) saturate(180%);
    border-top: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -6px 24px -10px rgba(0,0,0,0.18);
    /* hidden until the first scroll past the hero */
    transform: translateY(140%); opacity: 0; pointer-events: none;
    transition: transform .42s cubic-bezier(.16,1,.3,1), opacity .3s ease;
  }
  .msb-bar.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .msb-btn {
    width: 100%; height: 50px;
    display: flex; align-items: center; justify-content: center; gap: 9px;
    background: var(--orange-50); color: #1A1818;
    border-radius: var(--r-pill);
    font-family: var(--font); font-size: 15px; font-weight: 700; letter-spacing: -.2px;
    box-shadow: 0 10px 26px -8px rgba(255,185,0,0.6);
    transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  }
  .msb-btn:active { transform: scale(.985); }
  .msb-btn .msb-chev { font-size: 12px; transition: transform .35s cubic-bezier(.16,1,.3,1); }
  .msb-btn[aria-expanded="true"] .msb-chev { transform: rotate(180deg); }

  .msb-backdrop {
    display: block;
    position: fixed; inset: 0; z-index: 335;
    background: rgba(18,16,16,0.46);
    /* opacity-only fade — NO backdrop-filter: compositing a full-screen blur
       while the sheet animates on top is the main mobile-GPU stutter source. */
    opacity: 0; visibility: hidden;
    transition: opacity .36s ease, visibility .36s;
  }
  .msb-backdrop.open { opacity: 1; visibility: visible; }

  .msb-sheet {
    display: block;
    position: fixed; left: 0; right: 0;
    bottom: 0; z-index: 338;
    background: #fff;
    border-radius: 26px 26px 0 0;
    /* bottom padding reserves room for the sticky bar so the last CTA can
       never sit under/over it; z-index 338 (< bar's 340) keeps the button
       on top regardless of how the bar height is measured. */
    padding: 8px 16px calc(var(--msb-bar-h, 78px) + 16px);
    box-shadow: 0 -12px 34px -12px rgba(0,0,0,0.22);
    /* one constant off-screen offset so re-measuring the bar can never shift
       the start point mid-animation. */
    transform: translate3d(0, calc(100% + 90px), 0);
    visibility: hidden;
    will-change: transform;
    /* CLOSE (destination = base): quick, decisive ease-in, no slow tail. */
    transition: transform .3s cubic-bezier(.45,0,.85,.5), visibility .3s;
  }
  /* OPEN (destination = .open): smooth expo-out settle. */
  .msb-sheet.open {
    transform: translate3d(0, 0, 0); visibility: visible;
    transition: transform .46s cubic-bezier(.16,1,.3,1), visibility .46s;
  }
  @media (prefers-reduced-motion: reduce) {
    .msb-sheet, .msb-sheet.open { transition: visibility .15s; }
  }
  .msb-handle {
    width: 44px; height: 5px; border-radius: 999px;
    background: var(--grey-91); margin: 4px auto 14px;
  }
  .msb-sheet-title {
    font-size: 13px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
    color: #8A8A8A; margin: 0 4px 12px;
  }
  .msb-options { display: flex; flex-direction: column; gap: 4px; }
  /* content rides the sheet as ONE unit (always visible inside the panel) —
     no per-row stagger/delays that pop in after the panel has arrived. */
  .msb-sheet-title,
  .msb-options .sm-row { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .msb-sheet-title, .msb-options .sm-row { transition: none; }
  }
  .msb-sheet .sm-row {
    display: flex; align-items: center; gap: 14px;
    padding: 12px; border-radius: 12px; width: auto;
    transition: background .15s ease;
  }
  .msb-sheet .sm-ic {
    width: 44px; height: 44px; flex: 0 0 auto;
    display: grid; place-items: center;
    background: var(--grey-96); border-radius: 9px;
  }
  .msb-sheet .sm-ic img { width: 23px; height: 23px; display: block; }
  .msb-sheet .sm-label { font-weight: 700; font-size: 15.5px; letter-spacing: -.2px; }
  .msb-sheet .msb-go { margin-left: auto; color: #C6C6C6; font-size: 13px; }
  /* touch has no hover → show each row's color treatment by default */
  .msb-sheet .r-yellow { background: rgba(255,185,0,0.12); }
  .msb-sheet .r-yellow .sm-ic { background: rgba(255,185,0,0.18); }
  .msb-sheet .r-blue   { background: rgba(108,173,223,0.12); }
  .msb-sheet .r-blue .sm-ic   { background: rgba(108,173,223,0.20); }
  .msb-sheet .r-peach  { background: rgba(255,183,116,0.14); }
  .msb-sheet .r-peach .sm-ic  { background: rgba(255,183,116,0.22); }
  .msb-sheet .r-red    { background: var(--red-51-05); }
  .msb-sheet .r-red .sm-ic    { background: var(--red-51-10); }
  .msb-sheet .r-indigo { background: rgba(25,0,168,0.07); }
  .msb-sheet .r-indigo .sm-ic { background: rgba(25,0,168,0.12); }
  /* press feedback: deepen the tint slightly */
  .msb-sheet .r-yellow:active { background: rgba(255,185,0,0.20); }
  .msb-sheet .r-blue:active   { background: rgba(108,173,223,0.20); }
  .msb-sheet .r-red:active    { background: var(--red-51-10); }
  .msb-sheet .r-peach:active  { background: rgba(255,183,116,0.22); }
  .msb-sheet .r-indigo:active { background: rgba(25,0,168,0.12); }
}

/* ============================================================
   MASTER / DETAIL MENU  (Option B — only on .md-mode overlay)
   ============================================================ */
.md-mode .overlay-panel { display: flex; flex-direction: column; overflow: hidden;
  --md-padx: clamp(20px,2.4vw,44px); --rail-w: clamp(250px,19vw,330px);
  /* left band (logo + rail) = soft gradient; rest of panel = white */
  background:
    linear-gradient(165deg, rgba(252,252,253,0.72) 0%, rgba(244,245,246,0.74) 55%, rgba(236,238,240,0.76) 100%) left top / calc(var(--md-padx) + var(--rail-w)) 100% no-repeat,
    #FFFFFF;
  -webkit-backdrop-filter: blur(40px) saturate(1.3); backdrop-filter: blur(40px) saturate(1.3); }
.md-top { flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between;
  padding: clamp(8px,1vw,14px) clamp(24px,3vw,54px) clamp(8px,0.9vw,12px); }
.md-top .overlay-brand { display: flex; align-items: center; gap: 16px; }
.md-top .menu-logo { height: 36px; width: auto; display: block; }
.md-body { flex: 1 1 auto; min-height: 0; display: grid;
  grid-template-columns: var(--rail-w) 1fr;
  padding: 0 var(--md-padx) clamp(22px,3vw,46px); }

.md-rail { display: flex; flex-direction: column; overflow-y: auto; gap: 6px;
  padding: clamp(16px,1.6vw,24px) clamp(12px,1.2vw,18px); align-self: stretch;
  background: transparent; }
.md-item { position: relative; display: flex; align-items: center; gap: 12px; width: 100%;
  background: none; border: none; cursor: pointer; font-family: var(--font); text-align: left;
  color: var(--ink-80); font-size: clamp(16px,1.2vw,20px); font-weight: 700; letter-spacing: -.3px;
  padding: clamp(11px,1.2vw,15px) 14px; border-radius: 11px;
  transition: color .3s cubic-bezier(.22,1,.36,1), background-color .38s cubic-bezier(.22,1,.36,1), transform .3s cubic-bezier(.22,1,.36,1); }
.md-item .ttl { flex: 1 1 auto; transition: transform .32s cubic-bezier(.22,1,.36,1); }
.md-item .arr { color: rgba(30,32,34,0.45); font-size: 14px; transition: transform .34s cubic-bezier(.34,1.4,.5,1), color .3s ease, opacity .3s ease; opacity: .65; }
.md-item:hover { color: var(--red-51); }
.md-item:not(.md-fill):hover .ttl { transform: translateX(4px); }
.md-item:hover .arr { color: var(--red-51); transform: translateX(4px); opacity: 1; }
.md-item.active { color: var(--red-51); }
.md-item.active .arr { color: var(--red-51); transform: translateX(3px); }
.md-item.active::before { content: ''; position: absolute; left: -6px; top: 18%; bottom: 18%;
  width: 3px; border-radius: 3px; background: var(--red-51); }
/* per-category hover/active accent: Home → blue, ART → yellow (Περιοδικό + groups stay red) */
.md-item.md-c-blue:hover, .md-item.md-c-blue.active { color: #2F86C9; }
.md-item.md-c-blue:hover .arr, .md-item.md-c-blue.active .arr { color: #2F86C9; }
.md-item.md-c-blue.active::before { background: #2F86C9; }
.md-item.md-c-yellow:hover, .md-item.md-c-yellow.active { color: var(--orange-50); }
.md-item.md-c-yellow:hover .arr, .md-item.md-c-yellow.active .arr { color: var(--orange-50); }
.md-item.md-c-yellow.active::before { background: var(--orange-50); }

/* non-filled items (Δράσεις / Περισσότερα) get a subtle grey wash on hover too */
.md-item:not(.md-fill):hover { background: rgba(30,32,34,0.05); }
/* first 3 (ecosystem): a colour drawer wipes in from the LEFT on hover/active */
.md-item.md-fill { padding-left: 14px; padding-right: 14px; overflow: hidden; }
.md-item.md-fill::before { display: none; }
.md-item.md-fill::after {
  content: ''; position: absolute; inset: 0; z-index: 0; border-radius: inherit;
  transform: scaleX(0); transform-origin: left center;
  transition: transform .62s cubic-bezier(.22,1,.36,1);
}
.md-item.md-fill > * { position: relative; z-index: 1; }
.md-item.md-fill.md-c-red::after { background: var(--red-51); }
.md-item.md-fill.md-c-blue::after { background: #2F86C9; }
.md-item.md-fill.md-c-yellow::after { background: var(--orange-50); }
.md-item.md-fill:hover::after, .md-item.md-fill.active::after { transform: scaleX(1); }
.md-item.md-fill:hover, .md-item.md-fill.active { color: #fff; }
.md-item.md-fill:hover .arr, .md-item.md-fill.active .arr { color: #fff; transform: none; }
.md-item.md-fill.md-c-yellow:hover, .md-item.md-fill.md-c-yellow.active { color: var(--grey-13); }
.md-item.md-fill.md-c-yellow:hover .arr, .md-item.md-fill.md-c-yellow.active .arr { color: var(--grey-13); }
.md-rule { height: 1px; background: rgba(0,0,0,0.10); margin: 12px 6px; }
.md-item.lite { font-size: 16px; font-weight: 700; color: var(--ink-60); }
.md-item.lite:hover { color: var(--red-51); }

/* mobile drill-down back button (hidden on desktop) */
.md-back { display: none; }

/* Χρήσιμα + social pinned to the bottom of the rail */
.md-foot { margin-top: auto; padding: 20px 6px 6px; border-top: 1px solid rgba(0,0,0,0.10); }
.md-foot-label { font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: rgba(30,32,34,0.45); margin: 14px 0 12px; }
.md-foot-link { display: block; font-size: 15px; color: var(--ink-80); padding: 7px 0; width: fit-content;
  transition: color .28s cubic-bezier(.22,1,.36,1), transform .3s cubic-bezier(.22,1,.36,1); }
.md-foot-link:hover { color: var(--red-51); transform: translateX(5px); }
.md-social { display: flex; gap: 11px; margin-top: 18px; }
.md-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--red-51-10); color: var(--red-51); font-size: 15px;
  transition: background .28s cubic-bezier(.22,1,.36,1), color .28s ease, transform .3s cubic-bezier(.34,1.4,.5,1); }
.md-social a:hover { background: var(--red-51); color: #fff; transform: translateY(-3px); }

.md-detail { background: transparent; margin-left: clamp(44px,5vw,90px);
  min-height: 0; display: flex; gap: clamp(22px,2.6vw,48px); }
.md-scroll { flex: 1 1 auto; min-width: 0; overflow-y: auto; padding: clamp(12px,1.5vw,22px) 6px clamp(24px,3vw,44px) 0; }
.md-support { flex: 0 0 auto; width: clamp(264px,21vw,320px); align-self: stretch; overflow-y: auto;
  display: flex; flex-direction: column;
  border-radius: 18px; padding: clamp(20px,2vw,30px) 0 clamp(20px,2vw,30px) clamp(14px,1.2vw,20px);
  background: transparent; }

/* ---- wide screens: let the side columns grow with the viewport ---- */
@media (min-width: 1920px) {
  .md-mode .overlay-panel { --md-padx: clamp(44px,3.4vw,80px); --rail-w: clamp(330px,20vw,400px); }
  .md-support { width: clamp(270px,16vw,330px); }
  .md-links { max-width: 820px; }
  .md-item { font-size: clamp(17px,1vw,20px); }
}
@media (min-width: 2560px) {
  .md-mode .overlay-panel { --rail-w: clamp(400px,18vw,470px); }
  .md-support { width: clamp(330px,15vw,400px); }
  .md-links { max-width: 1000px; column-gap: 72px; }
  .md-links a { font-size: 19px; padding: 14px 0; }
  .md-groups { column-gap: 56px; }
  .md-grp h3 { font-size: 19px; }
  .md-grp a { font-size: 18px; }
  .md-detail { gap: clamp(48px,4vw,90px); }
  .md-item { font-size: clamp(19px,0.95vw,23px); }
}
@media (min-width: 3400px) {
  .md-mode .overlay-panel { --md-padx: clamp(80px,4vw,140px); --rail-w: clamp(470px,16vw,580px); }
  .md-support { width: clamp(400px,14vw,500px); }
  .md-links { max-width: 1280px; }
  .md-links a { font-size: 23px; padding: 18px 0; }
  .md-grp h3 { font-size: 23px; }
  .md-grp a { font-size: 22px; }
  .md-item { font-size: clamp(23px,0.9vw,28px); }
  .md-h { font-size: clamp(22px,1.1vw,30px); }
}
.md-pane { animation: mdPaneFade .4s ease; }
.md-pane-main { min-width: 0; }
.md-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes mdPaneFade { from { opacity: 0; } to { opacity: 1; } }
/* stagger the pane's blocks (kick → title → desc → links) so they rise in smoothly */
.md-pane > * { animation: mdRise .6s cubic-bezier(.22,1,.36,1) both; }
.md-pane > *:nth-child(1) { animation-delay: .03s; }
.md-pane > *:nth-child(2) { animation-delay: .09s; }
.md-pane > *:nth-child(3) { animation-delay: .15s; }
.md-pane > *:nth-child(4) { animation-delay: .21s; }
@keyframes mdRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.md-kick { font-size: 12px; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase; color: rgba(30,32,34,0.45); margin: 0 0 10px; }
.md-h { font-size: clamp(15px,1.3vw,18px); font-weight: 800; letter-spacing: -.3px; margin: 0 0 10px;
  color: var(--grey-13); }
/* ecosystem pane titles take their brand color */
.md-h.md-h-red { color: var(--red-51); }
.md-h.md-h-blue { color: #2F86C9; }
.md-h.md-h-yellow { color: var(--orange-50); }
.md-h .dot { display: none; }
.md-desc { font-size: clamp(15px,1.15vw,17px); line-height: 1.55; color: var(--ink-60); margin: 0 0 28px; max-width: none; }
.md-links { column-count: 2; column-gap: 54px; max-width: 680px; }
.md-links a { display: block; font-size: 16.5px; color: var(--ink-80); padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07); transition: color .26s cubic-bezier(.22,1,.36,1), padding-left .3s cubic-bezier(.22,1,.36,1), border-color .26s ease; break-inside: avoid; }
.md-links a:hover { color: var(--red-51); padding-left: 9px; border-color: rgba(218,43,49,0.25); }
.md-groups { column-count: 2; column-gap: 40px; }
.md-grp { break-inside: avoid; margin-bottom: 28px; display: inline-block; width: 100%; }
.md-grp h3 { font-size: 16.5px; font-weight: 800; color: var(--red-51); margin: 0 0 8px; letter-spacing: -.2px; }
.md-grp a { display: block; font-size: 14.5px; color: var(--ink-80); padding: 6px 0; width: fit-content;
  transition: color .26s cubic-bezier(.22,1,.36,1), transform .3s cubic-bezier(.22,1,.36,1); }
.md-grp a:hover { color: var(--red-51); transform: translateX(5px); }

@media (max-width: 1024px) {
  .md-groups { column-count: 2; }
  .md-support { width: clamp(240px,26vw,300px); }
}
@media (max-width: 768px) {
  .md-mode .overlay-panel { overflow: hidden;
    /* frosted white */
    background: rgba(255,255,255,0.78);
    -webkit-backdrop-filter: blur(34px) saturate(1.4); backdrop-filter: blur(34px) saturate(1.4); }

  /* md-body becomes a horizontal two-screen viewport: rail = screen 1,
     detail = screen 2 (slides in when a category is tapped) */
  .md-body { display: block; position: relative; overflow: hidden; padding: 0; }
  .md-rail, .md-detail {
    position: absolute; inset: 0;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    transition: transform .4s cubic-bezier(.22,1,.36,1);
  }

  /* SCREEN 1 — rail: categories + support + Χρήσιμα.
     Everything shares one symmetric horizontal inset (--mpad) so the logo,
     items, Χρήσιμα and support all line up on the same left/right edges. */
  .md-top { padding: 12px 22px 8px; }
  .md-top .menu-logo { height: 25px; }
  .md-top .overlay-brand { gap: 12px; }
  .overlay-close { width: 38px; height: 38px; font-size: 15px; }
  .overlay-lang button { font-size: 13px; }
  /* even gaps: hide the pillar/rest divider so every row shares the same gap */
  .md-rule { display: none; }
  .md-rail { flex-direction: column; gap: 4px; padding: 6px 22px 22px; transform: translateX(0); }
  .md-body.is-drilled .md-rail { transform: translateX(-22%); }
  /* every category row is the SAME fixed height, single line, centered —
     so the vertical rhythm is identical whether it's a 20px pillar or an
     18px label that would otherwise wrap (e.g. "Η Κοινωνία των Πολιτών"). */
  .md-item {
    font-size: 18px; gap: 11px; margin: 0 -12px; border-radius: 10px;
    min-height: 56px; padding: 0 6px 0 12px; line-height: 1.2;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .md-item .ttl { overflow: hidden; text-overflow: ellipsis; }
  .md-item.md-fill { padding-left: 12px; padding-right: 6px; }
  /* the 3 ecosystem pillars: slightly larger font, SAME vertical padding so
     the gap rhythm between every category row stays even */
  .md-item.md-c-red, .md-item.md-c-blue, .md-item.md-c-yellow { font-size: 20px; }
  .md-item .arr { font-size: 14px; margin-left: auto; }
  /* every category is solid black by default … */
  .md-item { color: #000; }
  .md-item .ttl { color: #000; }
  /* … except the 3 ecosystem pillars which keep their brand colour */
  .md-item.md-fill.md-c-red,  .md-item.md-fill.md-c-red .ttl  { color: var(--red-51); }
  .md-item.md-fill.md-c-blue, .md-item.md-fill.md-c-blue .ttl { color: #2F86C9; }
  .md-item.md-fill.md-c-yellow, .md-item.md-fill.md-c-yellow .ttl { color: var(--orange-50); }
  .md-item.md-fill.md-c-red .arr  { color: var(--red-51); }
  .md-item.md-fill.md-c-blue .arr { color: #2F86C9; }
  .md-item.md-fill.md-c-yellow .arr { color: var(--orange-50); }

  /* SCREEN 2 — detail: submenu of the tapped category */
  .md-detail {
    flex-direction: column; margin: 0; gap: 0;
    padding: 0 16px 30px; background: #FFFFFF;
    transform: translateX(100%); visibility: hidden;
  }
  .md-body.is-drilled .md-detail { transform: translateX(0); visibility: visible; }
  .md-scroll { overflow: visible; padding: 6px 2px 4px; }
  .md-links, .md-groups { column-count: 1; }

  /* Χρήσιμα + Υποστηρίξτε form a single bottom cluster pinned low, with ONE
     divider above Χρήσιμα (no second underline above the support block) */
  .md-foot { margin-top: auto; padding: 22px 0 0; border-top: 1px solid rgba(0,0,0,0.10); }
  .md-foot-label { font-size: 11px; margin: 0 0 10px; }
  .md-foot-link { font-size: 14px; padding: 7px 0; }
  .md-social { margin-top: 14px; gap: 10px; }
  .md-social a { width: 34px; height: 34px; font-size: 13px; }

  /* minimal support CTAs directly under Χρήσιμα — no border, just spacing */
  .md-detail > .md-support { display: none; }
  .md-rail > .md-support {
    display: block; width: 100%; align-self: auto;
    margin-top: 22px; padding: 0; border-radius: 0;
    border-top: none; overflow: visible;
  }
  .md-rail > .md-support .support-list { gap: 8px; }
  .md-rail > .md-support > .ov-eyebrow {
    font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    color: rgba(30,32,34,0.45); margin: 0 0 12px;
  }
  /* text-only support rows — no icon placeholder, no tinted box; brand-coloured */
  .md-rail > .md-support .support-card {
    padding: 4px 0; gap: 0; border-radius: 0; margin: 0; background: transparent;
  }
  .md-rail > .md-support .support-card .sc-ic { display: none; }
  .md-rail > .md-support .support-card .sc-t { font-size: 14.5px; font-weight: 700; }
  .md-rail > .md-support .support-card .sc-d { display: none; }
  .md-rail > .md-support .support-card.sc-yellow .sc-t { color: #E0A100; }
  .md-rail > .md-support .support-card.sc-blue   .sc-t { color: var(--blue-il); }
  .md-rail > .md-support .support-card.sc-peach  .sc-t { color: #E8965A; }
  .md-rail > .md-support .support-card.sc-red    .sc-t { color: var(--red-51); }
  .md-rail > .md-support .support-card.sc-indigo .sc-t { color: var(--indigo-il); }

  /* SCREEN 2 submenu — roomy, let it breathe (not compacted) */
  .md-h { font-size: 22px; margin-bottom: 14px; }
  .md-kick { font-size: 12px; margin-bottom: 8px; }
  .md-grp { margin-bottom: 26px; }
  .md-grp h3 { font-size: 19px; margin-bottom: 10px; }
  .md-grp a, .md-links a { font-size: 16.5px; padding: 9px 0; }
  /* the 3 core pillars (Περιοδικό/Home/ART) are single .md-links lists —
     give their rows more vertical room on the inner drill screen */
  .md-detail .md-links a { padding: 14px 0; font-size: 17px; }
  .md-detail .md-links { margin-top: 4px; }
  .md-desc { font-size: 15.5px; margin-bottom: 18px; }
  .md-h { font-size: 25px; }
  .md-kick { font-size: 12.5px; }

  /* back button — sticky at the top of screen 2 */
  .md-back {
    display: flex; align-items: center; gap: 9px;
    position: sticky; top: 0; z-index: 3;
    width: calc(100% + 32px); margin: 0 -16px 6px;
    padding: 18px 16px 14px;
    background: rgba(255,255,255,0.94);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border: none; border-bottom: 1px solid rgba(0,0,0,0.08);
    font-family: var(--font); font-size: 14.5px; font-weight: 800;
    letter-spacing: -.2px; color: var(--red-51); cursor: pointer;
  }
  /* when drilled into a category, the detail screen covers the whole panel
     (incl. the logo header) for a focused full-screen drill view; the sticky
     back button is the way out. */
  .md-mode .overlay-panel:has(.md-body.is-drilled) .md-top { display: none; }
  .md-back i { font-size: 12px; }

  /* hide the floating support button + sheet while the burger menu is open */
  body.menu-open .msb-bar,
  body.menu-open .msb-sheet,
  body.menu-open .msb-backdrop { display: none !important; }

  /* no hover states inside the menu on touch — a tap shouldn't leave a stuck
     red/fill highlight. Brand colours on the 3 pillars + .active stay intact. */
  .md-item:hover { color: inherit; }
  .md-item:hover .arr { color: rgba(30,32,34,0.45); transform: none; }
  .md-item.md-fill.md-c-red:hover  { background: transparent; color: var(--red-51); }
  .md-item.md-fill.md-c-blue:hover { background: transparent; color: #2F86C9; }
  .md-item.md-fill.md-c-yellow:hover { background: transparent; color: var(--orange-50); }
  .md-item.md-fill.md-c-red:hover .arr  { color: var(--red-51); }
  .md-item.md-fill.md-c-blue:hover .arr { color: #2F86C9; }
  .md-item.md-fill.md-c-yellow:hover .arr { color: var(--orange-50); }
  .md-grp a:hover, .md-links a:hover { color: var(--ink-80); transform: none; padding-left: 0; }
  .md-detail .md-links a:hover { padding-left: 0; }
  .md-foot-link:hover { color: var(--ink-80); transform: none; }
  .md-social a:hover { background: var(--red-51-10); color: var(--red-51); }
  .md-rail > .md-support .support-card:hover { transform: none; box-shadow: none; }
  /* HARD KILL the colour-drawer wipe + any tap/hover background by WIDTH, so it
     works even on a desktop browser narrowed to mobile (where hover:none won't
     match). The 3 pillars keep their brand TEXT colour (set as defaults above). */
  .md-item.md-fill::after,
  .md-item.md-fill:hover::after,
  .md-item.md-fill:active::after,
  .md-item.md-fill:focus::after,
  .md-item.md-fill.active::after { transform: scaleX(0) !important; }
  .md-item, .md-item:hover, .md-item:active, .md-item:focus,
  .md-item.md-fill:hover, .md-item.md-fill:active {
    background: transparent !important; -webkit-tap-highlight-color: transparent;
  }
  .md-item:hover .ttl, .md-item:active .ttl { transform: none; }
}

/* any touch device (incl. tablets >768px): kill menu hover highlights so a tap
   never leaves a stuck red/fill state. Active + the 3 pillar brand colours stay. */
@media (hover: none) {
  .md-item:hover { color: inherit; }
  .md-item.md-fill:hover::after { transform: scaleX(0); }
  .md-item:hover .arr { color: rgba(30,32,34,0.45); transform: none; }
  .md-item:not(.md-fill):hover { background: transparent; }
  .md-item.md-fill.md-c-red:hover  { background: transparent; color: var(--red-51); }
  .md-item.md-fill.md-c-blue:hover { background: transparent; color: #2F86C9; }
  .md-item.md-fill.md-c-yellow:hover { background: transparent; color: var(--orange-50); }
  .md-item.md-fill.md-c-red:hover .arr  { color: var(--red-51); }
  .md-item.md-fill.md-c-blue:hover .arr { color: #2F86C9; }
  .md-item.md-fill.md-c-yellow:hover .arr { color: var(--orange-50); }
  .md-grp a:hover, .md-links a:hover { color: var(--ink-80); transform: none; padding-left: 0; }
  .md-links a:hover { border-color: rgba(0,0,0,0.07); }
  .md-foot-link:hover { color: var(--ink-80); transform: none; }
  .md-social a:hover { background: var(--red-51-10); color: var(--red-51); }
  .support-card:hover { transform: none; box-shadow: none; }
  /* NO tap highlight on menu items — no background flash, no fill wipe */
  .md-item, .md-item:active, .md-item:focus { background: transparent !important; -webkit-tap-highlight-color: transparent; }
  .md-item.md-fill::after, .md-item.md-fill:hover::after, .md-item.md-fill:active::after { transform: scaleX(0) !important; }
  .md-grp a:active, .md-links a:active, .md-foot-link:active { color: var(--red-51); }
}
@media (prefers-reduced-motion: reduce) { .md-pane, .md-pane > * { animation: none; opacity: 1; transform: none; } }

/* ============================================================
   SEARCH OVERLAY  (fullscreen — desktop / laptop / mobile)
   ============================================================ */
.search-overlay {
  position: fixed; inset: 0; z-index: 400;
  display: flex; align-items: flex-start; justify-content: center;
  background: rgba(255,255,255,0.86);
  -webkit-backdrop-filter: blur(22px) saturate(1.3); backdrop-filter: blur(22px) saturate(1.3);
  /* stable own layer so the large blur doesn't band/flicker while fading */
  transform: translateZ(0); backface-visibility: hidden;
  opacity: 0; visibility: hidden;
  transition: opacity .5s cubic-bezier(.4,0,.2,1), visibility .5s;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-overlay .so-inner {
  width: min(820px, 100%); margin: 0 auto;
  padding: clamp(80px, 14vh, 180px) clamp(22px, 5vw, 48px) 48px;
  transform: translateY(-8px); opacity: 0;
  transition: transform .55s cubic-bezier(.22,1,.36,1) .05s, opacity .5s ease .05s;
}
.search-overlay.open .so-inner { transform: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .search-overlay, .search-overlay .so-inner { transition: opacity .2s ease, visibility .2s; transform: none; }
}
.so-close {
  position: fixed; top: clamp(20px, 3vw, 36px); right: clamp(20px, 3vw, 44px);
  width: 54px; height: 54px; display: grid; place-items: center;
  background: var(--grey-96); border: none; border-radius: 50%;
  color: var(--grey-13); font-size: 22px; cursor: pointer;
  transition: background .15s ease, transform .2s ease;
}
.so-close:hover { background: var(--red-51); color: #fff; transform: rotate(90deg); }
.so-label {
  display: block; font-size: clamp(13px, 1.2vw, 15px); font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; color: var(--red-51);
  margin-bottom: 18px;
}
.so-field {
  display: flex; align-items: center; gap: 16px;
  border-bottom: 2.5px solid var(--grey-13);
  padding-bottom: 14px;
}
.so-ico { width: clamp(22px, 2.4vw, 28px); height: clamp(22px, 2.4vw, 28px); flex: 0 0 auto; color: var(--ink-45); }
.so-field input {
  flex: 1 1 auto; min-width: 0;
  border: none; background: transparent; outline: none;
  font-family: var(--font); font-weight: 800; letter-spacing: -.4px;
  font-size: clamp(20px, 3.2vw, 32px); color: var(--grey-13);
}
.so-field input::placeholder { color: rgba(30,32,34,0.28); font-weight: 700; }
.so-go {
  flex: 0 0 auto; width: clamp(40px, 3.6vw, 46px); height: clamp(40px, 3.6vw, 46px);
  display: grid; place-items: center; border: none; border-radius: 50%;
  background: var(--red-51); color: #fff; font-size: clamp(14px, 1.5vw, 17px); cursor: pointer;
  transition: background .15s ease, transform .2s ease;
}
.so-go:hover { background: var(--red-40); transform: translateX(3px); }
.so-suggest { margin-top: clamp(30px, 5vh, 52px); }
.so-suggest-label {
  font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ink-45); margin-bottom: 16px;
}
.so-chips { display: flex; flex-wrap: wrap; gap: 11px; }
.so-chip {
  border: 1.5px solid rgba(30,32,34,0.14); background: rgba(255,255,255,0.6);
  border-radius: var(--r-pill); padding: 11px 19px;
  font-family: var(--font); font-size: 15px; font-weight: 700; color: var(--ink-80);
  cursor: pointer; transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.so-chip:hover { background: var(--red-51); border-color: var(--red-51); color: #fff; transform: translateY(-2px); }
@media (hover: none) {
  .so-close:hover { transform: none; }
  .so-go:hover { transform: none; }
  .so-chip:hover { transform: none; }
}

/* support CTAs on the right: a bit bigger, no subtext */
.md-support .support-list { gap: 9px; }
.md-support .support-card { padding: 12px 16px; gap: 13px; }
.md-support .support-card .sc-ic { width: 43px; height: 43px; }
.md-support .support-card .sc-ic img { width: 23px; height: 23px; }
.md-support .support-card .sc-t { font-size: 15.5px; margin-bottom: 0; }
.md-support .support-card { transition: transform .32s cubic-bezier(.22,1,.36,1), box-shadow .32s cubic-bezier(.22,1,.36,1), background .32s ease; }
.md-support .support-card:hover { transform: translateY(-3px); }
.md-support .issue-card .issue-cta { transition: gap .28s cubic-bezier(.22,1,.36,1), color .26s ease; }
.md-support .support-card .sc-d { display: none; }
.md-support > .ov-eyebrow { font-size: 11px; }

/* latest-issue feature under the support CTAs */
.issue-card { display: block; margin-top: auto; padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.10); text-decoration: none; }
.issue-body { display: block; }
.issue-kick { display: block; font-size: 10.5px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: var(--red-51); margin-bottom: 4px; }
.issue-t { display: block; font-size: 14px; font-weight: 700; color: var(--grey-13);
  line-height: 1.3; margin-bottom: 8px; }
.issue-cta { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px;
  font-weight: 700; color: var(--ink-80); transition: gap .18s ease, color .18s ease; }
.issue-card:hover .issue-cta { color: var(--red-51); gap: 11px; }

/* keep the whole menu inside the viewport (no scroll) on shorter laptop screens */
@media (min-width: 769px) and (max-height: 860px) {
  .md-top { padding-top: clamp(12px,1.8vh,22px); padding-bottom: 8px; }
  .md-body { padding-bottom: clamp(14px,2vh,28px); }
  .md-rail { padding: clamp(10px,1.4vh,18px) clamp(12px,1.2vw,18px); }
  .md-item { padding-top: clamp(8px,1.1vh,14px); padding-bottom: clamp(8px,1.1vh,14px); }
  .support-list { gap: clamp(7px,1vh,10px); margin-bottom: clamp(14px,2vh,28px); }
  .support-card { padding: clamp(9px,1.2vh,13px) 14px; }
  .support-card .sc-ic { width: 38px; height: 38px; }
  .support-card .sc-ic img { width: 21px; height: 21px; }
  .support-card .sc-t { font-size: 15px; }
  .support-card .sc-d { font-size: 11.5px; }
  .support-foot { margin-top: clamp(14px,2vh,26px); padding-top: clamp(12px,1.6vh,20px); }
  .md-h { font-size: clamp(15px,1.2vw,17px); margin-bottom: 8px; }
  .md-links a { padding: 8px 0; }
  .md-grp { margin-bottom: 18px; }
}
