:root {
  --bg: #ffffff;
  --text: #111;
  --muted: #777;
  --accent: #b23b3b;
  --border: #ddd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ===== TYPOGRAPHY SYSTEM ===== */

body {
  font-family: Cambria, "Times New Roman", Times, serif;
  color: #111;
  line-height: 1.65;
}

/* Eyebrow / Brand */
.eyebrow {
  font-size: 11px;              /* smaller */
  letter-spacing: 0.45em;       /* more spaced */
  text-transform: uppercase;
  color: #888;                  /* slightly softer */
  margin-bottom: 28px;
}


/* Main name */
.site-title {
  font-family: "Playfair Display", serif;
  font-size: 60px;              /* ↓ from 72px */
  font-weight: 700;
  letter-spacing: -0.015em;     /* slightly looser */
  line-height: 1.15;            /* more breathing room */
  margin-bottom: 22px;
}


/* Subtitle */
.descriptor {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}


body {
  background: var(--bg);
  color: var(--text);
  font-family: Cambria, "Times New Roman", serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}
.site-header {
  text-align: center;
  padding: 80px 20px 40px;
}

.site-footer {
  text-align: center;
  font-size: 13px;
  color: #888;
  padding: 60px 0 40px;
}

.descriptor {
  font-size: 15px;
  color: var(--muted);
}

.header-line {
  border-top: 1px solid var(--border);
  margin: 40px auto;
  max-width: 1200px;
}

.grid-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.nav-cell {
  padding: 16px;
  text-decoration: none;
  color: var(--text);
  border-right: 1px solid var(--border);
}

.nav-cell:last-child {
  border-right: none;
}

.nav-cell.active {
  color: var(--accent);
}
.featured {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
}

.featured-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: start;
}

.featured-grid img {
  width: 100%;
  height: auto;
}

.featured-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin-bottom: 16px;
}

.featured-text p {
  color: var(--muted);
  margin-bottom: 20px;
}

.featured-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.read-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.section-divider {
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 80px auto;
}
.content-grid {
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1px 1fr;
  gap: 64px;
  align-items: start;
}

/* REAL divider column */
.divider {
  background: var(--border);
  width: 1px;
}

.articles {
  padding-top: 0;
}

.section-title {
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.post-card {
  display: grid;
  grid-template-columns: 40% 60%;
  border: 1px solid #eee;
  margin-bottom: 40px;
}
.post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card img {
  height: 100%;
  object-fit: cover;
}

.post-text {
  padding: 24px;
}

.category {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.post-text h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin: 10px 0;
}

.post-text p {
  font-size: 0.95rem;
  color: #555;
}
.about {
  padding-top: 0;
}

.about h3 {
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  margin-bottom: 32px;
}

.about img {
  width: 260px;
  margin-bottom: 24px;
}

.about p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 16px;
}

.about a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .divider {
    display: none;
  }
}
/* =========================
   ARTICLES PAGE (template cards)
   ========================= */
.article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.articles-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 120px;
}
.article-card__img,
.article-card__img--placeholder {
  height: 320px;
  width: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.article-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

/* Filters row */
.articles-filters {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 10px 0 60px;
  flex-wrap: wrap;
}

.articles-filters .filter {
  text-decoration: none;
  color: var(--muted);
  font-size: 15px;
  cursor: pointer;
}

.articles-filters .filter.active {
  color: #7a3df0; /* matches the template “active” vibe */
}

/* 2-column grid like the template */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: start;
}

/* Postcard card */
.article-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e6e6e6;
  background: #fff;
}

.article-card__img {
  width: 100%;
  height: 320px;            /* postcard image size */
  object-fit: cover;
}

.article-card__body {
  padding: 22px 24px 26px;
}

.article-card__meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.article-card__title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1.18;
  margin: 0 0 14px;
}

.article-card__excerpt {
  font-size: 16px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

/* Placeholder style */
.article-card--placeholder {
  opacity: 0.55;
  pointer-events: none;
}

.article-card__img--placeholder {
  height: 320px;
  background: #f1f1f1;
}



/* Responsive */
@media (max-width: 900px) {
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-card__img,
  .article-card__img--placeholder {
    height: 260px;
  }

  .article-card__title {
    font-size: 26px;
  }
}
/* =========================
   ABOUT PAGE (ISOLATED)
   ========================= */

.about-page {
  max-width: 1200px;
  margin: 80px auto 120px;
  padding: 0 24px;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-main h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 40px;
}

.about-main p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.about-main ul {
  margin: 24px 0 32px 20px;
}

.about-main li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.about-sidebar {
  padding-top: 0px;
}

.sidebar-block {
  margin-bottom: 48px;
}

.about-sidebar h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.about-sidebar ul {
  list-style: none;
  padding: 0;
}

.about-sidebar li {
  margin-bottom: 10px;
  font-size: 15px;
}

.about-sidebar a {
  color: var(--accent);
  text-decoration: none;
}

.about-sidebar a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-sidebar {
    padding-top: 0;
  }
}
/* ARTICLE LAYOUT */
.article-layout {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
}

/* TOC */
.toc {
  position: sticky;
  top: 120px;
  font-size: 14px;
  color: #777;
}

.toc h4 {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.toc ul {
  list-style: none;
  padding: 0;
}

.toc li {
  margin-bottom: 12px;
}

.toc a {
  text-decoration: none;
  color: #777;
}

.toc a:hover {
  color: #111;
}

/* ARTICLE */
.article {
  max-width: 720px;
}

/* ===== ARTICLE TYPOGRAPHY ===== */
/* Headings spacing inside articles */
.article h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin: 2.2em 0 1.1em; /* was 3.2em */
}

.article h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin: 1.9em 0 0.9em; /* was 2.6em */
}


.article-title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.article-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 20px;
}

.article-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 48px;
}
.article p {
  margin-bottom: 1.6em;
}

.article p:last-child {
  margin-bottom: 0;
}

.article li {
  font-size: 17px;
  max-width: 720px;
}
/* ===== TABLE OF CONTENTS ===== */

.toc {
  font-size: 14px;
  color: #666;
}

.toc h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.toc a {
  text-decoration: none;
  color: #666;
}

.toc a:hover {
  color: #111;
}
