/*
Theme Name: Total Adventure Gear
Theme URI: https://totaladventuregear.com
Description: Earth-tone adventure magazine theme for outdoor blogs.
Version: 1.0.0
Author: Total Adventure Gear
Tags: blog, magazine, outdoor, adventure, two-columns, custom-menu, featured-images, post-formats
Text Domain: tag
*/

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #fffcf7;
  --cream-mid:   #f5f2ed;
  --border:      #e4e0da;
  --border-mid:  #cdc8c0;
  --text-primary:   #1a1a18;
  --text-secondary: #5a5a55;
  --text-tertiary:  #8a8a85;

  /* Forest green — nav, footer, hero backgrounds */
  --nav-bg:      #1A2E1A;
  --nav-bg-mid:  #243824;

  /* Teal — primary brand accent */
  --brand:       #0F6E56;
  --brand-dark:  #085041;
  --brand-deep:  #1A2E1A;
  --teal:        #5DCAA5;
  --teal-light:  #9FE1CB;
  --teal-deep:   #04342C;

  /* Amber — category tags, filter chips active state */
  --amber-light: #FAEEDA;
  --amber-mid:   #FAC775;
  --amber-tag:   #EF9F27;
  --amber-dark:  #854F0B;

  /* Coral — gear/reviews tags */
  --coral-light: #FAECE7;
  --coral-mid:   #D85A30;
  --coral-dark:  #993C1D;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --shadow-card: 0 1px 4px rgba(26,46,26,0.07);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  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(--brand); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-primary);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =========================================================
   LAYOUT
   ========================================================= */
.site { display: flex; flex-direction: column; min-height: 100vh; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.site-main { flex: 1; padding: 2.5rem 0; }

.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

/* =========================================================
   HEADER & NAV
   ========================================================= */
.site-header {
  background: var(--nav-bg);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-branding svg {
  width: 22px;
  height: 22px;
  color: var(--teal-light);
  flex-shrink: 0;
}

.site-title {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-title a { color: inherit; }
.site-title a:hover { color: var(--teal-light); }

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.main-navigation a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a { color: #fff; }

.main-navigation .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--nav-bg-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  min-width: 180px;
}

.main-navigation li { position: relative; }
.main-navigation li:hover > .sub-menu { display: block; }

.main-navigation .sub-menu a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 13px;
}

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

.header-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-social a {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.header-social a:hover { color: var(--teal-light); }

.header-social svg { width: 18px; height: 18px; }

/* Shop Now CTA button */
.header-cta {
  background: var(--teal);
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}

.header-cta:hover { background: var(--teal-light); color: var(--teal-deep); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

/* =========================================================
   HERO / FEATURED POST
   ========================================================= */
.hero-section { margin-bottom: 3rem; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

.hero-post {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--nav-bg);
}

.hero-post .post-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-post-inner {
  position: relative;
  z-index: 1;
  padding: 2rem 1.75rem 1.75rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-post .post-category {
  background: rgba(93,202,165,0.2);
  color: var(--teal-light);
  margin-bottom: 0.75rem;
}

.hero-post .entry-title {
  font-size: 24px;
  color: #fffcf7;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.hero-post .entry-title a { color: inherit; }
.hero-post .entry-title a:hover { color: var(--teal-light); }

.hero-post .entry-meta { color: rgba(255,252,247,0.6); font-size: 13px; }

.hero-post .entry-excerpt {
  color: rgba(255,252,247,0.75);
  font-size: 14px;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-sidebar-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-tertiary);
  margin-bottom: 0.875rem;
}

.sidebar-mini-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}

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

.sidebar-mini-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-mini-thumb svg {
  width: 24px;
  height: 24px;
  color: var(--text-tertiary);
}

.sidebar-mini-post .entry-title {
  font-size: 13px;
  margin: 4px 0 3px;
  line-height: 1.4;
}

/* =========================================================
   POST GRID
   ========================================================= */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.section-label span {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.post-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.post-card:hover {
  box-shadow: 0 4px 16px rgba(45,31,14,0.1);
  border-color: var(--border-mid);
}

.post-card-thumb {
  height: 160px;
  overflow: hidden;
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.post-card:hover .post-card-thumb img { transform: scale(1.03); }

.post-card-thumb .thumb-icon {
  width: 40px;
  height: 40px;
  color: var(--brand);
  opacity: 0.5;
}

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

.entry-title a:hover { color: var(--brand); }

.post-card .entry-title {
  font-size: 15px;
  margin: 0.375rem 0 0.5rem;
  line-height: 1.4;
}

.post-card .entry-excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.post-card .entry-meta {
  font-size: 12px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =========================================================
   CATEGORY TAGS / BADGES
   ========================================================= */
.post-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  line-height: 1;
}

.cat-adventure, .cat-hiking {
  background: #EAF3DE;
  color: #27500A;
}
.cat-gear, .cat-reviews {
  background: var(--coral-light);
  color: var(--coral-dark);
}
.cat-photos, .cat-photography {
  background: #E6F1FB;
  color: #0C447C;
}
.cat-video {
  background: var(--amber-light);
  color: var(--amber-dark);
}
.cat-kayaking, .cat-rafting, .cat-camping {
  background: #E1F5EE;
  color: #0F6E56;
}
.cat-wildlife {
  background: #EAF3DE;
  color: #3B6D11;
}
.cat-default {
  background: var(--cream-mid);
  color: var(--text-secondary);
}

/* =========================================================
   CATEGORY FILTER CHIPS
   ========================================================= */
.category-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
}

.filter-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-tertiary);
  margin-right: 4px;
}

.filter-chip {
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.filter-chip:hover, .filter-chip.active {
  background: #E1F5EE;
  border-color: var(--teal);
  color: var(--brand);
}

/* =========================================================
   SINGLE POST
   ========================================================= */
.single-article { max-width: 720px; }

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.25rem;
  font-size: 13px;
  color: var(--text-tertiary);
}

.article-breadcrumb a { color: inherit; }
.article-breadcrumb a:hover { color: var(--brand); }
.article-breadcrumb .sep { color: var(--border-mid); }

.article-header { margin-bottom: 1.5rem; }

.article-header .post-category { margin-bottom: 0.75rem; }

.article-header .entry-title {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.article-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-dark);
  overflow: hidden;
  flex-shrink: 0;
}

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

.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.post-date { font-size: 13px; color: var(--text-tertiary); }

.share-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.share-buttons a {
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.share-buttons a:hover { color: var(--brand); }
.share-buttons svg { width: 18px; height: 18px; }

/* Hero image */
.article-hero-image {
  margin-bottom: 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--amber-light);
}

.article-hero-image img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

/* Article body */
.entry-content h2 {
  font-size: 20px;
  margin: 2rem 0 0.75rem;
  color: var(--text-primary);
}

.entry-content h3 {
  font-size: 17px;
  margin: 1.5rem 0 0.5rem;
}

.entry-content p { font-size: 16px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1.25rem; }

.entry-content p:last-child { margin-bottom: 0; }

.entry-content a { color: var(--brand); text-decoration: underline; text-decoration-color: var(--amber-tag); }

.entry-content ul, .entry-content ol {
  margin: 0 0 1.25rem 1.25rem;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }

.entry-content li { margin-bottom: 0.25rem; }

.entry-content blockquote {
  border-left: 3px solid var(--teal);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: #E1F5EE;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.entry-content blockquote p {
  font-size: 17px;
  font-style: italic;
  color: var(--teal-deep);
  margin: 0;
}

.entry-content figure { margin: 1.75rem 0; }

.entry-content figure img {
  border-radius: var(--radius-md);
  width: 100%;
}

.entry-content figcaption {
  font-size: 13px;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 0.5rem;
}

.entry-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* Gear callout card */
.gear-callout {
  background: var(--cream-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin: 1.75rem 0;
}

.gear-callout-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-tertiary);
  margin-bottom: 0.875rem;
}

.gear-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.gear-item:last-child { border-bottom: none; padding-bottom: 0; }

.gear-item-name { color: var(--text-primary); font-weight: 500; }
.gear-item-type { color: var(--text-tertiary); font-size: 12px; }

/* Tags row */
.entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.entry-tags .tag-link {
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 0.15s;
}

.entry-tags .tag-link:hover {
  background: var(--amber-light);
  border-color: var(--amber-tag);
  color: var(--brand-dark);
}

/* =========================================================
   SINGLE SIDEBAR
   ========================================================= */
.single-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.sidebar-widget {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.125rem;
  background: #fff;
}

.sidebar-widget-title {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-tertiary);
  margin-bottom: 0.875rem;
}

/* Trip stats */
.trip-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.trip-stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.trip-stat-label { color: var(--text-secondary); }
.trip-stat-value { font-weight: 500; color: var(--text-primary); }

/* Related posts in sidebar */
.related-mini-post {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.related-mini-post:first-of-type { padding-top: 0; }
.related-mini-post:last-child { border-bottom: none; padding-bottom: 0; }

.related-mini-thumb {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cream-mid);
}

.related-mini-post .entry-title { font-size: 13px; line-height: 1.4; margin-bottom: 3px; }
.related-mini-post .entry-meta { font-size: 12px; color: var(--text-tertiary); }

/* =========================================================
   REGULAR SIDEBAR (blog)
   ========================================================= */
.widget-area .widget {
  margin-bottom: 2rem;
}

.widget-area .widget-title {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-tertiary);
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.widget-area ul li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}

.widget-area ul li:last-child { border-bottom: none; }
.widget-area ul li a { color: inherit; }
.widget-area ul li a:hover { color: var(--brand); }

/* Tag cloud */
.widget_tag_cloud .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.widget_tag_cloud .tag-cloud-link {
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid var(--border);
  font-size: 12px !important;
  color: var(--text-secondary);
  transition: all 0.15s;
}

.widget_tag_cloud .tag-cloud-link:hover {
  background: #E1F5EE;
  border-color: var(--teal);
  color: var(--brand);
}

/* =========================================================
   GEAR SPOTLIGHT BANNER
   ========================================================= */
.gear-spotlight {
  background: var(--brand);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.gear-spotlight-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-light);
  margin-bottom: 4px;
}

.gear-spotlight-title {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 3px;
}

.gear-spotlight-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.gear-spotlight-link {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}

.gear-spotlight-link:hover { background: rgba(255,255,255,0.2); color: #fff; }

@media (max-width: 600px) {
  .gear-spotlight { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   NEWSLETTER STRIP
   ========================================================= */
.newsletter-strip {
  background: var(--nav-bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.newsletter-strip h3 {
  font-size: 16px;
  color: var(--teal-light);
  margin-bottom: 4px;
}

.newsletter-strip p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.newsletter-form input[type="email"] {
  font-size: 13px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 8px 14px;
  width: 220px;
  outline: none;
}

.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input[type="email"]:focus { border-color: var(--teal); }

.newsletter-form button {
  background: var(--teal);
  border: none;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.newsletter-form button:hover { background: var(--teal-light); }

/* =========================================================
   PAGINATION
   ========================================================= */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 2rem 0;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.15s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.pagination .prev, .pagination .next {
  width: auto;
  padding: 0 14px;
  font-size: 13px;
}

/* =========================================================
   ARCHIVE / CATEGORY HEADER
   ========================================================= */
.archive-header {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.archive-header .archive-title {
  font-size: 26px;
  margin-bottom: 0.375rem;
}

.archive-header .archive-description {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--nav-bg);
  color: rgba(255,255,255,0.4);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,252,247,0.08);
  margin-bottom: 1.5rem;
}

.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 0.75rem; }

.footer-brand svg { width: 22px; height: 22px; color: var(--teal); }

.footer-brand-name {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.footer-social a:hover { color: var(--teal-light); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,252,247,0.4);
  margin-bottom: 0.875rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col ul a {
  font-size: 13px;
  color: var(--text-tertiary);
  transition: color 0.15s;
}

.footer-col ul a:hover { color: var(--teal-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,252,247,0.25);
}

/* =========================================================
   SEARCH FORM
   ========================================================= */
.search-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.search-form input[type="search"] {
  flex: 1;
  padding: 8px 14px;
  font-size: 14px;
  border: none;
  outline: none;
  background: var(--cream);
  color: var(--text-primary);
}

.search-form button {
  padding: 8px 14px;
  background: #E1F5EE;
  border: none;
  cursor: pointer;
  color: var(--brand);
  transition: background 0.15s;
}

.search-form button:hover { background: var(--teal); color: var(--teal-deep); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .content-sidebar-wrap { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-sidebar { display: none; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .site-header .container { flex-wrap: wrap; height: auto; padding-top: 0.75rem; padding-bottom: 0.75rem; gap: 0.75rem; }
  .main-navigation { display: none; }
  .main-navigation.open { display: block; width: 100%; order: 3; }
  .main-navigation.open ul { flex-direction: column; gap: 0; }
  .main-navigation.open a { display: block; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
  .menu-toggle { display: block; }
  .header-social { display: none; }
  .header-cta { display: none; }
  .post-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .article-header .entry-title { font-size: 22px; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input[type="email"] { width: 100%; }
}
