/*
Theme Name: DIVADOSE
Theme URI: https://divadose.com
Author: DIVADOSE
Author URI: https://divadose.com
Description: A lifestyle blog theme for DIVADOSE — decor, recipes, hobbies, and more.
Version: 2.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ddose
Tags: blog, lifestyle, two-columns, custom-menu, featured-images, sticky-post
*/

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --color-primary:    #c0616b;
  --color-primary-dk: #9e3e47;
  --color-accent:     #f2b5b5;
  --color-bg:         #ffffff;
  --color-bg-alt:     #fdf7f7;
  --color-bg-dark:    #1e1010;
  --color-text:       #222222;
  --color-text-mid:   #555555;
  --color-text-light: #888888;
  --color-border:     #ead8d8;

  --font: 'Poppins', sans-serif;

  --max-width: 1200px;
  --radius:    8px;
  --radius-lg: 12px;
  --shadow:    0 2px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --trans:     0.25s ease;
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-primary); }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
p { margin-bottom: 1em; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font); line-height: 1.3; }

/* ============================================================
   UTILITIES
============================================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--trans);
  border: 2px solid transparent;
}
.btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-dk); border-color: var(--color-primary-dk); color: #fff; }
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-dark { background: var(--color-bg-dark); color: #fff; border-color: var(--color-bg-dark); }
.btn-dark:hover { background: #333; border-color: #333; color: #fff; }

/* Section heading style — matches MegaMom */
.section-heading {
  text-align: center;
  margin-bottom: 32px;
}
.section-heading h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}
.section-heading p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  max-width: 540px;
  margin: 0 auto;
}

.section-row-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
}
.section-row-header h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
}
.section-row-header p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  max-width: 460px;
  margin-top: 4px;
}
.view-all-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 16px;
}
.view-all-link:hover { color: var(--color-primary-dk); }

/* ============================================================
   TOP BAR
============================================================ */
.top-bar {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.top-bar em { font-style: italic; }
.top-bar a { color: var(--color-accent); font-weight: 600; }
.top-bar a:hover { color: #fff; }

/* ============================================================
   HEADER — Logo centered, nav below (matches MegaMom)
============================================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

/* Top row: logo center, search+subscribe right */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}
.header-logo-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}
.site-logo img { height: 52px; width: auto; }
.site-logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.header-left { flex: 1; } /* spacer */
.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.header-search-btn {
  background: none;
  border: none;
  padding: 6px;
  color: var(--color-text-mid);
  font-size: 1rem;
  cursor: pointer;
  transition: color var(--trans);
}
.header-search-btn:hover { color: var(--color-primary); }

/* Nav row below logo */
.header-nav-row {
  border-top: 1px solid var(--color-border);
}
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 11px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text);
  transition: color var(--trans);
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a { color: var(--color-primary); }

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-primary);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 160px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--trans), transform var(--trans), visibility var(--trans);
  z-index: 100;
}
.nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .sub-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-mid);
  border-bottom: 1px solid #f5f0f0;
  transition: all var(--trans);
}
.nav-menu .sub-menu li:last-child a { border-bottom: none; }
.nav-menu .sub-menu li a:hover { color: var(--color-primary); background: var(--color-bg-alt); padding-left: 20px; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--trans);
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--trans), visibility var(--trans);
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-overlay-inner { width: 100%; max-width: 560px; padding: 0 24px; }
.search-overlay input[type="search"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: var(--font);
  font-size: 1.8rem;
  font-weight: 300;
  padding: 10px 0;
  outline: none;
}
.search-overlay input::placeholder { color: rgba(255,255,255,0.3); }
.search-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity var(--trans);
}
.search-close:hover { opacity: 1; }

/* ============================================================
   HERO SECTION
   Dark moody gradient bg, pill badge, serif headline, italic
   coral accent line, muted body text, two CTA buttons
============================================================ */
.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 0 90px;
  border-bottom: none;
  /* Deep rose/berry gradient -- matches theme primary #c0616b palette */
  background:
    radial-gradient(ellipse 80% 90% at 15% 60%, rgba(158,62,71,0.75) 0%, transparent 60%),
    radial-gradient(ellipse 70% 80% at 85% 30%, rgba(120,30,45,0.65) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(80,10,20,0.5) 0%, transparent 50%),
    #1a0810;
}

/* Particles canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Content above canvas */
.hero-container { position: relative; z-index: 1; }

.hero-text-wrap {
  max-width: 740px;
  margin: 0 auto;
}

/* Pill badge -- "WELCOME" with border */
.hero-badge {
  display: inline-block;
  padding: 7px 22px;
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

/* Headline wrapper */
.hero-headline {
  margin: 0 0 22px;
  line-height: 1.08;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* Line 1 -- large white, weight 700, Playfair Display serif */
.hero-headline-line1 {
  font-family: 'Playfair Display', Georgia, serif;
  display: block;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

/* Line 2 -- same size, italic, coral/salmon accent color, serif */
.hero-headline-line2 {
  font-family: 'Playfair Display', Georgia, serif;
  display: block;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  font-style: italic;
  color: #e8896a;        /* coral/salmon -- matches screenshot accent */
  letter-spacing: -0.02em;
  line-height: 1.08;
}

/* Muted body paragraph */
.hero-body {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  margin: 0 auto 38px;
  max-width: 480px;
  font-weight: 400;
}

/* Button row */
.hero-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Filled primary button */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 32px;
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background var(--trans), border-color var(--trans), transform var(--trans);
}
.hero-btn-primary:hover {
  background: var(--color-primary-dk);
  border-color: var(--color-primary-dk);
  color: #fff;
  transform: translateY(-2px);
}

/* Ghost outline button */
.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 32px;
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 2px solid rgba(255,255,255,0.32);
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color var(--trans), background var(--trans), transform var(--trans);
}
.hero-btn-outline:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   POST GRID — 4 columns, standard card
============================================================ */
.posts-section { padding: 48px 0; }
.posts-section + .posts-section { padding-top: 0; }

.posts-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.posts-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.posts-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Post card — clean, minimal, matches MegaMom */
.post-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.post-card-thumb {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-body { padding: 14px; }
.post-card-body h6 {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text);
}
.post-card-body h6 a:hover { color: var(--color-primary); }
.post-card-meta {
  font-size: 0.72rem;
  color: var(--color-text-light);
  margin-top: 6px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.post-card-meta span.dot { width: 2px; height: 2px; background: #ccc; border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   HOBBIES SECTION — 4 image cards with label below
============================================================ */
.hobbies-section { padding: 48px 0; background: var(--color-bg-alt); }
.hobbies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hobby-card { text-align: center; }
.hobby-card-img {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 10px;
}
.hobby-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hobby-card:hover .hobby-card-img img { transform: scale(1.04); }
.hobby-card h5 {
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
}
.hobby-card h5 a:hover { color: var(--color-primary); }
.hobbies-more { text-align: center; margin-top: 24px; }

/* ============================================================
   PINTEREST SECTION — 3 cards
============================================================ */
.pinterest-section { padding: 48px 0; }
.pinterest-intro {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.pinterest-intro img { width: 36px; height: 36px; }
.pinterest-intro p { font-size: 0.88rem; color: var(--color-text-mid); max-width: 600px; margin: 0; }
.pinterest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pinterest-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pinterest-card-img { aspect-ratio: 4/3; overflow: hidden; }
.pinterest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.pinterest-card:hover .pinterest-card-img img { transform: scale(1.04); }
.pinterest-card-body { padding: 16px; }
.pinterest-card-body .eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 4px;
}
.pinterest-card-body h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pinterest-card-body p { font-size: 0.82rem; color: var(--color-text-mid); margin-bottom: 12px; }
.pinterest-card-body a.join-btn {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pinterest-card-body a.join-btn:hover { color: var(--color-primary-dk); }

/* ============================================================
   THIS WEEK'S PICKS / GENERIC SECTION WITH BG
============================================================ */
.picks-section { padding: 48px 0; background: var(--color-bg-alt); }

/* ============================================================
   NEWSLETTER BANNER
============================================================ */
.newsletter-section {
  padding: 60px 0;
  background: var(--color-primary);
}
.newsletter-inner { text-align: center; max-width: 480px; margin: 0 auto; }
.newsletter-inner h2 { font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.newsletter-inner p { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.newsletter-form { display: flex; max-width: 380px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 11px 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-right: none;
  border-radius: 4px 0 0 4px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font);
  font-size: 0.85rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form button {
  padding: 11px 20px;
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.8rem;
  border: 2px solid #fff;
  border-radius: 0 4px 4px 0;
  transition: all var(--trans);
}
.newsletter-form button:hover { background: transparent; color: #fff; }

/* ============================================================
   SIDEBAR & CONTENT WRAP
============================================================ */
.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 48px 0;
  align-items: start;
}

/* Widget */
.widget {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}
.widget-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border);
  position: relative;
}
.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-primary);
}

.widget-about p { font-size: 0.85rem; color: var(--color-text-mid); margin-bottom: 12px; }
.widget-about img { width: 100%; height: 160px; object-fit: cover; border-radius: var(--radius); margin-bottom: 12px; }

.widget-categories li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #f5eded;
  font-size: 0.85rem;
}
.widget-categories li:last-child { border-bottom: none; }
.widget-categories a { color: var(--color-text-mid); font-weight: 500; }
.widget-categories a:hover { color: var(--color-primary); }
.widget-categories .count {
  font-size: 0.72rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 1px 7px;
  color: var(--color-text-light);
}

.recent-post-item { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid #f5eded; align-items: flex-start; }
.recent-post-item:last-child { border-bottom: none; }
.recent-post-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.recent-post-item h4 { font-size: 0.82rem; font-weight: 600; line-height: 1.4; }
.recent-post-item h4 a:hover { color: var(--color-primary); }
.recent-post-item .date { font-size: 0.72rem; color: var(--color-text-light); margin-top: 3px; }

/* ============================================================
   SINGLE POST
============================================================ */
.single-post-header { padding: 32px 0 0; }
.single-post-cats { margin-bottom: 10px; }
.single-post-cats a {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 12px;
  border-radius: 2px;
  margin-right: 4px;
}
.single-post-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 12px; }
.single-post-meta { font-size: 0.8rem; color: var(--color-text-light); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.single-post-meta .dot { width: 2px; height: 2px; background: #ccc; border-radius: 50%; }
.single-post-thumb { margin: 24px 0; border-radius: var(--radius-lg); overflow: hidden; }
.single-post-thumb img { width: 100%; max-height: 480px; object-fit: cover; }

.post-body { font-size: 0.95rem; line-height: 1.85; color: var(--color-text); }
.post-body h2 { font-size: 1.4rem; margin: 28px 0 12px; font-weight: 700; }
.post-body h3 { font-size: 1.15rem; margin: 22px 0 10px; font-weight: 700; }
.post-body p { margin-bottom: 16px; }
.post-body ul, .post-body ol { margin: 0 0 16px 22px; list-style: initial; }
.post-body li { margin-bottom: 6px; }
.post-body img { border-radius: var(--radius); margin: 20px 0; }
.post-body blockquote {
  border-left: 3px solid var(--color-primary);
  padding: 12px 18px;
  margin: 20px 0;
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--color-text-mid);
}
.post-tags { margin-top: 28px; display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.post-tags .label { font-size: 0.78rem; font-weight: 700; color: var(--color-text-mid); text-transform: uppercase; letter-spacing: 0.05em; }
.tag-pill {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-size: 0.75rem;
  color: var(--color-text-mid);
  transition: all var(--trans);
}
.tag-pill:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.author-box {
  margin-top: 36px;
  padding: 22px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.author-box img { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; }
.author-box h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.author-box p { font-size: 0.85rem; color: var(--color-text-mid); margin: 0; }

.related-posts { margin-top: 40px; }
.related-posts h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--color-border); }

/* ============================================================
   ARCHIVE PAGE
============================================================ */
.archive-header {
  background: var(--color-bg-alt);
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.archive-header h1 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; }
.archive-header p { color: var(--color-text-mid); font-size: 0.9rem; margin: 8px auto 0; max-width: 480px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 0;
}

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 6px; padding: 20px 0 48px; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 4px;
  font-size: 0.82rem; font-weight: 600;
  border: 1px solid var(--color-border);
  color: var(--color-text-mid);
  transition: all var(--trans);
}
.pagination a:hover, .pagination .current {
  background: var(--color-primary); border-color: var(--color-primary); color: #fff;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--color-bg-dark); color: rgba(255,255,255,0.7); padding: 52px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-text { font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 12px; display: block; }
.footer-about p { font-size: 0.84rem; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px; background: rgba(255,255,255,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.65); transition: all var(--trans);
}
.footer-social a:hover { background: var(--color-primary); color: #fff; }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: #fff; margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 0.83rem; color: rgba(255,255,255,0.55); transition: color var(--trans); }
.footer-col ul a:hover { color: var(--color-accent); }
.footer-bottom {
  padding: 16px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--color-accent); }

/* ============================================================
   SOCIAL SHARE BUTTONS
============================================================ */
.social-share {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 0;
  margin: 16px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.share-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-light);
  margin-right: 4px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 0.82rem;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform var(--trans), opacity var(--trans);
  text-decoration: none;
}
.share-btn:hover { transform: scale(1.1); opacity: 0.9; color: #fff; }
.share-facebook  { background: #1877f2; }
.share-pinterest { background: #e60023; }
.share-twitter   { background: #000; }
.share-whatsapp  { background: #25d366; }
.share-email     { background: #555; }
.share-copy      { background: var(--color-primary); font-family: inherit; }
.share-bottom    { margin-top: 32px; }

/* ============================================================
   AUTHOR BOX — updated with social icons
============================================================ */
.author-box {
  margin-top: 36px;
  padding: 24px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.author-avatar { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; }
.author-name { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.author-name a { color: var(--color-text); }
.author-name a:hover { color: var(--color-primary); }
.author-bio { font-size: 0.86rem; color: var(--color-text-mid); margin-bottom: 10px; }
.author-social { display: flex; gap: 8px; }
.author-social a {
  width: 28px; height: 28px;
  background: var(--color-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; color: var(--color-text-mid);
  transition: all var(--trans);
}
.author-social a:hover { background: var(--color-primary); color: #fff; }

/* ============================================================
   SIDEBAR SOCIAL LINKS
============================================================ */
.sidebar-social { display: flex; flex-direction: column; gap: 6px; }
.sidebar-social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-mid);
  transition: all var(--trans);
  text-decoration: none;
}
.sidebar-social-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.sidebar-social-btn i { width: 16px; text-align: center; font-size: 0.85rem; }

/* ============================================================
   SINGLE POST CAT BADGE
============================================================ */
.single-post-cats { margin-bottom: 10px; }
.cat-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 2px;
  margin-right: 4px;
}
.cat-badge:hover { background: var(--color-primary-dk); color: #fff; }

/* ============================================================
   FOOTER BOTTOM BAR
============================================================ */
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: var(--color-accent); }

/* Footer menu list */
.footer-menu-list { padding: 0; margin: 0; list-style: none; }
.footer-menu-list li { margin-bottom: 8px; }
.footer-menu-list a { font-size: 0.83rem; color: rgba(255,255,255,.55); transition: color var(--trans); }
.footer-menu-list a:hover { color: var(--color-accent); }

/* Top bar link */
.top-bar-link { color: inherit; text-decoration: none; }
.top-bar-link:hover { color: #fff; }
.top-bar-link em { font-style: italic; }
.top-bar-link strong { font-weight: 700; }
/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .posts-grid-4, .posts-grid-8 { grid-template-columns: repeat(2, 1fr); }
  .hobbies-grid                 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid                  { grid-template-columns: 1fr 1fr; }
  .content-sidebar-wrap         { grid-template-columns: 1fr; }
  .pinterest-grid               { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Header nav collapses to hamburger */
  .header-nav-row          { display: none; }
  .header-nav-row.open     { display: block; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--color-border); box-shadow: 0 4px 16px rgba(0,0,0,.08); z-index: 998; padding: 0 20px 12px; }
  .nav-menu                { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-menu > li           { width: 100%; }
  .nav-menu > li > a       { padding: 11px 0; border-bottom: 1px solid var(--color-border); font-size: 0.82rem; }
  .nav-menu .sub-menu      { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-left: 2px solid var(--color-border); margin-left: 14px; border-top: none; border-radius: 0; }
  .menu-toggle             { display: flex; }

  /* Hero */
  .hero-section            { padding: 70px 0 60px; min-height: 400px; }
  .hero-headline-line1,
  .hero-headline-line2     { font-size: clamp(2rem, 7vw, 3.2rem); }
  .hero-btns               { gap: 10px; }
  .hero-btn-primary,
  .hero-btn-outline        { padding: 11px 24px; font-size: 0.84rem; }

  /* About strip stacks */
  .about-strip-inner       { grid-template-columns: auto 1fr; }
  .about-actions           { display: none; }

  /* Grids */
  .posts-grid-3, .blog-grid  { grid-template-columns: 1fr 1fr; }
  .pinterest-grid            { grid-template-columns: 1fr; }
  .footer-grid               { grid-template-columns: 1fr; gap: 24px; }

  /* Newsletter form stacks */
  .newsletter-form         { flex-direction: column; }
  .newsletter-form input   { border-right: 2px solid rgba(255,255,255,0.35); border-bottom: none; border-radius: 4px 4px 0 0; }
  .newsletter-form button  { border-radius: 0 0 4px 4px; }

  /* Subscribe button text hidden on very small headers */
  .header-subscribe-btn    { display: none; }

  /* Share */
  .social-share            { gap: 6px; }

  /* Footer bottom */
  .footer-bottom-inner     { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .posts-grid-4, .posts-grid-8, .posts-grid-3, .blog-grid { grid-template-columns: 1fr; }
  .hobbies-grid            { grid-template-columns: 1fr 1fr; }
  .hero-section            { padding: 56px 0 48px; }
  .hero-headline-line1,
  .hero-headline-line2     { font-size: 2rem; }
  .hero-badge              { font-size: 0.62rem; padding: 6px 16px; }
  .hero-btns               { flex-direction: column; gap: 10px; align-items: center; }
  .hero-btn-primary,
  .hero-btn-outline        { width: 100%; max-width: 240px; justify-content: center; padding: 12px 20px; font-size: 0.84rem; }
  .about-strip-inner       { grid-template-columns: 1fr; text-align: center; }
  .about-photo             { margin: 0 auto; }
  .about-social            { justify-content: center; }
  .author-box              { flex-direction: column; align-items: center; text-align: center; }
}
