:root {
  --ink: #171411;
  --charcoal: #211d1a;
  --cream: #fff8ec;
  --paper: #ffffff;
  --gold: #ffc247;
  --blue: #1377d4;
  --orange: #ff6b22;
  --green: #29a76b;
  --muted: #6f6255;
  --line: rgba(23, 20, 17, 0.13);
  --shadow: 0 24px 64px rgba(31, 22, 12, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.simple-header,
.simple-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 5vw, 72px);
  color: #fff;
  background: #171411;
}

.simple-brand {
  font-weight: 950;
  letter-spacing: 0;
}

.simple-header nav,
.simple-footer {
  font-size: 0.94rem;
  font-weight: 750;
}

.simple-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.simple-header a:hover,
.read-link:hover,
.back-link:hover {
  color: var(--gold);
}

.blog-page,
.post-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.blog-hero {
  padding: clamp(58px, 8vw, 96px) 0 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--blue));
  content: "";
}

.blog-hero h1,
.post-header h1 {
  max-width: 900px;
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 0.98;
}

.blog-hero p,
.blog-card p,
.source-note {
  color: var(--muted);
}

.blog-list {
  display: grid;
  gap: 22px;
  padding: 20px 0 76px;
}

.blog-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(26, 18, 11, 0.08);
}

.blog-card-image {
  overflow: hidden;
  border-radius: 8px;
  background: #20150f;
}

.blog-card-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-card time,
.post-meta {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 7px 0 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
}

.read-link,
.back-link {
  display: inline-flex;
  margin-top: 4px;
  color: var(--green);
  font-weight: 900;
}

.post-article {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 78px) 0 84px;
}

.post-header {
  margin-bottom: 28px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 12px;
}

.post-cats {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-cats span {
  color: var(--ink);
}

.post-article p,
.post-article li {
  color: #332820;
  font-size: 1.06rem;
}

.post-article h2,
.post-article h3,
.post-article h4 {
  margin: 32px 0 12px;
  line-height: 1.12;
}

.post-image {
  margin: 26px 0;
}

.post-image img {
  width: min(100%, 760px);
  max-height: 760px;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  box-shadow: var(--shadow);
}

.source-note {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .simple-header,
  .simple-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }
}
