/* ==========================================================================
   DEDOMENO — chrome.css : site header + footer (loaded every page).
   Tokens come from critical.css. 1:1 with live production.
   ========================================================================== */

/* Logged-in WP admin-bar offset for sticky/fixed chrome. WP fixes the bar at 32px
   (≥783px) / 46px (601–782px) and makes it absolute (scrolls away) ≤600px, so the
   offset must mirror that exactly. Elements add `var(--dd-adminbar)` to their top. */
:root{--dd-adminbar:0px}
body.admin-bar{--dd-adminbar:32px}
@media screen and (max-width:782px){body.admin-bar{--dd-adminbar:46px}}
@media screen and (max-width:600px){body.admin-bar{--dd-adminbar:0px}}

/* ---------------------------------------------------------------- HEADER -- */
/* Compact editorial masthead (no top strip): burger + live date LEFT ·
   // ΔΕΔΟΜΕΝΟ wordmark + slogan CENTER · theme + search + red live ΡΟΗ RIGHT.
   The wordmark gets an EXPLICIT width so its big SVG intrinsic size can't break
   the flex centring / push the right actions off-screen. */
.site-header{position:sticky;top:var(--dd-adminbar,0px);z-index:100;background:var(--color-bg);transition:box-shadow .25s ease}
.site-header.is-scrolled{box-shadow:0 6px 22px rgba(15,15,20,.09)}
.site-header__bar{border-bottom:1px solid var(--color-hairline)}
.site-header__inner{display:flex;align-items:center;gap:14px;min-height:84px;transition:min-height .2s ease}
.site-header__left{flex:1 1 0;min-width:0;display:flex;align-items:center;gap:14px;justify-content:flex-start}
.site-header__right{flex:1 1 0;min-width:0;display:flex;align-items:center;gap:8px;justify-content:flex-end}
.site-header__brand{flex:0 0 240px;width:240px;display:flex;flex-direction:column;align-items:center;gap:3px;justify-content:center;text-align:center}

/* wordmark + slogan */
.site-header__logo{display:block;width:100%;max-width:100%;height:auto;aspect-ratio:380/43.72}
.dd-logo-fill{fill:var(--color-ink)}
.dd-logo-slash{fill:var(--color-brand)}
html[data-theme="dark"] .dd-logo-fill{fill:#fff}
.site-header__slogan{font-size:11px;font-weight:600;letter-spacing:.05em;color:var(--color-meta);white-space:nowrap}

/* live date next to the burger */
.site-header__date{display:inline-flex;align-items:center;gap:8px;font-size:12.5px;font-weight:500;letter-spacing:.01em;color:var(--color-meta);white-space:nowrap}
.site-header__live{width:7px;height:7px;border-radius:50%;background:var(--color-brand);flex:0 0 auto;animation:dd-live 2s ease-out infinite}
@keyframes dd-live{0%{box-shadow:0 0 0 0 rgba(214,0,0,.55)}70%{box-shadow:0 0 0 7px rgba(214,0,0,0)}100%{box-shadow:0 0 0 0 rgba(214,0,0,0)}}

/* icon buttons (search) */
.site-header__action{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;padding:0;border:0;background:transparent;color:var(--color-ink);border-radius:10px;cursor:pointer;transition:background .16s ease,color .16s ease}
.site-header__action:hover{color:var(--color-brand);background:var(--color-bg-soft)}
.site-header__action--search{order:5}

/* dark-mode sun/moon sliding toggle */
.theme-toggle{flex:0 0 auto;display:inline-flex;align-items:center;border:0;background:transparent;padding:4px;cursor:pointer}
.theme-toggle__track{position:relative;display:inline-flex;align-items:center;width:54px;height:28px;border-radius:999px;background:var(--color-bg-soft);border:1px solid var(--color-border);transition:background .2s ease,border-color .2s ease}
.theme-toggle:hover .theme-toggle__track{border-color:var(--color-brand)}
.theme-toggle__hint{position:absolute;top:50%;transform:translateY(-50%);color:var(--color-meta);opacity:.55;pointer-events:none}
.theme-toggle__hint--sun{left:7px;color:#e0a106;opacity:.7}
.theme-toggle__hint--moon{right:7px}
.theme-toggle__knob{position:absolute;top:2px;left:2px;width:22px;height:22px;border-radius:50%;background:#fff;box-shadow:0 2px 6px rgba(0,0,0,.28);display:inline-flex;align-items:center;justify-content:center;color:#e0a106;z-index:1;transition:transform .26s cubic-bezier(.4,1.35,.5,1),background .2s ease,color .2s ease}
.theme-toggle__icon--moon{display:none}
.theme-toggle__icon--sun{display:block}
html[data-theme="dark"] .theme-toggle__track{background:#2b2b32;border-color:#3a3a44}
html[data-theme="dark"] .theme-toggle__knob{transform:translateX(26px);background:#15151a;color:#ffd479}
html[data-theme="dark"] .theme-toggle__icon--sun{display:none}
html[data-theme="dark"] .theme-toggle__icon--moon{display:block}
@media (prefers-reduced-motion:reduce){.theme-toggle__knob{transition:none}}

/* ΡΟΗ ΕΙΔΗΣΕΩΝ + ΠΡΩΤΟΣΕΛΙΔΑ — refined outline pills (editorial, subtle).
   The colour is just an accent (live dot / icon), not a loud fill. */
.site-header__cta{display:inline-flex;align-items:center;gap:8px;background:transparent;color:var(--color-ink);font-size:12.5px;font-weight:800;letter-spacing:.04em;padding:9px 15px;border-radius:8px;white-space:nowrap;border:1.5px solid var(--color-border);border-color:color-mix(in srgb,var(--color-ink) 28%,transparent);transition:background .16s ease,border-color .16s ease,color .16s ease,box-shadow .16s ease}
.site-header__cta:hover{color:var(--color-brand);border-color:var(--color-brand);background:rgba(178,0,0,.05)}
.site-header.is-scrolled .site-header__cta{border-color:color-mix(in srgb,var(--color-ink) 44%,transparent);background:color-mix(in srgb,var(--color-bg) 72%,transparent);box-shadow:0 1px 3px rgba(15,15,20,.07)}
.site-header.is-scrolled .site-header__cta:hover{color:var(--color-brand);border-color:var(--color-brand);background:rgba(178,0,0,.07)}
.site-header__cta-dot{position:relative;width:8px;height:8px;border-radius:50%;background:var(--color-brand);flex:0 0 auto;animation:dd-cta-dot 1.8s ease-in-out infinite}
.site-header__cta-dot::after{content:"";position:absolute;inset:0;border-radius:inherit;background:inherit;animation:dd-cta-ring 1.8s ease-out infinite}
@keyframes dd-cta-dot{0%,100%{transform:scale(1)}50%{transform:scale(.78)}}
@keyframes dd-cta-ring{0%{transform:scale(1);opacity:.5}70%{transform:scale(3);opacity:0}100%{opacity:0}}
.site-header__cta-icon{flex:0 0 auto;color:var(--color-brand)}
@media (prefers-reduced-motion:reduce){.site-header__live,.site-header__cta-dot{animation:none}.site-header__cta-dot::after{display:none}}
/* ΠΡΩΤΟΣΕΛΙΔΑ — same outline, neutral (ink) accent so the two read as a calm pair */
.site-header__cta--front:hover{color:var(--color-ink);border-color:var(--color-ink);background:var(--color-bg-soft)}
.site-header__cta--front .site-header__cta-icon{color:var(--color-meta)}
.site-header__cta--front:hover .site-header__cta-icon{color:var(--color-ink)}
@media (max-width:1180px){.site-header__cta--front{display:none}}

.site-header__menu-btn{
	display:inline-flex;align-items:center;gap:9px;cursor:pointer;
	background:transparent;color:var(--color-ink);
	font-size:12.5px;font-weight:800;letter-spacing:.06em;
	padding:9px 15px;border-radius:8px;
	border:1.5px solid color-mix(in srgb,var(--color-ink) 28%,transparent);
	transition:background .16s ease,border-color .16s ease,color .16s ease
}
.site-header__menu-btn:hover{color:var(--color-brand);border-color:var(--color-brand);background:rgba(178,0,0,.05)}
.site-header.is-scrolled .site-header__menu-btn{border-color:color-mix(in srgb,var(--color-ink) 44%,transparent);background:color-mix(in srgb,var(--color-bg) 72%,transparent)}
.site-header.is-scrolled .site-header__menu-btn:hover{color:var(--color-brand);border-color:var(--color-brand);background:rgba(178,0,0,.07)}
.burger{display:inline-flex;flex-direction:column;justify-content:center;gap:4px;width:20px;height:14px}
.burger span{display:block;height:2px;width:100%;background:var(--color-brand);border-radius:2px;transition:transform .22s ease,opacity .22s ease,width .22s ease}
/* lively hover: the lines retract a touch, brand-red */
.site-header__menu-btn:hover .burger span:nth-child(1){width:65%}
.site-header__menu-btn:hover .burger span:nth-child(2){width:100%}
.site-header__menu-btn:hover .burger span:nth-child(3){width:80%}
body.is-menu-open .site-header__action--menu .burger span{width:100%}
body.is-menu-open .site-header__action--menu .burger span:nth-child(1){transform:translateY(6px) rotate(45deg)}
body.is-menu-open .site-header__action--menu .burger span:nth-child(2){opacity:0}
body.is-menu-open .site-header__action--menu .burger span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

/* Tier 3 — primary nav (left aligned, red // hover motif) */
.site-nav{background:var(--color-bg);border-bottom:1px solid var(--color-hairline);max-height:200px;transition:max-height .28s ease,opacity .22s ease}
.site-nav__inner{display:flex;justify-content:center}
.site-nav__list{display:flex;align-items:stretch;flex-wrap:wrap;justify-content:center;gap:0}
.site-nav__item{position:relative}
.site-nav__link{position:relative;display:inline-flex;align-items:center;gap:5px;padding:13px 15px;font-size:14px;font-weight:700;letter-spacing:.02em;color:var(--color-ink);white-space:nowrap;transition:color .15s ease}
.site-nav__link::before{content:"//";color:var(--color-brand);font-weight:900;opacity:0;max-width:0;overflow:hidden;transition:opacity .18s ease,max-width .18s ease}
.site-nav__item:hover>.site-nav__link::before,.site-nav__item.is-current>.site-nav__link::before{opacity:1;max-width:22px}
.site-nav__link::after{content:"";position:absolute;left:15px;right:15px;bottom:0;height:3px;background:var(--color-brand);transform:scaleX(0);transform-origin:left;transition:transform .2s ease}
.site-nav__item:hover>.site-nav__link::after,.site-nav__item.is-current>.site-nav__link::after{transform:scaleX(1)}
.site-nav__link:hover,.site-nav__item.is-current>.site-nav__link{color:var(--color-brand)}
.site-nav__link--red{color:var(--color-brand)}
.site-nav__caret{font-size:10px;line-height:1;opacity:.7}
.site-nav__item--feed{display:none}
.site-nav__sub{position:absolute;top:100%;left:0;min-width:222px;background:var(--color-bg);border:1px solid var(--color-border);border-radius:10px;box-shadow:0 18px 44px rgba(0,0,0,.14);padding:8px;opacity:0;visibility:hidden;transform:translateY(8px);transition:opacity .15s ease,transform .15s ease,visibility .15s;z-index:30}
.site-nav__item--has-children:hover>.site-nav__sub,.site-nav__item--has-children:focus-within>.site-nav__sub{opacity:1;visibility:visible;transform:translateY(0)}
.site-nav__sub-link{display:block;padding:9px 12px;font-size:13px;font-weight:600;color:var(--color-text);border-radius:6px}
.site-nav__sub-link:hover{background:var(--color-bg-soft);color:var(--color-brand)}

/* Scrolled state — frosted bar; on desktop the nav row drops and the masthead bar
   gets a touch taller so the condensed header reads as one solid, calm strip. */
.site-header.is-scrolled{background:var(--color-bg);box-shadow:0 4px 20px rgba(15,15,20,.1)}
html[data-theme="dark"] .site-header.is-scrolled{background:var(--color-bg)}
.site-header.is-scrolled .site-header__inner{min-height:72px}
.site-header.is-scrolled .site-header__brand{flex-basis:190px;width:190px}
.site-header.is-scrolled .site-header__slogan{opacity:0;max-height:0;overflow:hidden}
.site-header.is-scrolled .site-header__date,
.site-header.is-scrolled .site-header__cta--front{display:none}
.site-header.is-scrolled .site-header__right{gap:10px}
.site-header.is-scrolled .site-header__cta{order:1}
.site-header.is-scrolled .theme-toggle{order:2}
.site-header.is-scrolled .site-header__action--search{order:3}
.site-header.is-scrolled .site-nav{max-height:0;opacity:0;overflow:hidden;pointer-events:none;border-bottom-color:transparent}
body.is-mini-shown .site-header{opacity:0;pointer-events:none}
/* Single posts: the main header is NOT sticky — it scrolls away so only the slim
   single mini-bar (title + share) shows. Prevents the "double sticky" flash. */
body.single .site-header{position:relative;top:0}
body.single.admin-bar .site-header{top:0}

/* Search drawer */
.site-search{border-top:1px solid var(--color-hairline);background:var(--color-bg)}
.site-search[hidden]{display:none}
.site-search__form{display:flex;align-items:center;gap:10px;padding:16px 20px}
.site-search__icon{flex:0 0 auto;color:var(--color-meta)}
.site-search__input{flex:1;border:0;background:transparent;font-family:inherit;font-size:18px;color:var(--color-ink);padding:6px 0;outline:none}
.site-search__submit{border:0;background:var(--color-brand);color:#fff;font-weight:800;font-size:13px;padding:11px 22px;border-radius:8px;cursor:pointer}
.site-search__submit:hover{background:var(--color-brand-ink)}

/* ---- full-screen immersive overlay menu ---- */
.site-menu{position:fixed;inset:0;top:var(--dd-adminbar,0px);z-index:200}
.site-menu[hidden]{display:none}
.site-menu__bg{position:absolute;inset:0;background:rgba(15,15,20,.32);opacity:0;transition:opacity .3s ease}
.site-menu.is-open .site-menu__bg{opacity:1}
.site-menu__panel{position:absolute;inset:0;display:flex;flex-direction:column;overflow:auto;background:linear-gradient(180deg,rgba(255,255,255,.86),rgba(255,255,255,.74)),radial-gradient(120% 80% at 92% -6%,rgba(178,0,0,.07),transparent 60%);background-color:rgba(255,255,255,.78);backdrop-filter:blur(20px) saturate(160%);-webkit-backdrop-filter:blur(20px) saturate(160%);border-left:1px solid rgba(255,255,255,.5);box-shadow:0 24px 70px rgba(15,15,20,.18);color:var(--color-ink);opacity:0;transform:scale(1.015);transform-origin:top center;transition:opacity .32s ease,transform .32s cubic-bezier(.23,1,.32,1)}
.site-menu.is-open .site-menu__panel{opacity:1;transform:scale(1)}
.site-menu__watermark{position:absolute;right:3vw;bottom:-6vh;font-size:44vh;line-height:1;font-weight:900;color:rgba(178,0,0,.06);font-family:var(--font-head);pointer-events:none;z-index:0;user-select:none}
.site-menu__header{display:flex;align-items:center;justify-content:space-between;padding:20px;position:relative;z-index:2}
.site-menu__brand{display:inline-flex;align-items:center;color:var(--color-ink)}
.site-menu__brand .site-header__logo{height:30px;width:auto}
.site-menu__close{display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;border:1px solid rgba(15,15,20,.14);border-radius:50%;background:rgba(255,255,255,.5);color:var(--color-ink);cursor:pointer;transition:background .18s ease,border-color .18s ease,color .18s ease,transform .25s ease}
.site-menu__close:hover{background:var(--color-brand);border-color:var(--color-brand);color:#fff;transform:rotate(90deg)}
.site-menu__body{position:relative;z-index:2;flex:1;display:flex;flex-direction:column;padding:8px 20px 44px}
.site-menu__search{display:flex;align-items:center;gap:12px;max-width:640px;margin:6px 0 32px;border-bottom:2px solid rgba(15,15,20,.16);padding-bottom:10px}
.site-menu__search:focus-within{border-color:var(--color-brand)}
.site-menu__search-icon{color:var(--color-meta);flex:0 0 auto}
.site-menu__search-input{flex:1;border:0;background:transparent;color:var(--color-ink);font-size:18px;outline:none}
.site-menu__search-input::placeholder{color:var(--color-meta)}
.site-menu__search-submit{border:0;background:var(--color-brand);color:#fff;font-weight:800;font-size:13px;padding:10px 18px;border-radius:6px;cursor:pointer;white-space:nowrap}
.site-menu__search-submit:hover{background:var(--color-brand-ink)}
.site-menu__list{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(3,1fr);gap:0 44px;align-items:start}
.site-menu__item{border-bottom:1px solid rgba(15,15,20,.1);opacity:0;transform:translateY(14px);transition:opacity .4s ease,transform .4s cubic-bezier(.23,1,.32,1)}
.site-menu.is-open .site-menu__item{opacity:1;transform:none;transition-delay:calc(.1s + var(--i,0) * .028s)}
.site-menu__link{display:flex;align-items:baseline;gap:14px;padding:16px 0;font-family:var(--font-head);font-size:26px;font-weight:800;letter-spacing:-.01em;color:var(--color-ink);line-height:1.1;transition:color .18s ease,transform .18s ease}
.site-menu__num{font-size:12px;font-weight:700;color:var(--color-brand);opacity:.85;min-width:22px;font-variant-numeric:tabular-nums}
.site-menu__link:hover{color:var(--color-brand);transform:translateX(8px)}
.site-menu__link--red{color:var(--color-brand)}
.site-menu__sub{list-style:none;margin:0 0 12px 36px;padding:0;display:flex;flex-wrap:wrap;gap:4px 16px}
.site-menu__sub a{font-size:13px;font-weight:600;color:var(--color-muted)}
.site-menu__sub a:hover{color:var(--color-brand)}
.site-menu__tags{list-style:none;margin:-2px 0 16px 36px;padding:0;display:flex;flex-wrap:wrap;gap:8px}
.site-menu__tag{display:inline-flex;align-items:center;font-size:11.5px;font-weight:700;letter-spacing:.02em;color:var(--color-muted);background:rgba(255,255,255,.45);border:1px solid rgba(15,15,20,.14);border-radius:999px;padding:5px 11px;line-height:1;transition:background .15s ease,border-color .15s ease,color .15s ease,transform .15s ease}
.site-menu__tag::before{content:"#";margin-right:3px;color:var(--color-brand);font-weight:800}
.site-menu__tag:hover{color:#fff;background:var(--color-brand);border-color:var(--color-brand);transform:translateY(-1px)}
html[data-theme="dark"] .site-menu__tag{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.16);color:var(--color-muted)}
html[data-theme="dark"] .site-menu__tag:hover{background:var(--color-brand);border-color:var(--color-brand);color:#fff}
.site-menu__foot{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;margin-top:auto;padding-top:28px;border-top:1px solid rgba(15,15,20,.12)}
.site-menu__socials{display:flex;gap:12px}
.site-menu__social{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border:1px solid rgba(15,15,20,.16);border-radius:50%;background:rgba(255,255,255,.5);color:var(--color-ink);transition:background .15s ease,border-color .15s ease,color .15s ease,transform .15s ease}
.site-menu__social:hover{background:var(--color-brand);border-color:var(--color-brand);color:#fff;transform:translateY(-2px)}
.site-menu__links{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:6px 22px}
.site-menu__links a{font-size:13px;color:var(--color-muted)}
.site-menu__links a:hover{color:var(--color-brand)}
.site-menu__app{position:relative;z-index:2;margin-top:36px;padding:20px;border-radius:14px;background:rgba(255,255,255,.42);border:1px solid rgba(255,255,255,.6);box-shadow:inset 0 1px 0 rgba(255,255,255,.55),0 6px 22px rgba(15,15,20,.07)}
.site-menu__app-label{display:block;font-family:var(--font-head);font-weight:800;font-size:15px;letter-spacing:-.005em;color:var(--color-ink);margin-bottom:14px}
.site-menu__app-label::before{content:"//";color:var(--color-brand);margin-right:8px;font-weight:900}
.app-badges--menu{gap:12px}
.site-menu__theme{display:none}
html[data-theme="dark"] .site-menu__bg{background:rgba(0,0,0,.5)}
html[data-theme="dark"] .site-menu__panel{background:linear-gradient(180deg,rgba(22,22,26,.84),rgba(14,14,17,.78)),radial-gradient(120% 80% at 92% -6%,rgba(214,0,0,.1),transparent 60%);background-color:rgba(18,18,22,.78);border-left:1px solid rgba(255,255,255,.08);box-shadow:0 24px 70px rgba(0,0,0,.5);color:var(--color-ink)}
html[data-theme="dark"] .site-menu__watermark{color:rgba(214,0,0,.1)}
html[data-theme="dark"] .site-menu__close{border-color:rgba(255,255,255,.16);background:rgba(255,255,255,.06)}
html[data-theme="dark"] .site-menu__search{border-bottom-color:rgba(255,255,255,.18)}
html[data-theme="dark"] .site-menu__item{border-bottom-color:rgba(255,255,255,.1)}
html[data-theme="dark"] .site-menu__foot{border-top-color:rgba(255,255,255,.12)}
html[data-theme="dark"] .site-menu__social{border-color:rgba(255,255,255,.18);background:rgba(255,255,255,.06)}
html[data-theme="dark"] .site-menu__app{background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.07),0 6px 22px rgba(0,0,0,.25)}
@media (prefers-reduced-motion:reduce){.site-menu__panel,.site-menu__item{transition:opacity .2s ease}}

/* ---- /newsfeed/ ΡΟΗ ΕΙΔΗΣΕΩΝ feed page ---- */
.newsfeed{display:grid;grid-template-columns:1fr 320px;gap:40px;padding-top:24px;padding-bottom:48px}
.newsfeed__title,.newsfeed-widget__title{font-family:var(--font-head);font-weight:900;font-size:22px;color:var(--color-ink);margin:0 0 18px}
.newsfeed__title .brand-slashes,.newsfeed-widget__title .brand-slashes{color:var(--color-brand)}
.newsfeed__list{display:flex;flex-direction:column}
.newsfeed-item{display:flex;gap:24px;padding:18px 0;border-bottom:1px solid var(--color-border)}
.newsfeed-item:first-child{padding-top:0}
.newsfeed-item__thumb{flex:0 0 220px;width:220px;aspect-ratio:16/10;overflow:hidden;border-radius:3px;display:block}
.newsfeed-item__img{width:100%;height:100%;object-fit:cover;display:block}
.newsfeed-item__img--placeholder{background:var(--color-bg-soft)}
.newsfeed-item__body{flex:1;min-width:0;display:flex;flex-direction:column;justify-content:center}
.newsfeed-item__kicker{align-self:flex-start;font-size:11px;font-weight:800;letter-spacing:.04em;color:var(--color-brand);margin-bottom:7px}
.newsfeed-item__kicker:hover{text-decoration:underline}
.newsfeed-item__title{font-family:var(--font-head);font-size:20px;font-weight:800;line-height:1.25;margin:0 0 8px}
.newsfeed-item__title a{color:var(--color-ink)}
.newsfeed-item__title a:hover{color:var(--color-brand)}
.newsfeed-item__excerpt{font-size:14px;line-height:1.55;color:var(--color-text);margin:0 0 8px}
.newsfeed-item__time{font-size:12px;color:var(--color-meta)}
.newsfeed__pager{display:flex;flex-wrap:wrap;gap:6px;padding:28px 0 0}
.newsfeed__pager .page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:34px;height:34px;padding:0 8px;border:1px solid var(--color-border);border-radius:4px;font-size:14px;color:var(--color-ink)}
.newsfeed__pager .page-numbers.current{background:var(--color-brand);border-color:var(--color-brand);color:#fff}
.newsfeed__pager a.page-numbers:hover{border-color:var(--color-brand);color:var(--color-brand)}
.newsfeed-widget{margin-bottom:36px}
.newsfeed-widget .widget-title{display:none}
.newsfeed-widget .widget{margin:0}
.newsfeed-widget .popular-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;counter-reset:dd-pop}
.newsfeed-widget .popular-list__item{counter-increment:dd-pop;border-bottom:1px solid var(--color-hairline)}
.newsfeed-widget .popular-list__item:last-child{border-bottom:0}
.newsfeed-widget .popular-list__link{display:grid;grid-template-columns:20px 74px 1fr;gap:12px;align-items:center;padding:12px 0}
.newsfeed-widget .popular-list__link::before{content:counter(dd-pop);font-family:var(--font-head);font-weight:900;font-size:19px;line-height:1;color:var(--color-brand);text-align:center}
.newsfeed-widget .popular-list__thumb{width:74px;height:54px;object-fit:cover;border-radius:8px;display:block}
.newsfeed-widget .popular-list__title{font-size:13px;font-weight:700;line-height:1.35;color:var(--color-ink);display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.newsfeed-widget .popular-list__link:hover .popular-list__title{color:var(--color-brand)}
.newsfeed-filter__list{list-style:none;margin:0 0 16px;padding:0;display:flex;flex-direction:column}
.newsfeed-filter__list li{border-bottom:1px solid var(--color-hairline)}
.newsfeed-filter__list li:last-child{border-bottom:0}
.newsfeed-filter__row{display:flex;align-items:center;gap:11px;padding:9px 0;font-size:13px;font-weight:700;color:var(--color-ink);cursor:pointer;transition:color .15s ease}
.newsfeed-filter__row:hover{color:var(--color-brand)}
.newsfeed-filter__row input{appearance:none;-webkit-appearance:none;width:18px;height:18px;flex:none;margin:0;border:1.5px solid var(--color-border);border-radius:5px;background:var(--color-bg);display:inline-grid;place-content:center;cursor:pointer;transition:border-color .15s ease,background .15s ease}
.newsfeed-filter__row input::before{content:"";width:10px;height:10px;background:#fff;clip-path:polygon(14% 44%,0 65%,50% 100%,100% 16%,80% 0,43% 62%);transform:scale(0);transition:transform .12s ease}
.newsfeed-filter__row input:checked{background:var(--color-brand);border-color:var(--color-brand)}
.newsfeed-filter__row input:checked::before{transform:scale(1)}
.newsfeed-filter__row input:focus-visible{outline:2px solid var(--color-brand);outline-offset:2px}
.newsfeed-filter__row:hover input{border-color:var(--color-brand)}
.newsfeed-filter__actions{display:flex;align-items:center;gap:14px}
.newsfeed-filter__apply{display:inline-flex;align-items:center;justify-content:center;border:0;border-radius:8px;background:var(--color-brand);color:#fff;font-family:var(--font-head);font-weight:800;font-size:13px;letter-spacing:.02em;padding:10px 18px;cursor:pointer;transition:background .15s ease,transform .15s ease,box-shadow .15s ease}
.newsfeed-filter__apply:hover{background:#8e0000;transform:translateY(-1px);box-shadow:0 6px 14px rgba(178,0,0,.25)}
.newsfeed-filter__clear{font-size:12px;font-weight:700;color:var(--color-muted)}
.newsfeed-filter__clear:hover{color:var(--color-brand)}
html[data-theme="dark"] .newsfeed-filter__row input{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.2)}
html[data-theme="dark"] .newsfeed-filter__row input:checked{background:var(--color-brand);border-color:var(--color-brand)}
@media (max-width:1024px){
	.newsfeed{grid-template-columns:1fr;gap:32px}
}
@media (max-width:767px){
	.newsfeed-item{gap:14px;padding:14px 0}
	.newsfeed-item__thumb{flex:0 0 120px;width:120px}
	.newsfeed-item__title{font-size:16px}
	.newsfeed-item__excerpt{display:none}
}

/* ---------------------------------------------------------------- FOOTER -- */
/* Live production footer is a LIGHT band (#eef2f3) with dark text + red // accents. */
.site-footer{
	margin-top:0;
	background:var(--color-bg-soft);
	color:var(--color-text);
	border-top:1px solid var(--color-border);
}
html[data-theme="dark"] .site-footer{background:var(--color-footer-bg);color:var(--color-footer-text)}

.site-footer__top{
	display:grid;
	grid-template-columns:1.6fr 1fr 1fr 1.3fr;
	gap:40px;
	padding:48px 20px 40px;
}
.site-footer__brand{
	display:inline-block;margin-bottom:14px;line-height:0;
}
.site-footer__brand .site-header__logo{height:30px;width:auto}
.site-footer__tagline{font-size:14px;line-height:1.6;color:var(--color-muted);max-width:32ch;margin:0 0 14px}
.site-footer__slogan{font-size:14px;font-weight:700;color:var(--color-ink);margin:0}

.site-footer__heading{
	font-size:14px;font-weight:900;letter-spacing:.03em;
	color:var(--color-ink);margin:0 0 16px;text-transform:uppercase;
}
.site-footer__list{display:flex;flex-direction:column;gap:9px}
.site-footer__list a{font-size:14px;color:var(--color-muted)}
.site-footer__list a:hover{color:var(--color-brand)}

.site-footer__bottom{
	display:flex;align-items:center;justify-content:space-between;gap:16px;
	padding:18px 20px;
	border-top:1px solid var(--color-border);
}
.site-footer__copy{margin:0;font-size:13px;color:var(--color-muted)}
.site-footer__social{display:flex;align-items:center;gap:11px}
.site-footer__social a{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;color:var(--color-ink);background:var(--color-bg);border:1px solid var(--color-border);box-shadow:0 1px 4px rgba(15,15,20,.07);transition:background .2s ease,border-color .2s ease,color .2s ease,transform .2s cubic-bezier(.2,.7,.3,1),box-shadow .2s ease}
.site-footer__social a svg{width:17px;height:17px;transition:transform .2s cubic-bezier(.2,.7,.3,1)}
.site-footer__social a:hover{color:#fff;transform:translateY(-3px);box-shadow:0 8px 18px rgba(15,15,20,.18)}
.site-footer__social a:hover svg{transform:scale(1.08)}
.site-footer__social a:focus-visible{outline:2px solid var(--color-brand);outline-offset:2px}
.site-footer__social a[aria-label="Facebook"]:hover{background:#1877f2;border-color:#1877f2}
.site-footer__social a[aria-label="Instagram"]:hover{background:radial-gradient(circle at 30% 110%,#fdf497 0,#fd5949 45%,#d6249f 60%,#285aeb 90%);border-color:#d6249f}
.site-footer__social a[aria-label="TikTok"]:hover{background:#0f0f12;border-color:#0f0f12}
.site-footer__social a[aria-label="X"]:hover{background:#0f0f12;border-color:#0f0f12}
.site-footer__social a[aria-label="YouTube"]:hover{background:#ff0000;border-color:#ff0000}
html[data-theme="dark"] .site-footer__social a{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.14)}
html[data-theme="dark"] .site-footer__social a:hover{color:#fff;box-shadow:0 8px 18px rgba(0,0,0,.45)}
html[data-theme="dark"] .site-footer__social a[aria-label="TikTok"]:hover,
html[data-theme="dark"] .site-footer__social a[aria-label="X"]:hover{background:#fff;border-color:#fff;color:#0f0f12}

/* ------------------------------------------------------------ APP BADGES -- */
/* Official Greek store badges (theme-asset images). Shared component used in
   the footer "// ΕΦΑΡΜΟΓΗ" column and in the burger drawer. Sized by height so
   the App Store + Google Play badges line up. */
.app-badges{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.app-badge{display:inline-flex;align-items:center;gap:10px;width:170px;height:50px;padding:0 14px;box-sizing:border-box;border-radius:10px;background:#000;color:#fff;border:1px solid rgba(255,255,255,.16);transition:transform .18s cubic-bezier(.23,1,.32,1),box-shadow .18s ease}
.app-badge:hover{transform:translateY(-2px);box-shadow:0 8px 20px rgba(0,0,0,.3)}
.app-badge:focus-visible{outline:2px solid var(--color-brand);outline-offset:3px}
.app-badge__logo{flex:0 0 auto;width:23px;height:23px;fill:#fff}
.app-badge__logo--play{width:20px;height:20px}
.app-badge__txt{display:flex;flex-direction:column;justify-content:center;line-height:1.08;min-width:0;text-align:left}
.app-badge__sm{font-size:8.5px;font-weight:500;letter-spacing:.03em;text-transform:uppercase;opacity:.82;white-space:nowrap}
.app-badge__lg{font-size:15px;font-weight:700;letter-spacing:.01em;white-space:nowrap}
html[data-theme="dark"] .app-badge{background:#1c1c1f;border-color:rgba(255,255,255,.22)}

.site-footer__app-lead{font-size:13px;line-height:1.55;color:var(--color-muted);margin:0 0 16px;max-width:30ch}
.site-footer__col--app .app-badges{flex-direction:column;gap:12px;align-items:flex-start}

/* ---------------------------------------------------------------- TABLET -- */
@media (max-width:1024px){
	.site-footer__top{grid-template-columns:1fr 1fr;gap:32px}
}

/* ----------------------------------------------------- TABLET (menu cols) -- */
@media (max-width:1024px){
	.site-menu__list{grid-template-columns:repeat(2,1fr)}
}

/* ---------------------------------------------------------------- MOBILE -- */
@media (max-width:767px){
	/* compact bar: actions absolutely pinned to the edges (guaranteed on-screen);
	   logo is the only flow item, centred via justify-content. */
	.site-header__inner{min-height:56px;position:relative;justify-content:center}
	.site-header.is-scrolled .site-header__inner{min-height:56px}
	.site-header__left{position:absolute;left:10px;top:0;bottom:0;display:flex;align-items:center;z-index:2}
	.site-header__right{position:absolute;right:10px;top:0;bottom:0;display:flex;align-items:center;gap:2px;z-index:2}
	.site-header__brand{flex:0 0 auto;width:auto;max-width:52vw;margin:0 auto;position:static}
	.site-header__date{display:none}
	.site-header__slogan{display:none}
	.site-header__logo{width:auto;height:26px;max-width:100%}
	.site-header.is-scrolled .site-header__logo{height:26px}
	.site-header.is-scrolled .site-header__brand{width:auto;flex-basis:auto}
	.site-header__action{width:40px;height:40px}
	.site-header__right .theme-toggle{display:none}
	.site-header__cta{display:none}
	.site-header__menu-btn{padding:0;width:40px;height:40px;justify-content:center;border-radius:11px;border:0;background:transparent}
	.site-header__menu-btn .burger span{background:var(--color-brand)}
	.site-header__menu-label{display:none}
	.site-header.is-scrolled .site-header__menu-btn{display:inline-flex}

	/* nav becomes a horizontal scroll strip */
	.site-nav__inner{justify-content:flex-start}
	.site-nav__list{flex-wrap:nowrap;overflow-x:auto;justify-content:flex-start;-webkit-overflow-scrolling:touch;scrollbar-width:none}
	.site-nav__list::-webkit-scrollbar{display:none}
	.site-nav__item--feed{display:block}
	.site-nav__link{font-size:13px;padding:11px 11px}
	.site-nav__link::before{display:none}
	.site-nav__caret{display:none}
	.site-nav__sub{display:none}

	/* overlay menu → single column, smaller type */
	.site-menu__list{grid-template-columns:1fr}
	.site-menu__link{font-size:22px;padding:14px 0}
	.site-menu__watermark{font-size:32vh;bottom:-3vh}
	.site-menu__body{padding:8px 18px 36px}
	.site-menu__foot{flex-direction:column;align-items:flex-start;gap:16px}
	.site-menu__app{margin-top:30px;padding:18px}
	.app-badges--menu{flex-direction:column}
	.site-menu__theme{display:flex;align-items:center;justify-content:space-between;gap:16px;margin:2px 0 26px;padding:13px 16px;border-radius:12px;background:rgba(255,255,255,.42);border:1px solid rgba(255,255,255,.6)}
	.site-menu__theme-label{font-family:var(--font-head);font-weight:800;font-size:15px;letter-spacing:-.005em;color:var(--color-ink)}
	.site-menu__theme-label::before{content:"//";color:var(--color-brand);margin-right:8px;font-weight:900}
	html[data-theme="dark"] .site-menu__theme{background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.1)}

	.site-footer__top{grid-template-columns:1fr;gap:28px;padding:36px 20px 28px}
	.site-footer__bottom{flex-direction:column;align-items:flex-start;gap:14px}
}
