:root {
  --red: #e4372f;
  --ink: #151515;
  --muted: #666;
  --paper: #fff;
  --soft: #f5f5f3;
  --line: #deded9;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Roboto, Arial, sans-serif;
  line-height: 1.72;
}
a {
  color: var(--red);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: #ad211b;
}
.site-header {
  background: #101010;
  color: #fff;
  border-bottom: 4px solid var(--red);
}
.nav-wrap {
  max-width: var(--max);
  min-height: 92px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img {
  width: 160px;
  height: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.main-nav a[aria-current="page"],
.main-nav a:hover {
  color: var(--red);
}
.quote-link {
  border: 2px solid var(--red);
  padding: 9px 16px;
}
.hero {
  background: #191919;
  color: #fff;
  padding: 68px 24px;
}
.hero-inner {
  max-width: var(--max);
  margin: auto;
}
.eyebrow {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1,
.post-header h1 {
  font-family: "Arial Narrow", Impact, sans-serif;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: 0.015em;
  margin: 0.25em 0;
  font-size: clamp(2.45rem, 6vw, 5.4rem);
}
.hero p {
  max-width: 790px;
  color: #d5d5d5;
  font-size: 1.14rem;
}
.breadcrumbs {
  font-size: 0.86rem;
  color: #777;
  margin-bottom: 24px;
}
.breadcrumbs a {
  color: inherit;
}
.archive-layout,
.post-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 64px;
}
.post-list {
  display: grid;
  gap: 28px;
}
.post-card {
  border: 1px solid var(--line);
  padding: 30px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}
.post-card h2 {
  font-size: 1.7rem;
  line-height: 1.2;
  margin: 0.25rem 0 0.7rem;
}
.post-card h2 a {
  color: var(--ink);
  text-decoration: none;
}
.post-card h2 a:hover {
  color: var(--red);
}
.meta {
  font-size: 0.83rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.read-more,
.button {
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  text-decoration: none;
}
.button {
  background: var(--red);
  color: #fff;
  padding: 13px 20px;
}
.button:hover {
  background: #b5241e;
  color: #fff;
}
.sidebar section {
  background: var(--soft);
  border-top: 4px solid var(--red);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar h2 {
  font-size: 1.15rem;
  margin-top: 0;
}
.sidebar ul {
  padding-left: 20px;
}
.sidebar li {
  margin: 0.55em 0;
}
.post-header {
  max-width: 940px;
  margin: 0 auto;
  padding: 60px 24px 35px;
}
.post-header h1 {
  font-size: clamp(2.3rem, 5.2vw, 4.7rem);
}
.post-header .dek {
  font-size: 1.22rem;
  color: #4e4e4e;
  max-width: 850px;
}
.post-layout {
  padding-top: 20px;
}
.article {
  font-size: 1.04rem;
}
.article h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-top: 2.1em;
}
.article h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin-top: 1.7em;
}
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0;
  font-size: 0.95rem;
}
.article th,
.article td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}
.article th {
  background: var(--soft);
}
.answer-box,
.takeaways,
.cta {
  padding: 24px;
  margin: 24px 0;
}
.answer-box {
  background: #fff4f3;
  border-left: 5px solid var(--red);
  font-size: 1.13rem;
}
.takeaways {
  background: var(--soft);
}
.takeaways h2 {
  margin-top: 0;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item h3 {
  margin: 0 0 7px;
}
.cta {
  background: #151515;
  color: #fff;
}
.cta h2 {
  margin-top: 0;
}
.cta a {
  color: #fff;
}
.sources {
  font-size: 0.93rem;
}
.site-footer {
  background: #101010;
  color: #bbb;
  padding: 45px 24px;
  margin-top: 45px;
}
.footer-inner {
  max-width: var(--max);
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-brand {
  display: grid;
  gap: 6px;
}
.footer-logo {
  display: block;
  width: auto;
  max-width: min(280px, 100%);
  max-height: 90px;
  margin-bottom: 8px;
  object-fit: contain;
  object-position: left center;
}
.site-footer a {
  color: #fff;
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 10px;
  z-index: 99;
}
.updated-note {
  font-size: 0.88rem;
  color: #777;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 820px) {
  .footer-logo {
    max-height: 68px;
  }
  .main-nav {
    gap: 14px;
    font-size: 0.88rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .archive-layout,
  .post-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sidebar {
    order: 2;
  }
  .nav-wrap {
    align-items: flex-start;
  }
  .brand img {
    width: 130px;
  }
  .hero {
    padding-top: 48px;
  }
}
