:root {
  color-scheme: dark;
  font-family:
    system-ui,
    -apple-system,
    'Segoe UI',
    sans-serif;
  background: #21160d;
  color: #f8ead0;
  line-height: 1.72;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: radial-gradient(ellipse at top, #4b3520, #21160d 70%);
  font-size: 18px;
}
main {
  max-width: 820px;
  margin: auto;
  padding: 28px 22px 72px;
}
header,
footer {
  border-color: #735731;
}
header {
  border-bottom: 1px solid #735731;
  padding-bottom: 20px;
}
footer {
  border-top: 1px solid #735731;
  margin-top: 48px;
  padding-top: 22px;
  color: #deceb0;
}
h1,
h2,
h3 {
  font-family: Georgia, serif;
  line-height: 1.2;
  color: #ffe3a0;
}
h1 {
  font-size: clamp(32px, 6vw, 50px);
  margin: 0.5em 0;
}
h2 {
  font-size: 28px;
  margin-top: 48px;
}
h3 {
  font-size: 21px;
  margin-top: 30px;
}
a {
  color: #ffe3a0;
  text-underline-offset: 4px;
}
a:focus-visible {
  outline: 3px solid #ffe3a0;
  outline-offset: 5px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  text-decoration: none;
}
.brand img {
  width: 54px;
  height: 54px;
}
.lead {
  font-size: 21px;
  border-left: 4px solid #e8c571;
  padding: 14px 18px;
  background: #30200d;
  border-radius: 0 12px 12px 0;
}
.meta,
.note {
  color: #deceb0;
}
.note {
  background: #30200d;
  border: 1px solid #735731;
  border-radius: 12px;
  padding: 16px 18px;
}
.play {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid #e8c571;
  border-radius: 12px;
  background: linear-gradient(#614821, #30200d);
  box-shadow: 0 4px 0 #100c07;
  font-weight: 800;
  text-decoration: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #291c11;
}
th,
td {
  border: 1px solid #735731;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}
th {
  color: #ffe3a0;
}
li {
  margin: 0.55em 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.card {
  border: 1px solid #735731;
  border-radius: 14px;
  background: #30200d;
  padding: 18px;
}
.card h2 {
  margin-top: 0;
  font-size: 23px;
}
.crumbs {
  font-size: 15px;
  color: #deceb0;
}
.sources {
  font-size: 16px;
}
.faq h3 {
  margin-bottom: 4px;
}
@media (max-width: 560px) {
  body {
    font-size: 17px;
  }
  main {
    padding: 20px 16px 56px;
  }
  table {
    font-size: 15px;
  }
  th,
  td {
    padding: 7px;
  }
}
