:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f5f5f2;
  --ink: #181818;
  --muted: #707070;
  --line: #e8e8e1;
  --accent: #121212;
  --accent-soft: #ef4b2a;
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

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

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

h1,
h2,
h3,
h4,
.site-nav,
.site-logo,
.button-link,
.category-chip,
.entry-meta,
.author-role,
.eyebrow-label,
.search-placeholder button,
.newsletter-form button,
.newsletter-form input,
.search-placeholder input {
  font-family: "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1220px, calc(100vw - 2rem));
  margin: 0 auto;
}

.site-main {
  padding-bottom: 2.5rem;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.site-logo-image {
  display: block;
  height: 3rem;
  width: auto;
  max-width: min(100%, 16.5rem);
}

.footer-logo-image {
  height: 3.4rem;
  max-width: min(100%, 18rem);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.92rem;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--ink);
}

.search-link {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.home-lead {
  padding-top: 2.2rem;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 360px;
  gap: 1.5rem;
  align-items: start;
}

.featured-hero-card {
  display: grid;
  gap: 1.4rem;
}

.featured-hero-image {
  display: block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.featured-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.featured-hero-copy {
  width: 100%;
}

.featured-hero-copy h1 {
  font-size: clamp(1.95rem, 3.4vw, 3.2rem);
  margin: 0.8rem 0 0.95rem;
  max-width: none;
}

.featured-hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: none;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.sidebar-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem;
  background: var(--surface);
}


.panel-head h2 {
  font-size: 1.6rem;
  margin-top: 0.35rem;
}

.eyebrow-label {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.popular-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.popular-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.popular-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.popular-index {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-soft);
}

.popular-item h3 {
  font-size: 1.06rem;
  margin-bottom: 0.45rem;
}

.home-section {
  padding-top: 3rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.section-heading h2,
.page-heading h1 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  margin-top: 0.35rem;
}

.recent-section .section-heading h2 {
  font-size: clamp(1.75rem, 2.7vw, 2.55rem);
}

.recent-section .section-heading h2 {
  font-size: clamp(1.75rem, 2.7vw, 2.55rem);
}

.section-heading a {
  color: var(--muted);
}

.story-card-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.story-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.04);
}

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

.story-card-copy {
  padding: 1.1rem;
}

.story-card h3 {
  font-size: 1.22rem;
  margin: 0.75rem 0 0.8rem;
}

.story-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.stories-shell {
  padding-top: 2.8rem;
}

.stories-heading {
  margin-bottom: 1.45rem;
}

.stories-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 340px;
  gap: 2rem;
  align-items: start;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.stories-grid .story-card {
  height: 100%;
}

.stories-grid .story-card-copy {
  padding: 1.2rem;
}

.stories-grid .story-card h3 {
  font-size: 1.34rem;
  line-height: 1.2;
}

.stories-grid .story-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stories-sidebar {
  display: grid;
  gap: 1.2rem;
}

.stories-sidebar-panel {
  padding: 1.5rem;
}

.newsletter-sidebar-card p {
  color: var(--muted);
  margin: 1rem 0 1.1rem;
}

.sidebar-newsletter-form {
  flex-direction: column;
  align-items: stretch;
}

.sidebar-newsletter-form button {
  width: 100%;
}

.top-meta,
.bottom-meta {
  justify-content: space-between;
}

.bottom-meta {
  margin-top: 1rem;
}

.newsletter-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 1fr);
  gap: 1rem;
  align-items: center;
  background: #111111;
  color: #ffffff;
  border-radius: 22px;
  padding: 2rem;
}

.newsletter-copy {
  display: grid;
  align-content: center;
  gap: 0.55rem;
}

.newsletter-copy .eyebrow-label {
  color: rgba(255, 255, 255, 0.68);
}

.newsletter-copy h2 {
  max-width: none;
}

.newsletter-banner p {
  color: rgba(255, 255, 255, 0.78);
}

.newsletter-form,
.search-placeholder {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.newsletter-provider-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.newsletter-honeypot,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsletter-form input,
.search-placeholder input {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid #d8d8d1;
  padding: 0 1rem;
  font-size: 0.94rem;
}

.newsletter-form button,
.search-placeholder button,
.button-link {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 1.2rem;
  background: var(--accent-soft);
  color: #fff;
  font-size: 0.92rem;
  cursor: pointer;
}

.page-shell,
.article-shell {
  padding-top: 2.4rem;
}

.page-body,
.content-column,
.search-shell {
  max-width: 760px;
}

.page-intro {
  color: var(--muted);
  font-size: 1.02rem;
}

.sitemap-section + .sitemap-section {
  margin-top: 2.25rem;
}

.sitemap-section h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.sitemap-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.65rem;
}

.sitemap-list li {
  color: var(--muted);
}

.sitemap-list a {
  color: var(--ink);
}

.sitemap-list a:hover {
  color: var(--accent-soft);
}

.sitemap-post-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: baseline;
}

.sitemap-date {
  color: var(--muted);
  font-size: 0.92rem;
}

.sitemap-section + .sitemap-section {
  margin-top: 2.25rem;
}

.sitemap-section h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.sitemap-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.65rem;
}

.sitemap-list li {
  color: var(--muted);
}

.sitemap-list a {
  color: var(--ink);
}

.sitemap-list a:hover {
  color: var(--accent-soft);
}

.sitemap-post-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: baseline;
}

.sitemap-date {
  color: var(--muted);
  font-size: 0.92rem;
}
.author-grid {

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.author-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.3rem;
  background: var(--surface);
}

.author-badge,
.author-initials {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.author-card h3 {
  margin-bottom: 0.35rem;
}

.author-role {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
}

.article-main {
  width: min(100%, 820px);
}

.article-header,
.article-body,
.article-tags-block {
  width: 100%;
}

.article-header h1 {
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  margin: 0.8rem 0;
}

.article-body > h1:first-child {
  display: none;
}

.article-section-image {
  margin: 1.25rem 0 1.5rem;
}

.article-section-image img {
  width: 100%;
  border-radius: 18px;
}

.article-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
}

.article-dek {
  color: var(--muted);
  font-size: 1.05rem;
}

.article-author-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 1rem 0 1rem;
  font-family: "Segoe UI", Arial, sans-serif;
}

.article-author-row p,
.article-author-row small {
  margin: 0;
}

.article-author-name {
  font-weight: 600;
  color: var(--ink);
}

.article-author-row small {
  color: var(--muted);
}

.article-hero {
  margin: 0 0 1.6rem;
}

.article-hero img,
.prose img {
  width: 100%;
  border-radius: 20px;
}

.prose {
  font-size: 1.06rem;
}

.prose h2 {
  margin-top: 2.35rem;
  margin-bottom: 0.95rem;
}

.prose h3 {
  margin-top: 1.7rem;
  margin-bottom: 0.75rem;
}

.prose h2 + p,
.prose h3 + p {
  margin-top: 0.95rem;
}

.article-section-image + p {
  margin-top: 0;
}

.prose p,
.prose li {
  max-width: none;
}

.prose a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.prose hr {
  border: 0;
  height: 0;
  margin: 1.75rem 0;
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list li {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.8rem;
}

.article-tags-block {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.article-tags-block h2 {
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}

.article-tag-list {
  gap: 0.7rem;
}

.article-tag-list li {
  padding: 0.4rem 0.9rem;
  background: var(--surface-soft);
  color: var(--ink);
}

.simple-message {
  max-width: 620px;
}

.privacy-page h2 {
  font-size: 1.2rem;
  margin: 1.8rem 0 0.7rem;
}

.privacy-page p {
  color: var(--muted);
}

.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
}

.footer-links-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.footer-branding p {
  color: var(--muted);
  max-width: 38rem;
}

.footer-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 1.2rem;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.92rem;
}

.footer-bottom {
  margin-top: 0;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1100px) {
  .lead-grid,
  .article-shell,
  .newsletter-banner,
  .stories-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .story-card-row,
  .author-grid,
  .stories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links-block {
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: auto;
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 0.8rem 1rem;
  }

  .story-card-row,
  .author-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form,
  .search-placeholder {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-links-block {
    width: 100%;
    align-items: flex-start;
  }

  .featured-hero-copy h1,
  .article-header h1,
  .section-heading h2,
  .page-heading h1 {
    max-width: none;
  }

  .newsletter-banner,
  .sidebar-panel,
  .author-card,
  .story-card-copy {
    padding: 1rem;
  }
}
