/* Cities of the Aegean — blog styles.
   Mirrors the game's palette (see src/style.css) without importing it:
   these pages are static and must not depend on the Vite bundle. */

:root {
  --gold: #c8a44d;
  --gold-deep: #6d5313;
  --gold-mid: #7a5c18;
  --marble: #f2ecdc;
  --marble-dim: #e2d8bf;
  --navy: #14212e;
  --ink: #33302a;
  --ink-soft: #5a5347;
  --ink-faint: #8a7a4e;
  --serif: 'Cinzel', Georgia, serif;
  --sans: 'Alegreya Sans', 'Gill Sans', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--navy);
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 760px;
  margin: 32px auto;
  padding: 40px 48px 36px;
  background: linear-gradient(170deg, var(--marble), var(--marble-dim));
  border: 3px solid var(--gold);
  border-radius: 4px;
}

/* ---------- masthead ---------- */

.masthead {
  text-align: center;
  border-bottom: 1px solid #c8a44d55;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.masthead .laurel { color: var(--gold); font-size: 22px; line-height: 1; }
.masthead a.wordmark {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  text-decoration: none;
  margin-top: 6px;
}
.masthead a.wordmark:hover { color: var(--gold-mid); }
.masthead .tagline {
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ---------- type ---------- */

h1 {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.25;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
h2 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold-deep);
  margin: 34px 0 12px;
  line-height: 1.3;
}
h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  color: var(--gold-mid);
  margin: 26px 0 8px;
}
p { margin-bottom: 16px; font-size: 17px; }
ul, ol { margin: 0 0 16px 22px; }
li { margin-bottom: 8px; font-size: 17px; }
a { color: var(--gold-mid); }
a:hover { color: var(--gold-deep); }
strong { color: var(--ink); }
em { font-style: italic; }

.byline {
  font-size: 14px;
  color: var(--ink-faint);
  margin-bottom: 26px;
  letter-spacing: 0.02em;
}
.standfirst {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

blockquote {
  border-left: 3px solid var(--gold);
  padding: 2px 0 2px 18px;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- index listing ---------- */

.post-list { list-style: none; margin: 0; }
.post-list li {
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid #c8a44d33;
}
.post-list li:last-child { border-bottom: 0; }
.post-list h2 { margin: 0 0 4px; font-size: 19px; }
.post-list h2 a { text-decoration: none; color: var(--gold-deep); }
.post-list h2 a:hover { text-decoration: underline; }
.post-list .meta { font-size: 13px; color: var(--ink-faint); margin-bottom: 6px; }
.post-list p { margin: 0; font-size: 16px; color: var(--ink-soft); }

/* ---------- play callout ---------- */

.play-box {
  margin: 34px 0 6px;
  padding: 22px 26px;
  background: #e7dcc0;
  border: 1px solid var(--gold);
  border-radius: 3px;
  text-align: center;
}
.play-box p { font-size: 16px; margin-bottom: 14px; }
.play-box p:last-of-type { margin-bottom: 0; }
.play-btn {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #2a2313;
  background: linear-gradient(180deg, #e8c96e, var(--gold));
  border: 1px solid #a8863a;
  border-radius: 3px;
  padding: 11px 26px;
}
.play-btn:hover { background: linear-gradient(180deg, #f0d788, #d4b055); color: #2a2313; }
.play-note { font-size: 13px; color: var(--ink-faint); margin-top: 12px; }

/* ---------- screenshots ---------- */

figure.shot {
  margin: 28px 0;
}
figure.shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #a8863a;
  border-radius: 3px;
  background: var(--navy);
}
figure.shot figcaption {
  margin-top: 9px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
}
/* a hero shot breaks out of the text column to the full width of the sheet */
figure.shot.wide {
  margin-left: -48px;
  margin-right: -48px;
}
figure.shot.wide img { border-radius: 0; border-left: 0; border-right: 0; }

/* ---------- footer ---------- */

footer {
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid #c8a44d55;
  font-size: 13px;
  color: var(--ink-faint);
}
footer a { color: var(--ink-faint); }

@media (max-width: 700px) {
  main { margin: 0; padding: 28px 22px 26px; border-left: 0; border-right: 0; border-radius: 0; }
  figure.shot.wide { margin-left: -22px; margin-right: -22px; }
  h1 { font-size: 25px; }
  h2 { font-size: 19px; }
  p, li { font-size: 16.5px; }
  .standfirst { font-size: 18px; }
}
