:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Archivo, Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #1f2937;
  background: #eeeeee;
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1280px, 92vw);
  margin-inline: auto;
}

.site-header {
  background: #ffffffd9;
  border-bottom: 1px solid #d7dce3;
  position: sticky;
  top: 0;
  backdrop-filter: blur(4px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  color: #111827;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  font-weight: 600;
}

main {
  padding: 2.5rem 0;
}

article,
.review-overview {
  background: #f8f8f8;
  padding: clamp(1.25rem, 2vw, 2rem);
  border: 1px solid #d7dce3;
}

article > * + * {
  margin-top: 1.2rem;
}

article h1,
.review-overview h1 {
  margin: 0 0 1rem;
  line-height: 1.2;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

article section {
  border-top: 1px solid #d7dce3;
  padding-top: 1rem;
}

article h2 {
  font-size: 1.25rem;
  margin: 0 0 0.65rem;
}

.review-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.review-list a {
  display: block;
  text-decoration: none;
  background: #eeeeee;
  padding: 1rem;
  border: 1px solid #d7dce3;
  font-weight: 600;
}

.review-list a:hover {
  background: #ffffff;
  border-color: #9aa6b8;
}

.site-footer {
  border-top: 1px solid #d7dce3;
  margin-top: 3rem;
  padding: 2.5rem 0;
}

.footer-columns {
  display: grid;
  gap: 2rem;
}

.footer-columns section {
  min-width: 0;
}

.footer-columns h2 {
  font-size: 1.95rem;
  line-height: 1.1;
  margin: 0 0 0.9rem;
}

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

.footer-columns li {
  margin: 0.2rem 0;
}

.footer-columns a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-columns a:hover {
  border-bottom-color: currentColor;
}

.footer-columns p {
  margin: 0;
  max-width: 65ch;
}

.to-review-list,
.watch-list {
  margin-bottom: 1.2rem;
}

@media (min-width: 960px) {
  .footer-columns {
    grid-template-columns: 1.1fr 1fr 1.25fr;
    align-items: start;
  }

  .footer-columns h2 {
    font-size: 2.1rem;
  }
}


.quick-breakdown {
  border-top: 1px solid #d7dce3;
  padding-top: 1rem;
}

.quick-breakdown ul {
  padding-left: 1.2rem;
}

.quick-breakdown dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.35rem 1rem;
}

.quick-breakdown dt {
  font-weight: 700;
}

.quick-breakdown dd {
  margin: 0;
}

.review-body {
  border-top: 1px solid #d7dce3;
  padding-top: 1rem;
}

.review-body h2 {
  margin-top: 1.25rem;
}
