:root {
  --paper: #FAF5EC; --paper-deep: #F1E7D6; --paper-edge: #E7DAC4;
  --ink: #2E2A24; --ink-soft: #7A7062; --ink-faint: #B8AC99; --accent: #B4552D;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--paper); color: var(--ink);
  font-family: "Literata", Georgia, serif; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 680px; margin: 0 auto; padding: 40px 26px 72px; }

/* running head */
.top { display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--paper-edge); padding-bottom: 14px; font-size: 13px; }
.top .brand { font-family: "Caveat", cursive; font-size: 26px; color: var(--ink); }
.top .lang { color: var(--ink-faint); }

/* index */
.lede { font-style: italic; color: var(--ink-soft); font-size: 17px; margin: 22px 0 8px; }
.post-list { list-style: none; margin-top: 26px; }
.post-list li { border-top: 1px solid var(--paper-edge); padding: 22px 0; }
.post-list a.title { font-size: 21px; font-weight: 600; color: var(--ink); display: block; }
.post-list a.title:hover { color: var(--accent); text-decoration: none; }
.post-list .meta { font-size: 12.5px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.post-list p { color: var(--ink-soft); font-size: 15.5px; margin-top: 6px; }

/* article */
article h1 { font-size: clamp(28px, 5vw, 38px); line-height: 1.2; margin: 26px 0 10px; letter-spacing: -.01em; }
article .meta { font-size: 12.5px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .08em; }
article .stand { font-style: italic; font-size: 18px; color: var(--ink-soft); margin: 18px 0 30px; }
article h2 { font-size: 22px; margin: 34px 0 10px; }
article p { margin: 14px 0; font-size: 17px; }
article ul { margin: 14px 0 14px 22px; }
article li { margin: 8px 0; font-size: 16.5px; color: var(--ink-soft); }
article blockquote { border-left: 3px solid var(--accent); margin: 22px 0; padding: 4px 0 4px 20px;
  font-family: "Caveat", cursive; font-size: 24px; color: var(--ink); line-height: 1.4; }
.cta-box { margin: 44px 0 0; border-top: 1px solid var(--paper-edge); padding-top: 30px; text-align: center; }
.cta-box .pill { display: inline-block; background: var(--ink); color: var(--paper); border-radius: 16px;
  padding: 15px 28px; font-size: 16px; font-weight: 500; }
.cta-box .pill:hover { background: var(--accent); text-decoration: none; }
.cta-box .soon { display: block; font-style: italic; font-size: 13px; color: var(--ink-faint); margin-top: 11px; }
footer { margin-top: 56px; border-top: 1px solid var(--paper-edge); padding-top: 20px;
  font-style: italic; font-size: 13px; color: var(--ink-faint); }
