/* ----- Base reset ----- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #0f0f11;
  color: #e6e6e6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

/* ----- Page layout ----- */
.page {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* ----- Header ----- */
.site-header h1 {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}

/* ----- Journal section ----- */
.journal {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: 6px;

  /* subtle dot grid */
  background-color: #111114;
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 16px 16px;
}

/* ----- Text ----- */
.journal p {
  margin-bottom: 1.4rem;
  color: #dcdcdc;
}

/* ----- Links ----- */
a {
  color: #8aa2c8;
  text-decoration: none;
}

a:a:hover {
  color: #b3c7ff;
  text-decoration: underline;
}

.journal img {
  max-width: 100%;
  display: block;
  margin: 2rem auto;
  border-radius: 4px;
}

.journal hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 3rem 0;
}


  color: #b3c7ff;
  text-decoration: underline;
}
