:root {
  --paper: #f6f0e6;
  --paper-2: #fbf8f1;
  --paper-3: #fffdf8;
  --ink: #3d332d;
  --muted: #6a5c54;
  --sage: #97a58f;
  --sage-dark: #73816b;
  --blue: #7b94ab;
  --rose: #c38a7c;
  --gold: #d2ba78;
  --taupe: #ccbeab;
  --border: #ccbda8;
  --shadow: 0 12px 35px rgba(90, 71, 54, 0.12);
  --paper-shadow: 0 6px 14px rgba(73, 57, 42, 0.08);
  --body-font: Verdana, Geneva, Tahoma, Arial, sans-serif;
  --heading-font: Georgia, "Times New Roman", serif;
  --paper-texture: url("../images/stock/texture-1.jpg");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(246, 240, 230, 0.88), rgba(246, 240, 230, 0.88)),
    var(--paper-texture) center top / 460px auto repeat,
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 24%),
    linear-gradient(180deg, #efe7da 0%, var(--paper) 100%);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.72;
}

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

a {
  color: #5f7693;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-bg {
  padding: 28px 12px 44px;
}

.shell {
  width: min(960px, 100%);
  margin: 0 auto;
  background:
    linear-gradient(rgba(251, 248, 241, 0.94), rgba(251, 248, 241, 0.96)),
    var(--paper-texture) center top / 420px auto repeat,
    var(--paper-2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

.shell::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(123, 148, 171, 0.3);
  pointer-events: none;
}

.site-header {
  padding: 18px 18px 0;
}

.site-banner {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 235, 0.94)),
    repeating-linear-gradient(
      90deg,
      rgba(210, 186, 120, 0.12),
      rgba(210, 186, 120, 0.12) 16px,
      rgba(151, 165, 143, 0.07) 16px,
      rgba(151, 165, 143, 0.07) 32px
    );
  border: 1px solid var(--border);
  padding: 20px 18px 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  position: relative;
}

.site-banner::after {
  content: "paw prints, porch dogs, and too many notes";
  position: absolute;
  right: 16px;
  top: 14px;
  font-size: 11px;
  color: rgba(61, 51, 45, 0.55);
  letter-spacing: 0.03em;
}

.site-banner-note {
  margin: 0 0 7px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.site-logo-link {
  display: inline-block;
  max-width: min(100%, 700px);
  text-decoration: none;
}

.site-logo {
  display: block;
  width: min(100%, 680px);
  height: auto;
  margin: 0;
}

.site-title {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

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

.site-title a {
  color: var(--ink);
  text-decoration: none;
}

.site-tagline {
  margin: 10px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fffdf8, #f2e8da);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--paper-shadow);
}

.nav-link.is-active,
.nav-link:hover {
  background: linear-gradient(180deg, #fffaf0, #ead8c4);
  text-decoration: none;
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 20px;
  padding: 18px;
}

.main-column {
  min-width: 0;
}

.sidebar {
  min-width: 0;
}

.welcome-card,
.page-card,
.post-page,
.featured-story,
.post-grid-section,
.category-panels,
.mini-columns,
.related-section {
  background: var(--paper-3);
  border: 1px solid var(--border);
  box-shadow: var(--paper-shadow);
  margin-bottom: 18px;
  padding: 18px;
  position: relative;
}

.welcome-card::before,
.page-card::before,
.post-page::before,
.featured-story::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(151, 165, 143, 0.24);
  pointer-events: none;
}

.section-kicker,
.eyebrow {
  margin: 0 0 10px;
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.welcome-title,
.section-title,
.page-title,
.post-title {
  margin: 0 0 12px;
  font-family: var(--heading-font);
  color: var(--ink);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.welcome-title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.section-title,
.page-title,
.post-title {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

p {
  margin: 0 0 14px;
}

.soft-home-promo,
.post-author-note,
.tiny-disclosure,
.archive-meta,
.post-date,
.post-comments {
  color: var(--muted);
}

.post-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
}

.category-chip,
.filter-chip,
.tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.filter-chip {
  background: #fff8ef;
  cursor: pointer;
}

.filter-chip.is-active {
  background: #ebdeca;
}

.tag-pill {
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  font-weight: 600;
  background: #fbf2e4;
}

.chip-rose,
.chip-personal-story {
  background: rgba(195, 138, 124, 0.18);
}

.chip-sage,
.chip-dog-brain-health {
  background: rgba(151, 165, 143, 0.2);
}

.chip-blue,
.chip-dog-circulation {
  background: rgba(123, 148, 171, 0.18);
}

.chip-gold,
.chip-rescue-dog-life {
  background: rgba(210, 186, 120, 0.24);
}

.chip-paper,
.chip-dog-routines {
  background: rgba(250, 238, 217, 0.9);
}

.chip-ink,
.chip-dog-symptom-watch {
  background: rgba(138, 127, 118, 0.16);
}

.post-grid,
.resource-grid,
.category-panel-grid {
  display: grid;
  gap: 14px;
}

.post-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.category-panel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.post-card,
.resource-card,
.category-panel,
.mini-column,
.widget,
.comment-snapshot,
.archive-item {
  background: linear-gradient(180deg, #fffdf7, #f8f0e2);
  border: 1px solid var(--border);
  box-shadow: var(--paper-shadow);
}

.post-card {
  overflow: hidden;
}

.post-card-compact .post-card-image {
  aspect-ratio: 4 / 3;
}

.post-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.post-card-body {
  padding: 14px;
}

.post-card-title {
  margin: 7px 0 8px;
  font-family: var(--heading-font);
  font-size: 1.3rem;
  line-height: 1.2;
}

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

.post-card-excerpt {
  margin-bottom: 10px;
  font-size: 14px;
}

.post-card-tags,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-panel {
  display: block;
  padding: 15px;
  color: var(--ink);
  text-decoration: none;
}

.category-panel:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.category-panel-label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage-dark);
  font-weight: 700;
}

.category-panel-title {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.15rem;
}

.mini-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-column {
  padding: 16px;
}

.mini-column h3,
.content-block h3,
.resource-card h3,
.widget-title {
  margin: 0 0 10px;
  font-family: var(--heading-font);
  font-size: 1.2rem;
}

.widget {
  margin-bottom: 14px;
  padding: 14px;
}

.widget-about {
  background: linear-gradient(180deg, #fffdf8, #f6efe6);
}

.widget-promo {
  background: linear-gradient(180deg, #f8f3e8, #f0e0cd);
}

.widget-note-card {
  background: linear-gradient(180deg, #fff9ef, #f3e6cf);
}

.widget-list {
  margin: 0;
  padding-left: 18px;
}

.widget-list li {
  margin-bottom: 8px;
}

.widget-note {
  margin-bottom: 10px;
}

.widget-link {
  font-weight: 700;
}

.widget-about-top {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
}

.widget-profile-photo {
  width: 78px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--border);
  padding: 5px;
  box-shadow: var(--paper-shadow);
  transform: rotate(-2deg);
}

.widget-mini-bio {
  margin-bottom: 0;
  font-size: 13px;
}

.hero-figure,
.inline-figure {
  margin: 18px 0;
  background: #fff;
  border: 1px solid var(--border);
  padding: 12px;
  box-shadow: var(--paper-shadow);
}

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

.hero-figure figcaption,
.inline-figure figcaption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

.page-artifact {
  margin: 18px 0 20px;
}

.page-artifact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 16px;
  align-items: center;
  background: linear-gradient(180deg, #fffdf8, #f6eee1);
  border: 1px solid var(--border);
  padding: 14px;
  box-shadow: var(--paper-shadow);
}

.page-artifact-photo {
  position: relative;
}

.page-artifact-photo::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -7px;
  width: 70px;
  height: 22px;
  background: rgba(216, 191, 122, 0.35);
  transform: rotate(-5deg);
}

.page-artifact-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px;
  box-shadow: var(--paper-shadow);
}

.page-artifact-note {
  background: rgba(255, 249, 237, 0.8);
  border: 1px dashed rgba(122, 109, 96, 0.35);
  padding: 12px 13px;
  font-size: 14px;
}

.artifact-kicker {
  margin: 0 0 7px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage-dark);
  font-weight: 700;
}

.author-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid var(--border);
  background:
    linear-gradient(rgba(255, 250, 241, 0.95), rgba(248, 239, 226, 0.96)),
    var(--paper-texture) center / 360px auto repeat;
  box-shadow: var(--paper-shadow);
}

.author-card-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px;
  box-shadow: var(--paper-shadow);
  transform: rotate(-2deg);
}

.author-card-copy h3 {
  margin: 0 0 8px;
  font-family: var(--heading-font);
  font-size: 1.25rem;
}

.author-card-copy p {
  margin-bottom: 0;
}

.post-body h2 {
  margin: 28px 0 12px;
  font-family: var(--heading-font);
  font-size: 1.55rem;
}

.post-body a,
.inline-link,
.resource-link {
  font-weight: 700;
}

.article-list {
  margin: 0 0 16px;
  padding-left: 20px;
}

.article-list li {
  margin-bottom: 8px;
}

.note-box,
.pull-quote {
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: #fbf1df;
  box-shadow: var(--paper-shadow);
}

.pull-quote {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  line-height: 1.55;
}

.lead-note {
  margin: 0 0 18px;
  padding: 13px 16px;
  border: 1px dashed rgba(122, 109, 96, 0.35);
  background: rgba(255, 248, 235, 0.88);
  color: var(--muted);
  font-style: italic;
}

.comment-snapshot {
  padding: 16px;
  margin-top: 18px;
}

.mini-comment + .mini-comment {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(122, 109, 96, 0.3);
}

.mini-comment-author {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-dark);
}

.blog-tools {
  margin: 18px 0;
}

.blog-search {
  width: 100%;
  min-height: 42px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

.archive-list {
  display: grid;
  gap: 12px;
}

.archive-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  align-items: start;
}

.archive-thumb-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.archive-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--border);
  padding: 5px;
  box-shadow: var(--paper-shadow);
}

.archive-thumb-fallback {
  background: linear-gradient(180deg, #f5ead7, #eee0c9);
}

.archive-date-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.archive-date {
  font-size: 12px;
  color: var(--sage-dark);
  font-weight: 700;
}

.archive-copy h3 {
  margin: 0 0 8px;
  font-family: var(--heading-font);
  font-size: 1.3rem;
}

.archive-copy h3 a {
  color: var(--ink);
}

.archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

.resource-card,
.mini-column {
  padding: 16px;
}

.resource-card-promo {
  background: linear-gradient(180deg, #fff7ea, #efdcc4);
}

.tiny-disclosure {
  font-size: 12px;
}

.contact-card {
  margin: 22px 0;
  padding: 16px;
  border: 1px solid var(--border);
  background:
    linear-gradient(rgba(255, 251, 244, 0.96), rgba(246, 236, 220, 0.98)),
    var(--paper-texture) center / 360px auto repeat;
  box-shadow: var(--paper-shadow);
}

.contact-card-title {
  margin: 0 0 12px;
  font-family: var(--heading-font);
  font-size: 1.35rem;
}

.contact-faux-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.fake-field-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-dark);
}

.fake-field-wide {
  grid-column: 1 / -1;
}

.fake-input {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
}

.fake-input-tall {
  min-height: 116px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fffdf8, #ecdcc7);
  box-shadow: var(--paper-shadow);
}

.credits-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.credit-card {
  padding: 15px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fffdf8, #f8f0e2);
  box-shadow: var(--paper-shadow);
}

.credit-card h3 {
  margin: 0 0 10px;
  font-family: var(--heading-font);
  font-size: 1.2rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.footer-links a {
  color: var(--muted);
}

.footer-sep {
  margin: 0 8px;
}

@media (max-width: 900px) {
  .content-shell {
    grid-template-columns: 1fr;
  }

  .post-grid,
  .resource-grid,
  .category-panel-grid,
  .mini-columns,
  .contact-faux-form,
  .page-artifact-inner,
  .author-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-bg {
    padding: 10px;
  }

  .site-header,
  .content-shell,
  .site-footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-banner {
    padding: 16px 14px 14px;
  }

  .site-logo {
    width: 100%;
  }

  .site-banner::after {
    display: none;
  }

  .archive-item {
    grid-template-columns: 1fr;
  }

  .nav-link {
    min-height: 36px;
    padding: 8px 11px;
  }
}

@media print {
  .site-nav,
  .sidebar,
  .site-footer {
    display: none !important;
  }

  .content-shell {
    display: block;
    padding: 0;
  }

  .shell,
  .post-page,
  .page-card {
    border: none;
    box-shadow: none;
  }
}

/* ───────────────────────────────────────────────────────────────────────
   Sidebar additions: categories, archive, tag cloud (2008 chrome)
   ─────────────────────────────────────────────────────────────────────── */

.widget-categories .widget-list-counts li,
.widget-archive .widget-list-counts li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px dotted rgba(120, 100, 60, 0.18);
}

.widget-categories .widget-list-counts li:last-child,
.widget-archive .widget-list-counts li:last-child {
  border-bottom: none;
}

.widget-count {
  font-size: 12px;
  color: #8a7a55;
  font-variant-numeric: tabular-nums;
  font-style: italic;
}

.widget-tagcloud .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: baseline;
  padding-top: 6px;
}

.tag-cloud-link {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(231, 220, 180, 0.4);
  border: 1px solid rgba(151, 165, 143, 0.25);
  color: #5a4a2a;
  text-decoration: none;
  line-height: 1.4;
  transition: background 0.15s;
}

.tag-cloud-link:hover {
  background: rgba(231, 220, 180, 0.85);
  text-decoration: none;
}

.tag-cloud-w1 { font-size: 11px; opacity: 0.75; }
.tag-cloud-w2 { font-size: 12px; opacity: 0.85; }
.tag-cloud-w3 { font-size: 13px; opacity: 0.95; }
.tag-cloud-w4 { font-size: 15px; font-weight: 600; }
.tag-cloud-w5 { font-size: 17px; font-weight: 700; color: #6e5a30; }

/* ───────────────────────────────────────────────────────────────────────
   Pagination: 2008-style numbered links
   ─────────────────────────────────────────────────────────────────────── */

.pagination {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px dashed rgba(120, 100, 60, 0.25);
  text-align: center;
}

.pagination-summary {
  font-size: 12px;
  font-style: italic;
  color: #8a7a55;
  margin: 0 0 12px 0;
}

.pagination-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.pagination-link {
  display: inline-block;
  min-width: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(151, 165, 143, 0.4);
  background: #fdfaf1;
  color: #5a4a2a;
  text-decoration: none;
  border-radius: 3px;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  transition: background 0.15s, border-color 0.15s;
}

.pagination-link:hover {
  background: #f3eed5;
  border-color: rgba(151, 165, 143, 0.8);
  text-decoration: none;
}

.pagination-current {
  background: #5a4a2a !important;
  color: #fdfaf1 !important;
  border-color: #5a4a2a !important;
  cursor: default;
  font-weight: 600;
}

.pagination-prev,
.pagination-next {
  font-style: italic;
  padding-left: 14px;
  padding-right: 14px;
}

.pagination-gap {
  display: inline-block;
  padding: 6px 4px;
  color: #8a7a55;
}

@media (max-width: 600px) {
  .pagination-link {
    min-width: 28px;
    padding: 5px 8px;
    font-size: 13px;
  }
  .pagination-prev,
  .pagination-next {
    padding: 5px 10px;
  }
}

/* ───────────────────────────────────────────────────────────────────────
   Newsletter signup widget
   ─────────────────────────────────────────────────────────────────────── */

.widget-newsletter {
  background: linear-gradient(180deg, rgba(255, 248, 220, 0.7), rgba(231, 220, 180, 0.4));
  border-radius: 6px;
  padding: 18px 16px;
  border: 1px dashed rgba(151, 165, 143, 0.5);
}

.widget-newsletter .widget-title {
  margin-top: 0;
  color: #5a4a2a;
}

.widget-newsletter-blurb {
  font-size: 13px;
  line-height: 1.5;
  color: #6e5a30;
  margin: 6px 0 12px 0;
  font-style: italic;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.newsletter-input {
  width: 100%;
  padding: 9px 11px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid rgba(120, 100, 60, 0.35);
  border-radius: 3px;
  background: #fdfaf1;
  color: #3a2f15;
  box-sizing: border-box;
}

.newsletter-input:focus {
  outline: none;
  border-color: #6e5a30;
  box-shadow: 0 0 0 2px rgba(151, 165, 143, 0.25);
}

.newsletter-submit {
  width: 100%;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  background: #5a4a2a;
  color: #fdfaf1;
  border: 1px solid #5a4a2a;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s, transform 0.05s;
}

.newsletter-submit:hover { background: #6e5a30; }
.newsletter-submit:active { transform: translateY(1px); }
.newsletter-submit:disabled { opacity: 0.6; cursor: wait; }

.newsletter-status {
  margin: 4px 0 0 0;
  font-size: 12px;
  min-height: 1.2em;
  font-style: italic;
}
.newsletter-status.is-success { color: #2d6a4f; }
.newsletter-status.is-error { color: #9d2820; }

.post-newsletter-card {
  margin: 36px 0 24px 0;
  padding: 24px 28px;
  background: linear-gradient(180deg, rgba(255, 248, 220, 0.7), rgba(231, 220, 180, 0.4));
  border-radius: 6px;
  border: 1px dashed rgba(151, 165, 143, 0.5);
}

.post-newsletter-card h3 { margin: 0 0 8px 0; font-size: 20px; color: #5a4a2a; }
.post-newsletter-card p { margin: 0 0 14px 0; color: #6e5a30; font-size: 14px; line-height: 1.5; }

.post-newsletter-card .newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
  max-width: 480px;
}
.post-newsletter-card .newsletter-submit {
  width: auto;
  padding-left: 22px;
  padding-right: 22px;
}

@media (max-width: 540px) {
  .post-newsletter-card .newsletter-form { grid-template-columns: 1fr; }
}
