/* RESET / BASE */
body {
  margin: 0;
  background: #0a0a0a;
  color: #f0eee9;
  font-family: var(--sans-serif, system-ui);
  -webkit-font-smoothing: antialiased;
}

/* FORCE REMOVE DEFAULT LINK STYLES */
a,
a:visited,
a:active {
  color: rgba(240, 238, 233, 0.7);
  text-decoration: none;
}

a:hover {
  color: rgba(240, 238, 233, 1);
}

/* BACK LINK */
.back {
  display: inline-block;
  margin: 20px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.back:hover {
  opacity: 1;
}

/* JOURNAL LAYOUT */
.journal-entry {
  max-width: 720px;
  margin: 80px auto;
  padding: 0 20px;
}

/* TITLE */
h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 10px;
}

/* DATE */
.date {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,238,233,0.5);
  margin-bottom: 40px;
}

/* TEXT */
p {
  line-height: 1.8;
  margin-bottom: 24px;
  color: rgba(240,238,233,0.9);
}

/* INLINE LINKS (inside paragraphs) */
p a {
  border-bottom: 1px solid rgba(240, 238, 233, 0.3);
  padding-bottom: 1px;
}

p a:hover {
  border-bottom-color: rgba(240, 238, 233, 0.8);
}

/* IMAGES */
img {
  width: 100%;
  margin: 40px 0;
  display: block;
}

/* JOURNAL INDEX PAGE */
.journal-list {
  max-width: 720px;
  margin: 60px auto;
  padding: 0 20px;
}

.journal-list a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(240,238,233,0.1);
  font-size: 18px;
  transition: opacity 0.3s ease;
}

.journal-list a:hover {
  opacity: 0.6;
}