/* Shared look for /press/ and every release under it. The palette and type
   scale are the same as /about/; they live here rather than inline because the
   press pages are a growing set and a release added next year should not have
   to carry a copy of the stylesheet with it. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-ground:         #0f0f0f;
  --color-border:         #272727;
  --color-text-primary:   #e8e4de;
  --color-text-secondary: #7a7570;
  --color-text-tertiary:  #4a4642;
  --color-accent:         #c8a97e;
}

html {
  background-color: var(--color-ground);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
}

main { width: 100%; max-width: 640px; }

.eyebrow {
  font-size: 0.852rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin: 2.5rem 0 0.75rem;
}

p { color: var(--color-text-secondary); margin-bottom: 1rem; }
/* Named rather than `main > p:first-of-type`, which on these pages selects the
   eyebrow and leaves the opening paragraph reading as body text. */
p.lede { color: var(--color-text-primary); font-size: 1.075rem; }

a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* One row per property or per release: a title line, then a line about it. */
.entries { list-style: none; margin: 0.5rem 0 0; }
.entries li { margin-bottom: 1.25rem; color: var(--color-text-secondary); }
.entries .name { color: var(--color-text-primary); font-weight: 700; }
.entries .meta { display: block; font-size: 0.9rem; color: var(--color-text-tertiary); }
/* Its own line: run inline, the link row wraps into the sentence above it and
   breaks "App Store" across two lines. */
.entries .links { display: block; margin-top: 0.15rem; font-size: 0.9rem; }
.entries .links .sep { color: var(--color-text-tertiary); padding: 0 0.4rem; }

.dateline {
  font-size: 0.9rem;
  color: var(--color-text-tertiary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

blockquote {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  border-left: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}

.boilerplate { font-size: 0.9rem; color: var(--color-text-tertiary); }

nav { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
nav a { font-size: 0.9rem; letter-spacing: 0.05em; }

footer {
  margin-top: 2rem;
  font-size: 0.852rem;
  color: var(--color-text-tertiary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
