body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  font-size: 17.5px;
  color: #2b2b2b;
  background: #f3f2ee;
}

main {
  max-width: 760px;
  padding: 4rem 1.75rem;
  margin: 0 auto;
}

header {
  margin-bottom: 4rem;
}

.header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.header-row img {
  width: 80px;
  height: auto;
  margin-top: -66px; /* move up a bit */
}

header h1 {
  font-size: 3.2rem;
  font-weight: 600;
  margin: 0;
  margin-left: -48px; /* move left a bit */
}

header p {
  margin: 0;
  color: #555;
  font-size: 1.15rem;
}

.timestamp {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: #777;
}

section {
  margin-bottom: 3.75rem;
}

h2 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  margin: 0 0 1.1rem 0;
}

ul {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.6rem;
}

footer {
  margin-top: 3.45rem;
  font-size: 0.9rem;
  color: #666;
}

a {
  color: inherit;
  text-decoration: underline;
}

.link {
  color: #1a73e8;
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
}



/* BLOG */

.blog-post {
  max-width: 680px;
  margin: 0 auto;
  font-family: "Noto Sans", system-ui, sans-serif;
  color: #2b2b2b;
  margin-bottom: 8.0rem;
}

.blog-post header {
  margin-bottom: 2.5rem;
}

.blog-post h1 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

.post-date {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #777;
}

.poem {
  margin: 3rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid #999;
  color: #333;
}

.poem p {
  margin: 0 0 1rem 0;
  font-style: italic;
}

.poem .translation {
  font-style: normal;
  color: #555;
}

.poem footer {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #666;
}

.post-body p {
  margin: 0 0 1.4rem 0;
}

.post-body .closing {
  margin-top: 2.5rem;
  font-style: italic;
}



/* PRESS */

.press-page {
  max-width: 750px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  font-family: "Noto Sans", system-ui, sans-serif;
  color: #2b2b2b;
  background: #f3f2ee;
}

.press-page header h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.press-page header p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Single press item */

.press-list .press-item {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.press-list .press-item h2 {
  font-size: 1.35rem;
  margin: 0 0 0.3rem 0;
}

.press-list .press-item h2 a {
  color: #2b2b2b;
  text-decoration: none;
}

.press-list .press-item h2 a:hover {
  text-decoration: underline;
}

.press-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.75rem;
}

.press-excerpt {
  font-size: 1rem;
  line-height: 1.55;
  color: #333;
}

/* Responsive considerations */

@media screen and (max-width: 600px) {
  .press-page {
    padding: 1.5rem;
  }
  .press-list .press-item h2 {
    font-size: 1.25rem;
  }
}


