:root {
  --navy: #12243f;
  --navy-deep: #0b1830;
  --navy-mid: #1b3358;
  --gold: #c6a35e;
  --gold-soft: #e8d7a8;
  --cream: #f7f2e8;
  --paper: #fbf8f2;
  --ink: #1c1a16;
  --muted: #5e584e;
  --rule: #e5dcc8;
  --breaking: #8b2230;
  --white: #fff;
  --shadow: 0 12px 40px rgba(18, 36, 63, 0.1);
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --max: 1180px;
  --radius: 10px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 380px at 0% -10%, rgba(198, 163, 94, 0.12), transparent 55%),
    var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.2; letter-spacing: 0.01em; }
p { margin: 0 0 0.85em; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.narrow { width: min(760px, calc(100% - 2rem)); }

/* Top bar */
.topbar {
  background: var(--navy-deep);
  color: #d9d3c5;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 2.2rem;
  flex-wrap: wrap;
}
.topbar__links { display: flex; gap: 1rem; }
.topbar a:hover { color: var(--gold); }

/* Masthead */
.masthead {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0 1.2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-width: 0;
}
.brand__logo {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px var(--navy), var(--shadow);
  background: #fff;
}
.brand__name {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.brand__tag {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.2rem 0.2rem 0.2rem 0.9rem;
  min-width: min(280px, 100%);
}
.search input {
  border: 0;
  outline: 0;
  flex: 1;
  font: inherit;
  background: transparent;
  min-width: 0;
  padding: 0.45rem 0.4rem;
}
.search button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  cursor: pointer;
}

/* Nav */
.nav-bar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 8px 20px rgba(11, 24, 48, 0.18);
}
.nav-bar__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3rem;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}
.nav a {
  color: #f3efe4;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.75rem 0.55rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav a:hover,
.nav a.is-active { color: var(--gold); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin: 0.3rem 0;
  border: 1px solid rgba(198, 163, 94, 0.4);
  background: transparent;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
}

/* Ticker */
.ticker {
  background: var(--breaking);
  color: #fff;
}
.ticker__inner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 2.4rem;
  overflow: hidden;
}
.ticker__label {
  flex: none;
  background: #fff;
  color: var(--breaking);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
}
.ticker__track { overflow: hidden; flex: 1; }
.ticker__move {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  animation: tick 42s linear infinite;
}
.ticker__move a { white-space: nowrap; font-size: 0.92rem; }
.ticker__move a:hover { text-decoration: underline; }
.ticker:hover .ticker__move { animation-play-state: paused; }

@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Layout */
#content { padding: 1.6rem 0 3rem; flex: 1; }
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  margin-top: 1.6rem;
}
.page-home .layout { margin-top: 2rem; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1rem;
}
.hero__main {
  position: relative;
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  color: #fff;
  box-shadow: var(--shadow);
}
.hero__cover,
.hero__main .cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.6rem 1.5rem 1.4rem;
  background: linear-gradient(transparent, rgba(8, 16, 32, 0.92));
}
.hero__overlay h1 {
  margin: 0.25rem 0 0.4rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #fff;
}
.hero__overlay p { color: #efe6d4; margin: 0 0 0.5rem; }
.hero__side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero__mini {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 0.8rem;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 0.5rem;
  min-height: 98px;
}
.hero__mini:hover h2 { color: var(--navy-mid); }
.hero__mini-cover,
.hero__mini .cover {
  width: 118px;
  height: 86px;
  object-fit: cover;
  border-radius: 8px;
}
.hero__mini h2 {
  margin: 0.15rem 0;
  font-size: 1.05rem;
}
.hero__mini time { color: var(--muted); font-size: 0.8rem; }

.kicker {
  display: inline-block;
  color: var(--breaking);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kicker--sm { font-size: 0.68rem; }
.meta { color: var(--muted); font-size: 0.85rem; }

.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-ph {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(198, 163, 94, 0.28), transparent 50%),
    linear-gradient(160deg, var(--navy-deep), var(--navy-mid));
}
.cover-ph img {
  width: 58%;
  max-width: 180px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #fff;
}
.cover-ph--enimerosi { background: linear-gradient(160deg, #10233f, #1a4f8a); }
.cover-ph--paideia { background: linear-gradient(160deg, #1a2840, #3d5a80); }
.cover-ph--politismos { background: linear-gradient(160deg, #3d2a12, #8a6a32); }
.cover-ph--politiki { background: linear-gradient(160deg, #2b1420, #7a3048); }
.cover-ph--topiki-autodioikisi { background: linear-gradient(160deg, #243018, #5a6b32); }
.cover-ph--athlitismos { background: linear-gradient(160deg, #0e2f24, #1e6b4a); }
.cover-ph--istoria { background: linear-gradient(160deg, #2a1c14, #6b3e28); }
.cover-ph--default { background: linear-gradient(160deg, var(--navy-deep), var(--navy-mid)); }

.card__media,
.list-item__thumb,
.article-hero {
  display: block;
  overflow: hidden;
  background: var(--navy);
}
.card__media { aspect-ratio: 16/10; border-radius: 10px 10px 0 0; }
.card__media .cover,
.list-item__thumb .cover,
.article-hero .cover { width: 100%; height: 100%; object-fit: cover; }
.list-item__thumb { width: 140px; min-width: 140px; aspect-ratio: 16/11; border-radius: 8px; }

/* Blocks / cards */
.block { margin-bottom: 2.2rem; }
.block__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--navy);
}
.block__head h2 {
  margin: 0;
  font-size: 1.45rem;
  color: var(--navy);
  padding-bottom: 0.35rem;
}
.block__rule { flex: 1; }
.block__more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.grid-cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card__body { padding: 0.85rem 0.95rem 1rem; }
.card h3 { margin: 0.25rem 0 0.4rem; font-size: 1.15rem; }
.card p { color: var(--muted); font-size: 0.92rem; }

.cat-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1rem;
}
.card--lead .card__media { aspect-ratio: 16/9; }
.cat-row__list { display: flex; flex-direction: column; gap: 0.75rem; }
.list-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.85rem;
  align-items: start;
}
.list-item h3, .list-item h2 { margin: 0 0 0.25rem; font-size: 1.12rem; }
.list-item--lg {
  grid-template-columns: 220px 1fr;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--rule);
}
.list-item--lg .list-item__thumb { width: 220px; min-width: 220px; }
.stack-list { display: flex; flex-direction: column; }

.page-head { margin: 0.4rem 0 0.5rem; }
.page-head h1 { margin: 0.2rem 0; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); }
.lede { font-size: 1.15rem; color: var(--muted); }

.crumbs { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.8rem; }
.crumbs span { margin: 0 0.4rem; }
.article-head h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0.3rem 0; color: var(--navy); }
.article-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; color: var(--muted); margin: 0.6rem 0 0.85rem; }

.share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin: 0 0 1.2rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.share__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.share__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.share__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.share__btn:hover {
  border-color: transparent;
  color: #fff;
}
.share__btn--facebook:hover { background: #1877f2; }
.share__btn--x:hover { background: #111; }
.share__btn--whatsapp:hover { background: #25d366; }
.share__btn--linkedin:hover { background: #0a66c2; }
.share__btn--copy:hover,
.share__btn--copy.is-copied { background: var(--navy); color: var(--gold-soft); border-color: var(--navy); }
.share__btn span { line-height: 1; }

.social-banner {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: none;
}
.social-banner__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.social-banner__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.social-banner__btn {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,0.12);
  transition: transform 0.15s ease, background 0.15s ease;
}
.social-banner__btn:hover {
  transform: translateY(-1px);
}
.social-banner__btn--instagram:hover { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.social-banner__btn--facebook:hover { background: #1877f2; }
.social-banner__btn--youtube:hover { background: #ff0000; }
.social-banner__btn--tiktok:hover { background: #010101; }
.article-hero { border-radius: 12px; aspect-ratio: 16/8.5; margin-bottom: 1.4rem; }
.article-hero__img { width: 100%; height: 100%; object-fit: cover; }

.video { position: relative; aspect-ratio: 16/9; margin-bottom: 1.4rem; border-radius: 12px; overflow: hidden; }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.prose { font-size: 1.08rem; max-width: 68ch; }
.prose h2 { color: var(--navy); margin: 1.4rem 0 0.5rem; }
.prose a { color: var(--navy-mid); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { padding-left: 1.2rem; }
.prose img { border-radius: 8px; margin: 1rem 0; }

.about-logo { display: grid; place-items: center; margin: 0.5rem 0 1.4rem; }
.about-logo img {
  width: 220px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 6px var(--navy);
  background: #fff;
}

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 1rem; }
.side-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 1rem 1.05rem 1.1rem;
}
.side-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.35rem;
}
.side-card--gold { background: linear-gradient(180deg, #fff8e8, #fff); }
.popular { list-style: none; margin: 0; padding: 0; }
.popular li {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--rule);
}
.popular a { font-weight: 600; }
.popular time, .feed time { display: block; color: var(--muted); font-size: 0.78rem; }
.popular__n { font-family: var(--display); font-size: 1.3rem; color: var(--gold); font-weight: 700; }
.feed { list-style: none; margin: 0; padding: 0; }
.feed li { padding: 0.45rem 0; border-bottom: 1px solid var(--rule); }

.newsletter { display: flex; gap: 0.4rem; }
.newsletter input, .form input, .form textarea, .form select {
  width: 100%;
  font: inherit;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: #fff;
}
.newsletter button, .btn {
  background: var(--navy);
  color: var(--gold-soft);
  border: 0;
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover, .newsletter button:hover { background: var(--navy-mid); }
.newsletter--stack { flex-direction: column; }

.site-footer .newsletter {
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  margin-top: 0.35rem;
  max-width: 100%;
}
.site-footer .newsletter input {
  min-height: 3rem;
  padding: 0.85rem 1rem;
  font-size: 1.02rem;
  border-radius: 10px;
  border-color: rgba(255,255,255,0.18);
}
.site-footer .newsletter button {
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  font-size: 1.02rem;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy-deep);
}
.site-footer .newsletter button:hover {
  background: var(--gold-soft);
  color: var(--navy-deep);
}

.form { display: grid; gap: 0.85rem; }
.form label { display: grid; gap: 0.3rem; font-weight: 600; font-size: 0.92rem; }
.notice { padding: 0.75rem 0.9rem; border-radius: 8px; }
.notice--ok { background: #e8f6ea; color: #1b5e20; }
.notice--err { background: #fdecea; color: #8b2230; }
.empty { color: var(--muted); padding: 1rem 0; }
.pager { display: flex; gap: 1rem; align-items: center; margin-top: 1.4rem; font-weight: 600; }
.pager a { color: var(--navy); }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #d6d0c4;
  margin-top: auto;
}
.meander {
  height: 10px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--gold) 0 8px,
      transparent 8px 12px,
      var(--gold) 12px 14px,
      transparent 14px 18px,
      var(--gold) 18px 26px,
      transparent 26px 30px
    );
  opacity: 0.85;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 1fr 1.35fr;
  gap: 1.4rem;
  padding: 2rem 0 1.6rem;
}
.footer__brand img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #fff;
  margin-bottom: 0.6rem;
}
.footer__name {
  font-family: var(--display);
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 0.4rem;
}
.footer__about {
  white-space: pre-line;
  margin: 0;
}
.site-footer h2 {
  color: var(--gold);
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0.28rem 0; }
.site-footer a:hover { color: var(--gold); }
.footer__copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.85rem 0 1.1rem;
  font-size: 0.85rem;
}

.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.social-links__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--rule);
  background: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.social-links__item:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.social-links__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  flex: none;
}

.social-links__item--instagram .social-links__icon { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.social-links__item--facebook .social-links__icon { background: #1877f2; }
.social-links__item--youtube .social-links__icon { background: #ff0000; }
.social-links__item--tiktok .social-links__icon { background: #010101; }

.social-links__text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.social-links__text strong {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--navy);
}

.social-links__text span {
  color: var(--muted);
  font-size: 0.85rem;
}

.social-links--cards {
  margin: 1.2rem 0 1.6rem;
}

.social-links--footer .social-links__item {
  padding: 0.45rem 0.55rem;
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #efe8d8;
}

.social-links--footer .social-links__item:hover {
  background: rgba(255,255,255,0.08);
}

.social-links--footer .social-links__text strong {
  color: #fff;
  font-size: 0.92rem;
}

.social-links--footer .social-links__text span {
  color: #b7b0a2;
  font-size: 0.78rem;
}

.social-links--footer .social-links__icon {
  width: 34px;
  height: 34px;
}

.find-us-note {
  margin-top: 0.5rem;
}

@media (max-width: 980px) {
  .hero, .layout, .cat-row, .grid-cards, .footer__grid {
    grid-template-columns: 1fr;
  }
  .hero__main { min-height: 320px; }
  .masthead__inner { flex-direction: column; align-items: flex-start; }
  .search { width: 100%; }
}

@media (max-width: 720px) {
  .brand__logo { width: 86px; height: 86px; }
  .nav-bar__inner {
    flex-wrap: wrap;
    padding: 0.25rem 0 0.45rem;
  }
  .nav-toggle { display: flex; }
  .social-banner--nav {
    margin-left: auto;
  }
  .social-banner__label { display: none; }
  .nav {
    display: none;
    flex-direction: column;
    flex-basis: 100%;
    padding-bottom: 0.6rem;
  }
  .nav.is-open { display: flex; }
  .list-item,
  .list-item--lg { grid-template-columns: 1fr; }
  .list-item__thumb,
  .list-item--lg .list-item__thumb { width: 100%; min-width: 0; aspect-ratio: 16/9; }
  .hero__mini { grid-template-columns: 96px 1fr; }
  .share__btn span { display: none; }
  .share__btn { width: 36px; height: 36px; justify-content: center; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__move { animation: none; }
}
