
:root {
  --pillar-data-ecosystem: #0a2467; /* deep blue */
  --pillar-ai-contexts: #3a6ea5;    /* muted steel */
  --pillar-skills: #2f7d6d;         /* subdued teal */
  --pillar-community: #7a5c61;      /* muted rose-brown */
  --pillar-tools: #6b7280;          /* neutral slate */
}

:root {
  --color-primary: #0a2467;   /* deep blue, serious, institutional */
  --color-muted: #666;
  --color-border: #e6e6e6;
  --color-bg-soft: #fafafa;
  --color-bg: #ffffff;
  --color-bg-soft: #f5f5f5;
}

hr {
  border: 0;
  height: 0;
  margin: 0;
}

:root {
  --color-text: #111;
  --color-muted: #666;
}


:root {
  /* Hero sizing */
  --hero-height-desktop: 75vh;
  --hero-height-mobile: 55vh;

  /* Hero spacing */
  --hero-padding-x: 1.5rem;
  --hero-padding-y: 2.5rem;

  /* Hero text width */
  --hero-content-width: 720px;

  /* Transition */
  --hero-fade-height: 100px;

  --hero-bg-primary: url("/assets/images/hero-glacier.jpg");
  --hero-bg-secondary: url("/assets/images/hero-flow.png");
}


.home-hero {
  position: relative;
  min-height: 80vh;
  padding: 4rem 2rem;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  background-image: var(--hero-bg-primary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

.hero-title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.08;
  font-weight: 500;

  margin: 0 0 1.25rem 0;
  letter-spacing: -0.01em;
}

.hero-title a {
  color: inherit;
  text-decoration: none;
}

.hero-title a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero-meta {
  display: inline-block;
  position: relative;

  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.85rem;
  line-height: 1;

  padding: 0.45rem 0.75rem 0.45rem 0.9rem;

  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.8);

  border-radius: 3px;
}

.hero-meta::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);

  width: 0;
  height: 0;

  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid rgba(0, 0, 0, 0.06);
}

.hero-meta a {
  color: inherit;
  text-decoration: none;
}

.hero-meta a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  z-index: 0;
}

.post-hero {
  width: 100%;
  margin-bottom: 2.5rem;
}

.post-hero img {
  width: 100%;
  height: auto;
  display: block;
}

html.dark .home-hero {
  background-image: var(--hero-bg-secondary);
  background-size: cover;
  background-position: center;
}

html.dark .home-hero::before {
  background: rgba(0, 0, 0, 0.35);
}

html.dark .hero-meta a {
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

html.dark .hero-meta {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}

html.dark .hero-meta::before {
  border-right-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 55vh;
    padding: 3rem 1.5rem;
    justify-content: center;
    text-align: left;
  }
  .hero-title {
    font-size: clamp(2rem, 6vw, 2.6rem);
    line-height: 1.15;
  }
  .hero-meta {
    font-size: 0.9rem;
  }
  .hero-content {
    margin-left: 0;
  }
}

.hero-content {
  max-width: var(--hero-content-width);
  position: relative;
  z-index: 1;
  margin-left: clamp(2rem, 8vw, 8rem);
}

[data-theme="dark"] .home-hero {
  background-color: #0e1116;
}

[data-theme="dark"] .hero-pattern {
  opacity: 0.04;
}

.home-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--hero-fade-height);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    var(--page-bg)
  );
}

.featured-section {
  margin-top: -1.5rem;
  padding-top: 2.5rem;
}


html.dark {
  --color-text: #e6e6e6;
  --color-muted: #9a9a9a;
}


/* Light mode (default) */
html {
  background-color: #ffffff;
}

body {
  background-color: #ffffff;
  color: var(--color-text);
}

.site-header,
.site-footer {
  background-color: #ffffff;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
}

.content-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.site-header {
  border-bottom: 0.5px solid var(--color-border);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  transition:
    background-color 0.2s ease,
    backdrop-filter 0.2s ease,
    border-bottom 0.2s ease;

}

.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;                 /* CRITICAL */
  align-items: center;           /* CRITICAL */
  justify-content: space-between;/* CRITICAL */
}

.site-brand a {
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--color-primary);
  white-space: nowrap;
}

.site-brand img {
  height: 20px;
}

html.dark .site-logo {
  filter: brightness(0) invert(1);
}
.site-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #111;
}


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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.page h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.page h1::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: .5rem;
  background-color: var(--color-primary);
}

.page h2 {
  margin-top: 0rem;
}

.page p {
  max-width: 680px;
}

.page > p:first-of-type {
  font-size: 1.1rem;
  color: var(--color-text);
  opacity: 0.95;
}

/* headings */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.2rem;
  margin-top: 0;
}

h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
}

/* paragraphs */
p {
  margin: 1rem 0 0;
}

ul, ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* links */
a {
  color: #0a2467;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration-thickness: 2px;
}

/* blockquotes */
blockquote {
  margin: 2rem 0;
  padding-left: 1rem;
  border-left: 3px solid #ddd;
  color: #444;
}

blockquote p {
  margin: 0;
}

.post-meta,
.post-card-meta,
.site-footer {
  font-size: 0.85rem;
  color: #666;
}

/* =========================
   Compact Editorial List
   ========================= */

.post-card-list {
  display: flex;
  flex-direction: column;
}

.post-card {
  display: flex;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-border);
}

.post-card:last-child {
  border-bottom: none;
}

/* Thumbnail */
.post-card-thumb {
  flex: 0 0 96px;
  height: 64px;
  overflow: hidden;
  border-radius: 4px;
}

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

/* Body */
.post-card-body {
  display: flex;
  flex-direction: column;
}

/* Pillar */
.post-card-pillar {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

/* Title */
.post-card-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.post-card-title a {
  text-decoration: none;
  color: var(--text-primary);
}

.post-card-title a:hover {
  color: var(--color-primary);
}

/* Meta */
.post-card-meta {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.4rem;
}

/* Mobile */
@media (max-width: 768px) {
  .post-card {
    gap: 0.75rem;
  }

  .post-card-thumb {
    flex: 0 0 80px;
    height: 56px;
  }
}

/* Author spacing */
.post-card-author {
  white-space: nowrap;
}

/* Mobile refinements */
@media (max-width: 768px) {
  .post-card-body {
    padding: 1rem 1.1rem 1.2rem;
  }

  .post-card-title {
    font-size: 1.05rem;
  }
}

/* Pillar colors */
.pillar-data-ecosystem::before {
  background-color: var(--pillar-data-ecosystem);
}

.pillar-ai-contexts::before {
  background-color: var(--pillar-ai-contexts);
}

.pillar-skills-careers::before {
  background-color: var(--pillar-skills);
}

.pillar-community::before {
  background-color: var(--pillar-community);
}

.pillar-tools::before {
  background-color: var(--pillar-tools);
}

/* Pillar label text */
.post-card-pillar a {
  font-weight: 600;
}

.pillar-data-ecosystem .post-card-pillar a {
  color: var(--pillar-data-ecosystem);
}

.pillar-ai-contexts .post-card-pillar a {
  color: var(--pillar-ai-contexts);
}

.pillar-skills-careers .post-card-pillar a {
  color: var(--pillar-skills);
}

.pillar-community .post-card-pillar a {
  color: var(--pillar-community);
}

.pillar-tools .post-card-pillar a {
  color: var(--pillar-tools);
}

/* post summary */
.post-summary,
.post-card-summary {
  color: var(--color-text);
  font-size: 0.95rem;
}

html.dark .post-summary,
html.dark .post-card-summary {
  filter: brightness(0) invert(1);
}

/* core question block */
.core-question {
  margin: 2rem 0;
  padding: 1rem;
  background-color: #f7f7f7;
  border-left: 4px solid #ccc;
  font-size: 0.95rem;
}

html.dark .core-question {
  background-color: #1a1c20;
  border-left-color: #333;
}


/* Featured article emphasis */


/* Author Card */
.author-card {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e6e6e6;
}

.author-name a {
  color: #111;
  text-decoration: none;
}

.author-name a:hover {
  color: var(--color-primary);
}

.author-role {
  margin: 0.25rem 0;
  font-size: 0.85rem;
  color: #666;
}

.author-bio {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #333;
}

.author-link a {
  font-size: 0.85rem;
}

.author-header {
  margin-bottom: 3rem;
}

.author-page .author-name {
  margin: 0;
  font-size: 1.8rem;
}

.author-page .author-role {
  margin: 0.5rem 0;
  color: #666;
  font-size: 0.9rem;
}

.author-page .author-bio {
  margin-top: 1.5rem;
  max-width: 600px;
}

.author-website a {
  font-size: 0.85rem;
}

/* Series Block */
.series-block {
  background-color: var(--color-bg-soft);
  border-left-color: var(--color-primary);
}

.series-list li a {
  text-decoration: none;
}

.series-list li a:hover {
  text-decoration: underline;
}

/* search */
#search-input {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

#results-container li {
  margin-bottom: 1.25rem;
}


.newsletter-cta {
  background-color: var(--color-bg-soft);
  padding: 1.5rem;
  border-left: 4px solid var(--color-border);
}

.newsletter-cta h4 {
  margin-top: 0;
  font-size: 1.1rem;
}

/* pillar pages */
.pillar-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.pillar-description {
  font-size: 1rem;
  color: #444;
  max-width: 640px;
}


#theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 0;
  flex-shrink: 0;
  z-index: 10; 
}

/* Dark mode */
html.dark {
  background-color: #0f1115;
}

html.dark body {
  background-color: #0f1115;
  color: var(--color-text);
}

html.dark a {
  color: #93c5fd;
}

html.dark a:hover {
  color: #bfdbfe;
}

html.dark .site-header,
html.dark .site-footer {
  background-color: #0f1115;
  border-color: #2a2f3a;
}

html.dark .post-card,
html.dark .series-block,
html.dark .newsletter-cta {
  background-color: #151821;
  border-color: #2a2f3a;
}

html.dark .post-card-summary,
html.dark .pillar-description,
html.dark .author-bio {
  color: #d1d5db;
}

html.dark .post-meta,
html.dark .post-card-meta {
  color: #9ca3af;
}

html.dark .site-header.is-scrolled {
  background-color: rgba(15, 17, 21, 0.75);
}

html.dark .post-card-pillar a {
  opacity: 0.9;
}
/*
html, body {
  height: 100%;
  overflow: hidden;
}
*/

body {
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
  padding-top: 0;
  margin-top: 0;
}


/* for images inside posts */
.post-content img {
  display: block;
  max-width: 100%;
  margin: 2.5rem auto;
}

.post-content em {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.home-visual {
  display: block;
  max-width: 100%;
  margin: 3.5rem 0 4.5rem;
  opacity: 0.95;
}

.page section {
  margin-top: 4rem;
}

.page hr {
  margin: 3rem 0;
  border: none;
  border-top: 1px solid var(--color-border);
}

/* Responsive */
@media (max-width: 640px) {
  .site-logo {
    height: 22px;
  }
}

@media (max-width: 640px) {
  .header-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .header-actions {
    width: 100%;
    justify-content: center;
  }
  .site-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  #theme-toggle {
    border: none;
    font-size: 0.85rem;
    opacity: 0.7;
  }
 .footer-inner {
    flex-direction: column;
  }

  .footer-right {
    gap: 2rem;
  }
}


@media (max-width: 640px) {
  #theme-toggle {
    position: static;
    margin-left: 0;
  }

  .header-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-nav ul {
    align-items: center;
  }
}

.toggle-text {
  display: none;
}

@media (max-width: 640px) {
  .toggle-icon {
    display: none;
  }
  .toggle-text {
    display: inline;
  }
   .site-header.is-scrolled {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}


/* subscribe footer */
.subscribe-band {
  padding: 5.0rem 1.5rem;
  background-color: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: none;
  display: flex;
  justify-content: center;
}

html.dark .subscribe-band {
  background-color: #1a1c20;
}

html.dark .subscribe-band input,
html.dark .subscribe-band button {
  color: #e6e6e6;
  border-color: #333;
  background: transparent;
}

#newsletter-form {
  display: flex;
  flex-direction: column;   
  align-items: center;
  gap: 0.9rem;
}

#newsletter-form label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.subscribe-label {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-align: center;
}

html, body {
  height: auto;
  overflow: visible;
  margin: 0;
  padding: 0;
}


.subscribe-form {
  display: flex;
  gap: 0.5rem;
}

#newsletter-form input[type="email"] {
  padding: 0.9rem 0.9rem;
    border: 1px solid var(--color-border);
    font-size: 0.85rem;
    min-width: 220px;
    width: 300px;
}

#newsletter-form button {
  padding: 0.85rem 0.95rem;
  font-size: 0.8rem;
  border: 0.9px solid var(--color-border);
  margin-left: 0.5rem;
  background: #e6e6e6;
  cursor: pointer;
}

.newsletter-status {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: center;
  min-height: 1em;
}

.newsletter-status.success {
  color: #2f7a4f; /* muted green */
}

.newsletter-status.error {
  color: #8a2f2f; /* muted red */
}

.subscribe-controls button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

html.dark #newsletter-form button {
  background: #333;
  color: #e6e6e6;
}

/* site footer */
.site-footer {
  padding: 3rem 1rem 2.5rem;
  margin: 0;
  font-size: 0.8rem;
}

.site-footer a {
  text-decoration: none;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-left {
  max-width: 620px;
  margin-top: 0;
}


.dblog {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.footer-logo {
  height: 24px;
  margin-left: -0.05rem;
}

html.dark .footer-logo {
  filter: brightness(0) invert(1);
}

.footer-mission {
  color: var(--color-muted);
  margin-bottom: 1rem;
  margin-top: 0;
}

.footer-meta {
  color: var(--color-muted);
  margin: 0.25rem 0;
}

.footer-right {
  display: flex;
  gap: 3rem;
}

.footer-section {
  min-width: 120px;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links img {
    width: 20px;
    height: 20px;
}

/* volunteer form */
#volunteer-form {
  max-width: 640px;
  margin: 3rem 0 3rem;
}

#volunteer-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

#volunteer-form input[type="text"],
#volunteer-form input[type="email"],
#volunteer-form textarea,
#volunteer-form select {
  width: 100%;
  font-size: 0.95rem;
  padding: 0.6rem 0;
  border: none;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
}

#volunteer-form textarea {
  padding-top: 0.5rem;
  resize: vertical;
}

#volunteer-form input:focus,
#volunteer-form textarea:focus,
#volunteer-form select:focus {
  outline: none;
  border-bottom-color: #111;
}

#volunteer-form fieldset {
  border: none;
  margin: 2.5rem 0;
  padding: 0;
}

#volunteer-form legend {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

#volunteer-form fieldset label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}
#volunteer-form input[type="checkbox"] {
  margin-right: 0.5rem;
}

#volunteer-form button[type="submit"] {
  margin-top: 2rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  border: 1px solid var(--color-primary);
  background: transparent;
  cursor: pointer;
}

#volunteer-form button[type="submit"]:hover {
  background-color: var(--color-bg-soft);
}

.form-title {
  margin-top: 3rem;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.form-intro {
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  max-width: 640px;
}

/* Dark mode form text fix (mobile + desktop) */
html.dark input,
html.dark textarea,
html.dark select {
  color: var(--color-text);
  background-color: transparent;
}

html.dark input::placeholder,
html.dark textarea::placeholder {
  color: var(--color-muted);
}


/* home grid */
.home-grid {
  padding: 4rem 0 5rem;
}

.grid-row {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 2rem;

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

@media (max-width: 900px) {
  .grid-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.story-card {
  display: flex;
  flex-direction: column;
}

.story-image img {
  width: 100%;
  height: 200px;
  display: block;
  margin-bottom: 0.75rem;
}

.story-section {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.4rem;
}

.story-title {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: normal;
  margin: 0 0 0;
}

.story-title a {
  color: inherit;
  text-decoration: none;
}

.story-title a:hover {
  text-decoration: underline;
}

.story-author {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
}

html.dark .story-section,
html.dark .story-author {
  color: rgba(255,255,255,0.6);
}

.story-section-link {
  text-decoration: none;
  color: var(--color-muted);
}

.story-section-link:hover {
  text-decoration: none;
}

.story-author-link {
  text-decoration: none;
  color: var(--color-muted);
}


/* =========================
   Archive page layout
   ========================= */

/* Archive container */
.archive-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}

/* One article row */
.archive-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 0;
  align-items: flex-start;
  border-bottom: 1px solid var(--color-border); /* subtle separator */
}

/* Remove divider from last item */
.archive-item:last-child {
  border-bottom: none;
}

.archive-header h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.archive-header p {
  margin-top: 0;
  margin-bottom: 0;
}

.archive-year {
  margin-top: 0;   /* was probably ~4rem */
  margin-bottom: 0;
}

/* Image column (fixed size) */
.archive-image {
  flex: 0 0 160px;
}

.archive-image img {
  width: 100%;
  height: 120px;              /* consistent size */
  object-fit: cover;
  display: block;
  border-radius: 8px;         /* soft curve */
}

/* Content column */
.archive-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Pillar label */
.archive-pillar {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

/* Title */
.archive-title {
  font-size: 1.15rem;
  line-height: 1.25;
  margin: 0 0 0.4rem;
}

.archive-title a {
  text-decoration: none;
}

/* Summary */
.archive-summary {
  margin: 0 0 0.6rem;
  color: var(--text-muted);
}

/* Meta */
.archive-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.35rem;
}

.page-archive .archive-header h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* Year heading */
.archive-year-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 0;
}

/* =========================
   Mobile
   ========================= */
@media (max-width: 768px) {
  .archive-item {
    display: block;
    padding: 1.5rem 0;
  }

  .archive-header h2 {
    margin-top: 0;
  }

  .archive-image {
    width: 100%;
    margin-bottom: 0.75rem;
  }

  .archive-content {
    margin-top: 0.5rem;
  }

  .archive-image img {
    height: 180px;
    border-radius: 10px;
  }
}