/*
  NOMADIC BOYY — reconstructed theme stylesheet.
  The original WordPress.com "triton-lite" theme CSS bundle was not
  captured by the Wayback Machine (its hashed _static/?? URL 404s in the
  archive), so this file recreates the visible layout from the page
  markup and known dimensions instead of being a byte-for-byte copy.
*/

:root {
  --ink: #262220;
  --muted: #8a7f78;
  --accent: #c1502e;
  --accent-dark: #9c3f22;
  --paper: #fffdfb;
  --line: #ece4de;
  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-base);
  color: var(--ink);
  background-color: #ffffff;
  line-height: 1.55;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

#masthead {
  min-height: 4px;
}

#header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

#header-image {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 960 / 270;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  margin: 0 auto;
}
#header-image a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}

#logo {
  text-align: center;
  padding: 22px 16px 0;
}
#logo h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: 0.06em;
  font-weight: 800;
  text-transform: uppercase;
}
#logo h1 a {
  color: var(--ink);
}
#logo h1 a:hover {
  color: var(--accent);
  text-decoration: none;
}
#logo .desc {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#slider-wrapper { min-height: 0; }

.lay1 {
  padding: 28px 0 8px;
}

.lay1 .post {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.lay1 .post:first-child { padding-top: 0; }

.imgwrap {
  position: relative;
  flex: 0 0 290px;
  width: 290px;
}
.imgwrap a { display: block; }
.imgwrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  background: #f1ece8;
}

.date-meta {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(38, 34, 32, 0.72);
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 3px;
}
.date-meta a { color: #fff; }
.date-meta a:hover { text-decoration: none; }

.block-comm {
  position: absolute;
  top: 8px;
  right: 8px;
}
.block-comm .comments {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 3px;
}
.block-comm a { color: var(--ink); }

.post-content {
  flex: 1 1 auto;
  min-width: 0;
}

.postitle {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.3;
}
.postitle a { color: var(--ink); }
.postitle a:hover { color: var(--accent); text-decoration: none; }

.triton-lite-excerpt p {
  margin: 0;
  color: #4a423d;
  font-size: 14.5px;
}
.triton-lite-excerpt a.read-more {
  white-space: nowrap;
  font-weight: 600;
}

#nav-below {
  padding: 10px 0 30px;
}
#nav-below .assistive-text { position: absolute; left: -9999px; }
.nav-paginated {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.nav-paginated .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 6px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 13px;
}
.nav-paginated .page-numbers.current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.nav-paginated a.page-numbers:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 10px;
}
#copyright {
  padding: 22px 0 30px;
  text-align: center;
}
.copytext {
  color: var(--muted);
  font-size: 12.5px;
}

@media (max-width: 640px) {
  #logo h1 { font-size: 26px; }
  .lay1 .post {
    flex-direction: column;
    gap: 12px;
  }
  .imgwrap {
    width: 100%;
    flex-basis: auto;
  }
}
