/* ============================================
   furthermore.micro.blog — custom CSS
   Reference design: cnstv.tumblr.com
   Discipline: colors are scoped to light mode,
   geometry is global. Dark mode inherits the
   theme's own palette.
   ============================================ */

/* ===== base typography (geometry: global) ===== */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== colors: light mode only (theme palette override) ===== */
html[data-theme="light"] {
  --color-text: #4c4c4c;
  --color-text-strong: #4c4c4c;   /* post text draws from this */
}
html[data-theme="light"] .main-nav .site-title a {
  color: #1a1a1a;                  /* keep the title darker, explicitly */
}

html[data-theme="dark"] time.dt-published {
  color: #606060;
}

/* ===== content column: 800px, centered ===== */
#wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== nav: same 800px column as the content ===== */
nav.main-nav {
  position: relative;
  max-width: 800px;
  margin: 6rem auto 3rem;
  padding: 0 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#site-menus a {
  font-size: 15px;
}

/* ===== hide the avatar ===== */
.main-nav .site-image {
  display: none;
}

/* ===== title: 36px bold, on the column's left edge ===== */
.main-nav .site-title {
  padding-left: 0;
  margin-left: 0;
}
.main-nav .site-title a {
  font-size: 36px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.5px;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
}


/* ===== mobile ===== */
@media (max-width: 600px) {
  .main-nav .site-title a {
    font-size: 28px;
  }
  nav.main-nav {
    margin-top: 1.5rem;
    margin-bottom: 3rem;
  }
}