/* ===================================================
   HappinessFacts — Masonry Blog Theme
   Editorial Warm-Magazine Aesthetic
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --ink:          #1A1410;
  --ink-soft:     #3D352C;
  --muted:        #8A7E73;
  --muted-light:  #B5AC9F;
  --cream:        #F9F5EE;
  --cream-dark:   #EEE9DF;
  --white:        #FFFFFF;
  --amber:        #C9983A;
  --amber-pale:   #FFF8E8;
  --amber-deep:   #A87B2A;
  --sage:         #4A7C59;
  --sage-light:   #EBF4EE;
  --rose:         #C4614A;
  --rose-light:   #FAEEE9;
  --sky:          #3A6C8A;
  --sky-light:    #E6F1F7;
  --border:       #E5DDD2;
  --border-dark:  #CEC4B6;
  --shadow-sm:    0 1px 4px rgba(26,20,16,0.07);
  --shadow:       0 3px 18px rgba(26,20,16,0.09);
  --shadow-hover: 0 10px 36px rgba(26,20,16,0.15);
  --radius:       14px;
  --radius-sm:    8px;
  --radius-xs:    5px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--sage); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ink); }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.22;
  color: var(--ink);
}
p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

/* =================================================
   SITE HEADER
   ================================================= */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-branding a {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}

/* WordPress wraps custom_logo in a figure — reset it */
.custom-logo-link,
.custom-logo-link figure,
.wp-custom-logo .site-branding a {
  display: flex;
  align-items: center;
}

.custom-logo {
  height: 36px !important;
  width: auto !important;
  max-width: 140px !important;
  max-height: 36px !important;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.site-logo-img {
  height: 36px;
  width: auto;
  max-width: 140px;
  max-height: 36px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.main-navigation ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.main-navigation a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  transition: background 0.15s, color 0.15s;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
  background: var(--cream);
  color: var(--ink);
}

/* Search toggle button */
.header-search { display: flex; align-items: center; }

.search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.search-toggle:hover {
  background: var(--cream-dark);
  color: var(--ink);
  border-color: var(--border-dark);
}

.search-toggle.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.search-toggle .icon-search { display: block; }
.search-toggle .icon-close  { display: none; }
.search-toggle.active .icon-search { display: none; }
.search-toggle.active .icon-close  { display: block; }

/* Sliding search bar */
.header-search-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.header-search-bar.open {
  max-height: 80px;
  opacity: 1;
  padding: 0.85rem 2rem;
}

.search-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0 1.1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-bar-inner:focus-within {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(201,152,58,0.12);
}

.search-bar-inner svg {
  color: var(--muted);
  flex-shrink: 0;
}

.search-bar-inner input[type="search"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  min-width: 0;
}

.search-bar-inner input[type="search"]::placeholder { color: var(--muted-light); }
.search-bar-inner input[type="search"]::-webkit-search-cancel-button { display: none; }

.search-submit {
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 7px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.search-submit:hover { background: var(--amber-deep); }

/* =================================================
   PAGE WRAPPER
   ================================================= */
.site-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}

.content-area { min-width: 0; }

/* =================================================
   POSTS HEADER
   ================================================= */
.posts-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--ink);
}

.posts-header h2 {
  font-size: 0.78rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}

/* =================================================
   MASONRY GRID
   ================================================= */
.posts-grid {
  columns: 4 220px;
  column-gap: 1.25rem;
}

/* =================================================
   POST CARD (Masonry Tile)
   ================================================= */
.post-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 1.25rem;
  display: inline-block;
  width: 100%;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}

.post-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--border-dark);
}

.post-thumbnail {
  overflow: hidden;
  background: var(--cream-dark);
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.post-card:hover .post-thumbnail img {
  transform: scale(1.04);
}

.post-body {
  padding: 1rem 1.2rem 1.2rem;
}

.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 0.6rem;
}

.post-cat {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.post-cat:hover { opacity: 0.8; color: inherit; }

.cat-product  { background: var(--amber-pale);  color: var(--amber-deep); }
.cat-book     { background: var(--sage-light);   color: var(--sage); }
.cat-wellness { background: #EDF4F0;              color: #3A6E52; }
.cat-lifestyle{ background: var(--rose-light);   color: var(--rose); }
.cat-gifting  { background: var(--sky-light);    color: var(--sky); }

.post-card h3,
.post-card h2 {
  font-size: 0.98rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.post-card h2 { font-size: 1.2rem; }

.post-card h3 a,
.post-card h2 a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.post-card h3 a:hover,
.post-card h2 a:hover { color: var(--amber-deep); }

.post-excerpt {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.post-meta span {
  font-size: 0.69rem;
  color: var(--muted-light);
}

.post-meta .read-time {
  font-weight: 500;
  color: var(--muted);
}

.affiliate-tag {
  background: var(--amber-pale);
  color: var(--amber-deep) !important;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.63rem !important;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.post-card.is-featured .post-thumbnail .thumb-placeholder {
  height: 180px;
  font-size: 3rem;
}

.post-card.is-featured h2 { font-size: 1.3rem; }

.post-card.is-featured .post-excerpt {
  -webkit-line-clamp: 4;
}

/* =================================================
   PAGINATION
   ================================================= */
.pagination {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  align-items: center;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink-soft);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.pagination a:hover {
  background: var(--cream-dark);
  border-color: var(--border-dark);
  color: var(--ink);
}

.pagination .current {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* =================================================
   SIDEBAR
   ================================================= */
.sidebar {
  position: sticky;
  top: 72px;
}

.widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  margin-bottom: 1.25rem;
}

.widget-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.widget-about { text-align: center; }

.about-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream-dark);
  margin: 0 auto 0.75rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 2px solid var(--border);
}

.about-avatar img { width: 100%; height: 100%; object-fit: cover; }

.widget-about h3 {
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.widget-about p {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.65;
}

.widget-newsletter p { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.7rem; }

#sidebar-email {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--ink);
  outline: none;
  margin-bottom: 0.55rem;
  transition: border-color 0.2s;
}

#sidebar-email:focus { border-color: var(--amber); }

.btn-newsletter {
  width: 100%;
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-newsletter:hover { background: var(--amber-deep); }

.nl-note {
  font-size: 0.67rem;
  color: var(--muted-light);
  text-align: center;
  margin-top: 0.5rem;
}

.book-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.book-item:last-child { border-bottom: none; padding-bottom: 0; }
.book-item:first-child { padding-top: 0; }

.book-mini {
  width: 42px;
  height: 58px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  overflow: hidden;
}

.book-mini img { width: 100%; height: 100%; object-fit: cover; }

.book-item-info { flex: 1; min-width: 0; }

.book-item-info h4 {
  font-size: 0.77rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 0.2rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.book-item-info h4 a { color: var(--ink); }
.book-item-info h4 a:hover { color: var(--amber-deep); }

.b-author { font-size: 0.67rem; color: var(--muted); margin-bottom: 0.2rem; }

.b-stars, .book-stars {
  font-size: 0.62rem;
  color: var(--amber);
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.book-amz {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--amber-deep);
  text-decoration: none;
}

.book-amz:hover { color: var(--ink); }

.product-pick {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.product-pick:last-child { border-bottom: none; padding-bottom: 0; }
.product-pick:first-child { padding-top: 0; }

.prod-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  overflow: hidden;
}

.prod-info { flex: 1; min-width: 0; }

.prod-info h4 {
  font-size: 0.77rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.prod-info h4 a { color: var(--ink); }

.prod-price { font-size: 0.7rem; color: var(--muted); margin-bottom: 0.3rem; }
.prod-price s { color: var(--muted-light); margin-right: 3px; }

.btn-kiklo {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--sage);
  border: 1px solid var(--sage);
  border-radius: 50px;
  padding: 3px 10px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.btn-kiklo:hover { background: var(--sage); color: var(--white); }

/* =================================================
   SINGLE POST
   ================================================= */
.single-view .content-area {
  max-width: 760px;
  margin: 0 auto;
}

.single-post-header {
  margin-bottom: 2rem;
}

.single-post-header .post-categories { margin-bottom: 0.9rem; }

.single-post-header h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.18;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.single-post-header .post-meta {
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.post-featured-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

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

.post-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.post-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--ink);
}

.post-content h3 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.6rem;
  color: var(--ink);
}

.post-content p { margin-bottom: 1.35rem; }
.post-content ul, .post-content ol { margin: 0 0 1.35rem 1.5rem; }
.post-content li { margin-bottom: 0.4rem; }

.post-content blockquote {
  border-left: 3px solid var(--amber);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--amber-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--ink-soft);
}

.post-content a {
  color: var(--amber-deep);
  text-decoration: underline;
  text-decoration-color: rgba(168,123,42,0.35);
  text-underline-offset: 3px;
}

.post-content a:hover {
  text-decoration-color: var(--amber-deep);
  color: var(--ink);
}

.post-content img {
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
  border: 1px solid var(--border);
}

/* =================================================
   INLINE PRODUCT LINK BOX
   ================================================= */
.product-link-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.35rem;
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow 0.2s;
}

.product-link-box:hover { box-shadow: var(--shadow); }

.product-link-box-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  overflow: hidden;
}

.product-link-box-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border: none;
  border-radius: var(--radius-sm);
}

.product-link-box-body { flex: 1; min-width: 0; }

.product-link-box-label {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 0.2rem;
  font-family: 'DM Sans', sans-serif;
  display: block;
}

.product-link-box h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.product-link-box p {
  font-size: 0.79rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.product-link-box-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--amber);
  color: var(--white);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

.btn-amazon:hover {
  background: var(--amber-deep);
  color: var(--white);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-amazon-outline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  color: var(--amber-deep);
  border: 1px solid var(--amber);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.btn-amazon-outline:hover {
  background: var(--amber-pale);
  color: var(--amber-deep);
  text-decoration: none;
}

/* Affiliate box in single posts */
.affiliate-box {
  background: var(--amber-pale);
  border: 1px solid rgba(201,152,58,0.25);
  border-radius: var(--radius);
  padding: 1.35rem;
  margin: 2.5rem 0;
}

.affiliate-box h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.affiliate-box p { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1rem; }
.affiliate-box-actions { display: flex; gap: 0.65rem; flex-wrap: wrap; align-items: center; }

/* =================================================
   SITE FOOTER
   ================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 3rem 2rem 1.5rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.site-logo-img--footer {
  height: 28px;
  width: auto;
  max-width: 120px;
  max-height: 28px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.affiliate-notice {
  max-width: 1280px;
  margin: 0 auto 1.5rem;
  font-size: 0.67rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.65;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p { font-size: 0.7rem; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: rgba(255,255,255,0.42); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* =================================================
   NEWSLETTER MODAL
   ================================================= */
.newsletter-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background: rgba(26,20,16,0.6);
  backdrop-filter: blur(4px);
}

.newsletter-modal.open { display: flex; }

.newsletter-modal-inner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(26,20,16,0.25);
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--ink); }

.newsletter-modal h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.newsletter-modal p { font-size: 0.83rem; color: var(--muted); margin-bottom: 1.2rem; }

.newsletter-modal .modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.newsletter-modal input[type="email"] {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-modal input[type="email"]:focus { border-color: var(--amber); }
.newsletter-modal .btn-newsletter { width: 100%; padding: 12px; font-size: 0.9rem; }

/* =================================================
   ACCESSIBILITY
   ================================================= */
.screen-reader-text {
  border: 0;
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* =================================================
   RESPONSIVE
   ================================================= */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .posts-grid { columns: 2 180px; }
  .main-navigation { display: none; }
  .main-navigation.open { display: block; }
  .main-navigation.open ul {
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--white);
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 997;
  }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .header-inner { padding: 0 1rem; }
  .site-content { padding: 1.5rem 1rem 3rem; }
  .posts-grid { columns: 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .product-link-box { flex-direction: column; }
}

/* =================================================
   BOOK CARD EXTRAS
   ================================================= */
.book-card-author {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
  font-style: italic;
}

.book-card-stars {
  font-size: 0.72rem;
  color: var(--amber);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* =================================================
   TOOL CARD EXTRAS
   ================================================= */
.tool-card-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber-deep);
  margin-bottom: 0.4rem;
}

/* =================================================
   ABOUT PAGE
   ================================================= */
.about-page .content-area {
  max-width: 1080px;
  margin: 0 auto;
}

/* Hero */
.about-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0 2.5rem;
}

.about-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 0.75rem;
}

.about-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 580px;
}

/* Override p margin inside about-lead */
.about-lead p { margin-bottom: 1rem; }

.about-hero-avatar {
  width: 160px;
  flex-shrink: 0;
}

.about-hero-avatar img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  box-shadow: var(--shadow);
}

.about-avatar-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* Divider */
.about-divider {
  height: 1px;
  background: var(--border);
  margin: 2.5rem 0;
}

/* Values grid */
.about-values h2,
.about-standards h2,
.about-recent h2 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  font-size: 0.78rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.about-value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.about-value-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.about-value-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.75rem;
}

.about-value-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.about-value-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Standards */
.about-standards {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-standards-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-standards-list li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  padding-left: 1.2rem;
  position: relative;
}

.about-standards-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 600;
}

.about-standards-quote {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 2rem;
  position: sticky;
  top: 80px;
}

.about-standards-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

/* Recent posts on About — override grid columns */
.about-recent .posts-grid {
  columns: 4 200px;
}

/* =================================================
   ABOUT PAGE RESPONSIVE
   ================================================= */
@media (max-width: 900px) {
  .about-hero { grid-template-columns: 1fr; gap: 2rem; }
  .about-hero-avatar { order: -1; }
  .about-hero-avatar img,
  .about-avatar-placeholder { width: 100px; height: 100px; font-size: 2.5rem; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .about-standards { grid-template-columns: 1fr; }
  .about-standards-quote { position: static; }
  .about-recent .posts-grid { columns: 2 180px; }
}

@media (max-width: 600px) {
  .about-values-grid { grid-template-columns: 1fr; }
  .about-recent .posts-grid { columns: 1; }
}

/* =================================================
   MISSING CATEGORY COLORS (from HTML design)
   ================================================= */
.cat-habits   { background: #f3eefc; color: #6B4FA0; }
.cat-selfcare { background: #fff0f5; color: #b5476a; }
.cat-pick     { background: #FFF3CD; color: #856404; }

/* =================================================
   THUMB BACKGROUND COLOURS
   ================================================= */
.bg-amber   { background: var(--amber-pale); }
.bg-sage    { background: var(--sage-light); }
.bg-rose    { background: var(--rose-light); }
.bg-sky     { background: var(--sky-light); }
.bg-wellness{ background: #EDF4F0; }
.bg-cream   { background: var(--cream-dark); }

/* =================================================
   HERO BANNER (Home page)
   ================================================= */
.hero-banner {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--amber-pale) 100%);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-text h1 em { font-style: italic; color: var(--amber-deep); }

.hero-text > p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  max-width: 480px;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--amber);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--amber-deep); color: var(--white); }

.btn-outline {
  border: 1.5px solid var(--border-dark);
  color: var(--ink-soft);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }

/* Featured book card in hero */
.featured-book-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.book-cover {
  width: 80px;
  min-width: 80px;
  height: 110px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}

.book-info h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.book-author  { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.35rem; }
.book-stars   { color: var(--amber); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.45rem; }
.book-blurb   { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 0.75rem; line-height: 1.55; }

/* =================================================
   PAGE HEADER BANNER (Thoughts / Books / Tools)
   ================================================= */
.page-header-banner {
  padding: 2.5rem 2rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.page-header-banner-inner { max-width: 1280px; margin: 0 auto; }

.page-header-banner .page-emoji {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.page-header-banner h1 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.4rem;
}

.page-header-banner p {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 520px;
}

/* =================================================
   LAYOUT WITH SIDEBAR
   ================================================= */
.site-content.has-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

/* =================================================
   SECTION HEADER
   ================================================= */
.section-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.section-header h2 { font-size: 1.35rem; margin-bottom: 0.2rem; }
.section-header p  { color: var(--muted); font-size: 0.82rem; }

/* =================================================
   HERO CARD (horizontal featured post)
   ================================================= */
.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.hero-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.hero-card .thumb {
  min-height: 240px;
  height: 100%;
}

.hero-card .post-body { padding: 1.75rem; }
.hero-card h2 { font-size: 1.35rem; line-height: 1.25; margin-bottom: 0.55rem; }

/* =================================================
   BOOK FEATURED CARD (horizontal book review)
   ================================================= */
.book-featured {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: 160px 1fr;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.book-featured:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.book-featured .cover-col {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  padding: 2rem;
}

.book-featured .body-col { padding: 1.5rem; }
.book-featured h2 { font-size: 1.25rem; margin-bottom: 0.3rem; }

.book-meta-row {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* =================================================
   AFFILIATE BOX (inside cards)
   ================================================= */
.aff-box {
  background: var(--amber-pale);
  border: 1.5px solid #EDD9A3;
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  margin: 0.85rem 0 0;
}

.aff-box h4 { font-size: 0.95rem; margin-bottom: 0.35rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.aff-box p  { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 0.75rem; }
.aff-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* =================================================
   SUB TABS
   ================================================= */
.sub-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.sub-tab {
  padding: 0.42rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: var(--white);
  transition: all 0.15s;
  font-family: 'DM Sans', sans-serif;
}

.sub-tab:hover { border-color: var(--border-dark); color: var(--ink); }

.sub-tab.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.sub-view { display: none; }
.sub-view.active { display: block; }

/* =================================================
   BREADCRUMB
   ================================================= */
.breadcrumb {
  font-size: 0.73rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--sage); }
.bc-sep { color: var(--muted-light); }

/* =================================================
   SIDEBAR WIDGETS (restored)
   ================================================= */
.w-book {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.w-cover {
  width: 52px;
  min-width: 52px;
  height: 72px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.w-book-info h4 { font-size: 0.85rem; margin-bottom: 0.15rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.w-book-info .b-author { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.3rem; }
.w-book-info .stars-sm { display: block; margin-bottom: 0.4rem; }
.stars-sm { color: var(--amber); font-size: 0.75rem; letter-spacing: 1px; }

.widget ul { list-style: none; }
.widget li { padding: 0.4rem 0; border-bottom: 1px solid var(--cream-dark); font-size: 0.82rem; }
.widget li:last-child { border-bottom: none; }
.widget a { color: var(--ink-soft); }
.widget a:hover { color: var(--sage); }

.w-product-hero { text-align: center; padding: 0.5rem 0; }
.w-product-hero .big-emoji { font-size: 2.4rem; margin-bottom: 0.45rem; }
.w-product-hero strong { font-family: 'Playfair Display', serif; font-size: 0.88rem; display: block; margin-bottom: 0.3rem; }
.w-product-hero p { font-size: 0.73rem; color: var(--muted); margin-bottom: 0.6rem; }
.price-row { font-size: 0.8rem; margin-bottom: 0.65rem; }
.price-row s { color: var(--muted-light); }
.price-row em { color: var(--sage); font-weight: 700; font-style: normal; }

.nl-row { display: flex; gap: 0.4rem; }
.nl-row input {
  flex: 1;
  padding: 0.48rem 0.7rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 0.78rem;
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  outline: none;
}
.nl-row input:focus { border-color: var(--amber); }
.nl-row button {
  background: var(--amber);
  color: var(--white);
  border: none;
  padding: 0.48rem 0.9rem;
  border-radius: var(--radius-xs);
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.nl-row button:hover { background: var(--amber-deep); }

/* =================================================
   ABOUT PAGE (full redesign matching HTML)
   ================================================= */
.about-wrap { max-width: 860px; margin: 0 auto; padding: 3rem 2rem; }

.about-hero-section { text-align: center; padding: 1rem 0 2.5rem; }

.about-avatar-emoji {
  width: 96px;
  height: 96px;
  background: var(--sage-light);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
}

.about-hero-section h1 { font-size: 2rem; margin-bottom: 0.4rem; }

.about-tagline { color: var(--muted); font-size: 0.88rem; margin-bottom: 1.5rem; }

.about-bio {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-story {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.about-story h2 { font-size: 1.25rem; margin-bottom: 1rem; }
.about-story p  { font-size: 0.93rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem; }
.about-story p:last-child { margin-bottom: 0; }

.about-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2.25rem 0;
}

.about-card-2 {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow-sm);
}

.about-card-2 .icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.about-card-2 h3 { font-size: 0.97rem; margin-bottom: 0.35rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.about-card-2 p  { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

.about-covers {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.about-covers h2 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.about-covers > p { font-size: 0.83rem; color: var(--muted); margin-bottom: 1.25rem; }

.topic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.topic-tile {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.topic-tile .t-icon { font-size: 1.2rem; }
.topic-tile strong  { font-size: 0.88rem; display: block; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.topic-tile span    { font-size: 0.75rem; opacity: 0.75; color: var(--ink-soft); }

.about-press {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.about-press h2 { font-size: 1.25rem; margin-bottom: 1.25rem; }

.press-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.press-item {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.press-item .press-emoji { font-size: 1.6rem; margin-bottom: 0.4rem; }
.press-item strong { font-size: 0.85rem; display: block; margin-bottom: 0.2rem; font-family: 'DM Sans', sans-serif; }
.press-item span { font-size: 0.72rem; color: var(--muted); }

.about-ethics {
  background: var(--sage-light);
  border: 1.5px solid #c5dfc9;
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.about-ethics h2 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.about-ethics p  { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 0.75rem; }
.about-ethics p:last-child { margin-bottom: 0; }

.contact-box {
  background: var(--amber-pale);
  border: 1.5px solid #EDD9A3;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.contact-box h2 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.contact-box p  { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 1.25rem; }

/* =================================================
   RESPONSIVE ADDITIONS
   ================================================= */
@media (max-width: 1024px) {
  .site-content.has-sidebar {
    grid-template-columns: 1fr 240px;
  }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .featured-book-card { display: none; }
  .site-content.has-sidebar { grid-template-columns: 1fr; }
  .site-content.has-sidebar .sidebar { display: none; }
  .hero-card { grid-template-columns: 1fr; }
  .hero-card .thumb { height: 180px; min-height: unset; }
  .book-featured { grid-template-columns: 1fr; }
  .book-featured .cover-col { height: 120px; padding: 1rem; }
  .about-grid-2 { grid-template-columns: 1fr; }
  .press-list { grid-template-columns: 1fr 1fr; }
  .topic-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .press-list { grid-template-columns: 1fr; }
  .about-wrap { padding: 2rem 1rem; }
  .hero-banner { padding: 2rem 1rem; }
}
