/* ═══════════════════════════════════════════
   LIVEPRESS.GR — COMPLETE STYLESHEET
   ═══════════════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:      #dc2626;
  --brand2:     #1e3a8a;
  --brand-dark: #b91c1c;
  --sky:        #0ea5e9;
  --bg:         #f3f4f6;
  --surface:    #ffffff;
  --border:     #e5e7eb;
  --muted:      #6b7280;
  --text:       #111827;
  --text-light: #374151;
  --radius:     12px;
  --radius-lg:  22px;
  --shadow:     0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.13);
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--brand2); text-decoration: none; }
a:hover { color: var(--brand); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 { line-height: 1.3; font-weight: 700; }

/* ── Container ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  background: linear-gradient(135deg, #111827, #1e3a8a);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}

/* Ticker */
.ticker {
  background: linear-gradient(90deg, #111827, #1e293b);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 7px 20px;
  font-size: 13px;
  color: rgba(255,255,255,.9);
  overflow: hidden;
}
.ticker strong {
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: .06em;
  flex-shrink: 0;
}
.ticker a[href^="mailto"] {
  margin-left: auto;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  flex-shrink: 0;
}
.ticker-scroll { display:flex; align-items:center; gap:42px; white-space:nowrap; min-width:0; flex:1; overflow:hidden; }
.ticker-track  { display:inline-flex; gap:42px; align-items:center; animation:LivePressTicker 170s linear infinite; will-change:transform; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-track a { color:inherit; text-decoration:none; font-weight:700; }
.ticker-track span { display:inline-flex; align-items:center; gap:8px; }
.ticker-track span::before { content:'•'; opacity:.55; }
@keyframes LivePressTicker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* Nav bar */
.nav {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 58px;
  gap: 4px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.02em;
  margin-right: 24px;
  text-decoration: none;
}
.brand:hover { color: #fff; }
.brand span { line-height: 1; }
.brand b { color: var(--brand); }
.brand em { color: rgba(255,255,255,.55); font-style: normal; font-size: .8em; }

.brand-mark {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff;
  font-weight: 900;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
  flex-shrink: 0;
}

.nav-link {
  color: rgba(255,255,255,.78);
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.mobile-menu-btn {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  padding: 6px;
}

.nav-menu { display: flex; align-items: center; gap: 2px; flex: 1; }

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero-shell {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
  padding: 48px 0 40px;
}

.hero-copy .eyebrow {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-size: clamp(22px, 3vw, 36px);
  color: var(--text);
  margin-bottom: 14px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Search */
.search-panel {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.search-panel input {
  flex: 1;
  padding: 11px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  background: var(--surface);
}
.search-panel input:focus { border-color: var(--brand2); }
.search-panel button {
  padding: 11px 20px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.search-panel button:hover { background: var(--brand-dark); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn.primary {
  background: var(--brand);
  color: #fff;
}
.btn.primary:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220,38,38,.3);
}

/* Featured card */
.featured {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.featured:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,.18); }
.featured img { width: 100%; height: 100%; object-fit: cover; }
.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}
.featured-overlay span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}
.featured-overlay h2 {
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: 8px;
  line-height: 1.3;
}
.featured-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ══════════════════════════════════════════
   QUICK ZONES
══════════════════════════════════════════ */
.quick-zones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.quick-zones a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.quick-zones a:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.quick-zones a span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--brand);
  text-transform: uppercase;
}
.quick-zones a strong { font-size: 13.5px; color: var(--text); font-weight: 600; }

/* ══════════════════════════════════════════
   SMART STRIP
══════════════════════════════════════════ */
.smart-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.smart-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.smart-card > span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.smart-card a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.45;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  transition: color var(--transition);
}
.smart-card a:hover { color: var(--brand); }
.smart-card a small { color: var(--muted); font-size: 11px; flex-shrink: 0; }
.smart-card.hot > span { color: var(--brand); }
.smart-card.editor {
  background: linear-gradient(135deg, var(--brand2), #1e40af);
  color: #fff;
  border-color: transparent;
}
.smart-card.editor > span { color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.15); }
.smart-card.editor strong { font-size: 14px; line-height: 1.6; color: #fff; font-weight: 500; }

/* ══════════════════════════════════════════
   CATEGORY RAIL
══════════════════════════════════════════ */
.category-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.category-rail a {
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-light);
  transition: all var(--transition);
  white-space: nowrap;
}
.category-rail a:hover { border-color: var(--brand); color: var(--brand); background: #fef2f2; }
.category-rail a.active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ══════════════════════════════════════════
   CONTENT LAYOUT
══════════════════════════════════════════ */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

.main-feed { min-width: 0; }

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-title h2 { font-size: 20px; color: var(--text); }
.section-title span { font-size: 13px; color: var(--muted); }

.empty { text-align: center; padding: 60px 20px; color: var(--muted); font-size: 15px; }

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e5e7eb;
  position: relative;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .thumb img { transform: scale(1.04); }
.thumb span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.meta span {
  background: #fef2f2;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 55%;
}
.meta small { color: var(--muted); font-size: 12px; flex-shrink: 0; }

.card-body h3 {
  font-size: 14.5px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-body h3 a { color: var(--text); font-weight: 700; }
.card-body h3 a:hover { color: var(--brand); }

.card-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.source-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.source-row strong { font-size: 12px; color: var(--muted); font-weight: 600; }
.source-row a {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  padding: 4px 10px;
  border: 1.5px solid var(--brand);
  border-radius: 6px;
  transition: all var(--transition);
}
.source-row a:hover { background: var(--brand); color: #fff; }

/* Live card animation */
@keyframes liveIn { from{opacity:0;transform:translateY(-14px)} to{opacity:1;transform:translateY(0)} }
.live-new { outline: 2px solid var(--sky); outline-offset: -2px; }

/* ══════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════ */
.sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.panel h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.panel.dark {
  background: linear-gradient(135deg, #111827, #1e3a8a);
  border-color: transparent;
  color: #fff;
}
.panel.dark h3 { color: rgba(255,255,255,.55); border-color: rgba(255,255,255,.12); }
.panel.dark p { color: rgba(255,255,255,.7); font-size: 13px; margin-bottom: 12px; }
.panel.dark a { color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600; }
.panel.dark a:hover { color: #fff; }

.mini-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: opacity var(--transition);
}
.mini-item:last-child { border-bottom: none; padding-bottom: 0; }
.mini-item:hover { opacity: .75; }
.mini-item span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--brand);
}
.mini-item strong {
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Article related items */
.lr-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef2f2;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
  text-decoration: none;
}
.lr-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: opacity var(--transition);
}
.lr-item:hover { opacity: .75; }
.lr-item img { width: 72px; height: 52px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.lr-item strong { font-size: 13px; color: var(--text); font-weight: 600; line-height: 1.4; }
.lr-empty { color: var(--muted); font-size: 14px; padding: 12px 0; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: #111827;
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 28px 20px;
  font-size: 13px;
  margin-top: 60px;
}
.footer a { color: rgba(255,255,255,.6); }
.footer a:hover { color: #fff; }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 12px;
}
.footer-links a { font-weight: 600; font-size: 13px; }

/* Cookie banner */
.cookie-box {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #e2e8f0;
  border-radius: var(--radius);
  padding: 16px 22px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  z-index: 1000;
  max-width: 520px;
  width: calc(100% - 32px);
}
.cookie-box a { color: var(--sky); }
.btn.mini {
  padding: 7px 16px;
  font-size: 13px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .smart-strip { grid-template-columns: 1fr 1fr; }
  .smart-card.editor { display: none; }
}

@media (max-width: 900px) {
  .hero-shell { grid-template-columns: 1fr; }
  .featured { aspect-ratio: 16/8; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .quick-zones { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .ticker { gap: 10px; }
  .ticker-scroll { gap: 28px; }
  .ticker-track { gap: 28px; animation-duration: 170s; }
  .ticker a[href^="mailto"] { display: none; }
  .nav { padding: 0 12px; }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: #1e3a8a;
    padding: 12px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .mobile-menu-btn { display: block; }
  .news-grid { grid-template-columns: 1fr; }
  .quick-zones { grid-template-columns: repeat(2, 1fr); }
  .smart-strip { grid-template-columns: 1fr; }
  .search-panel { flex-direction: column; }
  .hero-shell { padding: 28px 0 24px; }
}

@media (max-width: 480px) {
  .category-rail a { padding: 5px 12px; font-size: 12px; }
}

/* ══════════════════════════════════════════
   ARTICLE PAGE
══════════════════════════════════════════ */
.article-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 16px 60px;
}

.backline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 20px;
  transition: color var(--transition);
}
.backline:hover { color: var(--brand); }

.article-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.article-meta span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.article-meta span:first-child {
  background: #fef2f2;
  color: var(--brand);
  border-color: #fecaca;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.article-card h1 {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.35;
  margin-bottom: 24px;
  color: var(--text);
}

.article-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 24px;
}

.notice {
  background: #eff6ff;
  border-left: 4px solid var(--brand2);
  padding: 12px 16px;
  font-size: 13px;
  color: #1e40af;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn.big {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

/* Share row */
.share-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.share-row a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  transition: all var(--transition);
}
.share-row a:hover { border-color: var(--brand2); color: var(--brand2); background: #eff6ff; }

/* Related blocks */
.related-block {
  max-width: 860px;
  margin: 32px auto 0;
  padding: 0 16px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.related-grid a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.related-grid a:hover { border-color: var(--brand); transform: translateY(-2px); }
.related-grid small { font-size: 11px; color: var(--muted); font-weight: 600; }
.related-grid strong { font-size: 13.5px; color: var(--text); line-height: 1.4; font-weight: 600; }

@media (max-width: 760px) {
  .article-card { padding: 20px 16px; }
  .article-wrap { padding: 16px 8px 40px; }
}

/* ══════════════════════════════════════════
   GENERIC PAGE HERO (weather, newspapers, live-tv)
══════════════════════════════════════════ */
.page {
  padding-bottom: 60px;
}

.page-hero {
  padding: 48px 0 36px;
  max-width: 680px;
}
.page-hero .eyebrow {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 12px;
  color: var(--text);
}
.page-hero p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════
   PORTAL GRID (newspapers + live-tv)
══════════════════════════════════════════ */
.portal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.portal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.portal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}

.portal-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  background: #fef2f2;
  padding: 2px 8px;
  border-radius: 5px;
  align-self: flex-start;
}

.portal-card h2 {
  font-size: 18px;
  color: var(--text);
  margin: 0;
}

.portal-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}

.portal-card .btn.primary {
  align-self: flex-start;
  margin-top: 6px;
}

/* Notice wide */
.notice.wide {
  background: #eff6ff;
  border-left: 4px solid var(--brand2);
  padding: 14px 18px;
  font-size: 13px;
  color: #1e40af;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 8px;
  line-height: 1.6;
  max-width: 700px;
}

/* ══════════════════════════════════════════
   WEATHER PAGE
══════════════════════════════════════════ */
.weather-card {
  background: linear-gradient(135deg, var(--brand2), #1e40af);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 24px;
  max-width: 520px;
  box-shadow: 0 8px 32px rgba(30,58,138,.3);
}
.weather-card h2 {
  font-size: 22px;
  margin-bottom: 14px;
  opacity: .85;
}

.weather-now {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.weather-now strong {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}
.weather-now span {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

.weather-days {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
  max-width: 800px;
}
.weather-days > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.weather-days > div:hover { transform: translateY(-2px); }
.weather-days strong {
  font-size: 14px;
  color: var(--brand2);
  font-weight: 700;
}
.weather-days span {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.weather-days small {
  font-size: 12px;
  color: var(--muted);
}

.source-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

/* City select styling */
.search-panel select {
  padding: 11px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--surface);
  color: var(--text);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
  min-width: 160px;
}
.search-panel select:focus { border-color: var(--brand2); }

/* ══════════════════════════════════════════
   FEED PAGE (Ροή Ειδήσεων)
══════════════════════════════════════════ */
.ticker-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ticker-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.ticker-item:last-child { border-bottom: none; }
.ticker-item:hover { background: #fafafa; }

.ticker-time {
  font-size: 13px;
  font-weight: 800;
  color: var(--brand);
  padding: 16px 0 16px 20px;
  display: flex;
  align-items: flex-start;
  padding-top: 18px;
  flex-shrink: 0;
  white-space: nowrap;
}

.ticker-body {
  padding: 14px 20px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-left: 1px solid var(--border);
  padding-left: 16px;
}
.ticker-body a {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  transition: color var(--transition);
}
.ticker-body a:hover { color: var(--brand); }
.ticker-body small {
  font-size: 12px;
  color: var(--brand);
  font-weight: 600;
}
.ticker-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Feed section-title spacing */
.container > .section-title {
  padding: 36px 0 8px;
}
.container > .section-title h1 {
  font-size: 26px;
}

@media (max-width: 600px) {
  .portal-grid { grid-template-columns: 1fr 1fr; }
  .weather-days { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .weather-now strong { font-size: 42px; }
  .ticker-item { grid-template-columns: 52px 1fr; }
  .ticker-time { font-size: 12px; padding-left: 12px; }
  .ticker-body { padding-left: 12px; padding-right: 12px; }
}
