/* -----------------------------------------------------------
  Variables
-------------------------------------------------------------- */
:root {
  /* Colour definitions */
  --k: #212121;
  --brand-blue: #394552;
  --brand-gold: #7c7849;
  --brand-poppy: #c92420;
  --brand-poppy-dark: #aa0d08;
  --neutral-black: #070707;
  --neutral-dark: #46505d;
  --neutral-mid: #a7abb1;
  --neutral-light: #ebebeb;
  --neutral-blue: #f5f8f8;
  --neutral-tan: #f8f6ed;
  /* Maximum widths  */
  --layout-max-width: 1200px;
  --article-max-width: 980px;
  --hero-max-width: 740px;
}

/* -----------------------------------------------------------
  Typography
-------------------------------------------------------------- */
body,
button,
input,
select,
textarea {
  color: var(--k);
  font-family: "Open Sans", sans-serif;
}
/* Headings */
h1 {
  color: var(--brand-blue);
  font-family: Lora, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}
h2 {
  color: var(--brand-blue);
  font-family: Lora, sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
}
h3 {
  color: var(--brand-blue);
  font-family: Lora, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
}
h4 {
  color: var(--brand-blue);
  font-size: 1.1rem;
  font-weight: 400;
}
h5,
h6 {
  font-size: 1rem;
  font-weight: 600;
}
/* Links */
a {
  color: var(--brand-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25rem;
  transition: text-decoration-thickness 0.33s;
}
a:visited {
  color: var(--neutral-dark);
}
a:hover,
a:focus {
  color: var(--brand-gold);
  text-decoration: underline;
  text-decoration-color: var(--brand-gold);
  text-decoration-thickness: 3px;
  transition: text-decoration-thickness 0.33s;
}
/* Definition list */
dt {
  font-family: Lora, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 2rem 0 1rem 0;
}
dd {
  margin: 1rem 0;
}
/* Blockquotes */
article blockquote {
  font-style: italic;
  margin: 0 0 2rem;
  padding: 5px 0 5px 1.5rem;
}
/* Blockquotes (as figures) */
figure.blockquote {
  border-left: 3px solid var(--brand-blue);
  color: var(--brand-blue);
  font-size: 1.25rem;
  margin: 0 0 2rem;
  padding: 5px 0 5px 1.5rem;
}
figure.blockquote blockquote {
  margin: 0;
  padding: 0;
}
/* Misc */
hr {
  background-color: var(--brand-blue);
  border: none;
  color: var(--brand-blue);
  height: 3px;
  margin: 2rem 0;
}
p.intro {
  border-left: 3px solid var(--brand-blue);
  color: var(--brand-blue);
  font-size: 1.25rem;
  margin: 0 0 2rem;
  padding: 5px 0 5px 1.5rem;
}
dl.film-credits {
  display: grid;
  gap: 2rem 4rem;
  grid-template-columns: 41% calc(59% - 4rem);
}
dl.film-credits dt {
  font-size: 1.15rem;
  margin: 0;
  text-align: right;
}
dl.film-credits dd {
  margin: 0;
}
dl.film-credits ul {
  font-size: 0.85rem;
  list-style: none;
  margin: -0.75rem 0 0 0.25rem;
}
dl.film-credits li {
  margin: 0.25rem;
  padding: 0 0.25rem;
}
/* No last updated timestamp */
div.timestamp {
  display: none;
}
