:root {
  color: #2c2521;
  background: #f7f2ec;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.insight-header,
.insight-main,
.insight-footer {
  width: min(100% - 36px, 1120px);
  margin-inline: auto;
}

.insight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand {
  font-weight: 900;
}

.insight-header a:not(.brand),
.source-list a {
  color: #a1502f;
  font-weight: 850;
}

.insight-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #2c2521;
}

.insight-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.insight-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 18, 16, 0.78), rgba(22, 18, 16, 0.5), rgba(22, 18, 16, 0.12));
}

.insight-hero-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 36px, 1120px);
  margin-inline: auto;
  padding: clamp(76px, 10vw, 132px) 0;
  color: #fffaf5;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d48a5a;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

p,
li {
  color: #665952;
  line-height: 1.68;
}

.insight-hero-copy p {
  max-width: 680px;
  color: #fffaf5;
  font-size: 1.08rem;
}

.insight-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(48px, 7vw, 82px) 0;
}

.article-body {
  display: grid;
  gap: 28px;
}

.article-section,
.sidebar-card {
  border: 1px solid rgba(44, 37, 33, 0.12);
  border-radius: 8px;
  background: #fffaf5;
  padding: clamp(22px, 3vw, 32px);
}

.article-section h2 {
  margin-bottom: 12px;
}

.expense-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
  position: sticky;
  top: 24px;
}

.source-list {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #a1502f;
  color: #fffaf5;
  padding: 0 20px;
  font-weight: 850;
}

.insight-footer {
  border-top: 1px solid rgba(44, 37, 33, 0.12);
  padding: 28px 0 42px;
  color: #665952;
}

@media (max-width: 860px) {
  .insight-main {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}
