/* GWTO archive fallback styles — original CSS unavailable in Wayback */
:root {
  --bg: #fffbf6;
  --fg: #1f1a14;
  --muted: #6b6258;
  --accent: #6b1f2a;
  --accent-soft: #fff0f0;
  --border: #e6dfd5;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
               Arial, "Noto Sans", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
}
.archive-banner {
  position: sticky; top: 0; z-index: 100;
  background: var(--accent); color: #fff;
  padding: 10px 18px; font-size: 14px; text-align: center;
  border-bottom: 2px solid #4d141d;
}
.archive-banner a { color: #ffd9d9; text-decoration: underline; }
.archive-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}
header, nav, .site-header, .menu-main-menu-container {
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px; margin-bottom: 24px;
}
nav ul, .menu, .menu-main-menu-container ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 4px 18px;
}
nav a, .menu a {
  color: var(--accent); text-decoration: none; font-weight: 500;
  padding: 6px 4px; border-radius: 4px;
}
nav a:hover, .menu a:hover { background: var(--accent-soft); }
h1, h2, h3, h4, h5 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--fg); line-height: 1.25;
  margin: 1.6em 0 0.5em;
}
h1 { font-size: 2.2em; }
h2 { font-size: 1.65em; border-bottom: 1px solid var(--border); padding-bottom: 6px; }
h3 { font-size: 1.3em; }
p { margin: 0.9em 0; }
a { color: var(--accent); }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; border-radius: 4px; }
img:not([src]), img[src=""] { display: none; }
ul, ol { padding-left: 1.4em; }
li { margin: 0.3em 0; }
blockquote {
  border-left: 3px solid var(--accent);
  margin: 1em 0; padding: 0.4em 1em;
  background: var(--accent-soft); color: var(--muted);
  font-style: italic;
}
code, pre {
  font-family: "SF Mono", Menlo, Consolas, monospace;
  background: #f4eee5; padding: 2px 6px; border-radius: 3px;
  font-size: 0.92em;
}
pre { padding: 12px; overflow-x: auto; }
hr { border: 0; border-top: 1px solid var(--border); margin: 2em 0; }
table { border-collapse: collapse; margin: 1em 0; width: 100%; }
th, td { border: 1px solid var(--border); padding: 8px 12px; text-align: left; }
th { background: #f4eee5; }
.entry-meta, .post-meta, time { color: var(--muted); font-size: 0.9em; }
article { margin-bottom: 3em; }
article + article { border-top: 1px solid var(--border); padding-top: 2em; }
footer, .site-footer {
  border-top: 1px solid var(--border);
  margin-top: 3em; padding-top: 1em;
  color: var(--muted); font-size: 0.9em;
}
form input, form textarea, form select {
  font: inherit; padding: 8px 10px;
  border: 1px solid var(--border); border-radius: 4px;
  background: #fff; max-width: 100%;
}
form button, input[type="submit"] {
  background: var(--accent); color: #fff; border: 0;
  padding: 10px 20px; border-radius: 4px; cursor: pointer; font: inherit;
}
form button:hover, input[type="submit"]:hover { filter: brightness(1.1); }
iframe { max-width: 100%; }
.elementor, .elementor-section, .elementor-container, .elementor-row,
.elementor-column, .elementor-widget-wrap, .elementor-widget,
.elementor-widget-container, .wp-block-group, .wp-block-columns, .wp-block-column {
  display: block; max-width: 100%;
}
.elementor-column { margin-bottom: 1em; }
.screen-reader-text { position: absolute; left: -9999px; }
@media (max-width: 640px) {
  body { font-size: 16px; }
  .archive-wrap { padding: 16px; }
  h1 { font-size: 1.7em; }
  nav ul, .menu ul { gap: 2px 12px; }
}
