/* Guest-guide extras: "Ξέρατε ότι;" trivia + "Σημερινή πρόταση" special-of-day.
   Scoped to .guide-trivia / .guide-special so it cannot leak into the rest of
   the guide. Works on the default (light) palette and on .guide-palette-night.
   Brand: green #0b4f55, gold #c5a059 (light) / #d7b56d (night). */

/* The intro band (weather + special + trivia + launcher) sits ABOVE the guide
   article. On the always-dark boutique theme it carries .guide-intro-extras--dark
   so its dark backdrop bleeds full-width — the band components use translucent
   surfaces that only read as dark over a dark backdrop. */
.guide-intro-extras--dark {
  background: #101114;
  box-shadow: 0 0 0 100vmax #101114;
  clip-path: inset(0 -100vmax);
  padding-top: 1.4rem;
  padding-bottom: 1.1rem;
}

.guide-trivia,
.guide-special {
  --ge-green: #0b4f55;
  --ge-gold: #c5a059;
  --ge-surface: #ffffff;
  --ge-border: rgba(11, 79, 85, 0.14);
  --ge-text: #1f2d2f;
  --ge-muted: #5b6b6d;
  box-sizing: border-box;
  margin: 1rem 0;
  border-radius: 16px;
  border: 1px solid var(--ge-border);
  background: var(--ge-surface);
  box-shadow: 0 1px 2px rgba(11, 79, 85, 0.06);
}

/* ---- Ξέρατε ότι; (trivia) ---- */
.guide-trivia {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 1.05rem;
  border-left: 4px solid var(--ge-gold);
}

.guide-trivia__icon {
  flex: 0 0 auto;
  font-size: 1.25rem;
  line-height: 1.4;
}

.guide-trivia__body {
  min-width: 0;
}

.guide-trivia__title {
  margin: 0 0 0.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ge-green);
}

.guide-trivia__fact {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ge-text);
}

/* ---- Σημερινή πρόταση (special of the day) ---- */
.guide-special {
  padding: 1rem 1.15rem;
  border-top: 3px solid var(--ge-gold);
}

.guide-special__eyebrow {
  margin: 0 0 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ge-green);
}

.guide-special__star {
  color: var(--ge-gold);
  font-size: 0.95rem;
  line-height: 1;
}

.guide-special__link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  transition: transform 0.12s ease;
}

.guide-special__link:hover .guide-special__title,
.guide-special__link:focus-visible .guide-special__title {
  text-decoration: underline;
  text-decoration-color: var(--ge-gold);
}

.guide-special__title {
  display: block;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ge-text);
}

.guide-special__subtitle {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--ge-muted);
}

/* ---- Night palette ---- */
.guide-palette-night .guide-trivia,
.guide-palette-night .guide-special {
  --ge-gold: #d7b56d;
  --ge-surface: rgba(255, 255, 255, 0.05);
  --ge-border: rgba(215, 181, 109, 0.28);
  --ge-text: #f1efe9;
  --ge-muted: #c2c8c6;
  box-shadow: none;
}

.guide-palette-night .guide-trivia__title,
.guide-palette-night .guide-special__eyebrow {
  color: var(--ge-gold);
}
