body {
  margin: 0;
  font-family: "Source Serif 4", serif;
  color: #222;
  background: #faf8f5;
  line-height: 1.6;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  padding: 40px 28px;
  box-sizing: border-box;
  background: #ffffff;
  border-right: 1px solid #eee;
}

.sidebar h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 32px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  margin: 14px 0;
}

.sidebar a {
  text-decoration: none;
  color: #222;
  font-size: 16px;
}

.sidebar a:hover {
  text-decoration: underline;
}

/* Content area */
main {
  margin-left: 280px;
  padding: 40px 55px;
  max-width: 800px;
}

/* Section spacing */
section {
  margin-bottom: 80px;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Mobile layout */
@media (max-width: 800px) {
  .sidebar {
    position: static;
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  main {
    margin-left: 0;
  }
}

#what_ive_written ul {
  padding-left: 0;
  list-style: none;
}

#what_ive_written li {
  margin: 10px 0;
}

#what_ive_written a {
  text-decoration: none;
  color: #222;
}

#what_ive_written a:hover {
  text-decoration: underline;
}
#what_ive_written h2 {
  text-transform: uppercase;
}