@font-face {
  font-family: "Interstate";
  src: url("../fonts/Interstate-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Interstate";
  src: url("../fonts/Interstate-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Interstate";
  src: url("../fonts/Interstate-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #fdfce9;
  --text: #161616;
  --muted: #555;
  --accent: #f20d0d;
  --line: rgba(242, 13, 13, 0.18);
  --panel: rgba(255, 255, 255, 0.54);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: "Interstate", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

.page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) 0;
  overflow-wrap: anywhere;
}

.brand {
  display: inline-flex;
  width: min(300px, 72vw);
  margin-bottom: clamp(42px, 6vw, 76px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.kicker {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
}

h1 {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: clamp(38px, 7vw, 76px);
  font-weight: 300;
  line-height: 1.02;
}

h2 {
  margin: 42px 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
}

h3 {
  margin: 26px 0 10px;
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 700;
}

p,
li,
td,
th {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.5;
}

p {
  margin: 0 0 18px;
}

ul {
  margin: 0;
  padding-left: 24px;
}

li + li {
  margin-top: 8px;
}

a {
  color: var(--text);
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--accent);
}

.panel {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.notice {
  border-color: rgba(85, 85, 85, 0.24);
}

.meta {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.meta th,
.meta td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(22, 22, 22, 0.12);
  text-align: left;
  vertical-align: top;
}

.meta th {
  width: 220px;
  padding-right: 24px;
  color: var(--muted);
  font-weight: 400;
}

.placeholder {
  color: var(--accent);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.button:hover {
  background: var(--accent);
  color: var(--background);
}

.back {
  color: var(--muted);
}

@media (max-width: 640px) {
  .meta,
  .meta tbody,
  .meta tr,
  .meta th,
  .meta td {
    display: block;
    width: 100%;
  }

  .meta th {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
