/* =====================
   BLOG — Archive & Single Post Styles
   Avant People brand: Charcoal #1A1A1A | Ember #E05A0A | Sand #F2EDE6 | Rule #D8D0C6
   Rule: White on Ember. Sand on Charcoal. Never Sand on Ember.
   ===================== */

/* =====================
   ARCHIVE HEADER
   ===================== */
.blog-archive-header {
  background: #1A1A1A;
  padding: 5rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.blog-archive-header h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #ffffff;
  letter-spacing: -1.5px;
  line-height: 1.05;
  max-width: 700px;
}
.blog-archive-header h1 span {
  color: #E05A0A;
}
.blog-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E05A0A;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #E05A0A;
  flex-shrink: 0;
}

/* =====================
   FEATURED HERO BAND
   Ember background — all text WHITE, never Sand
   ===================== */
.blog-hero-band {
  padding: 2rem 0 0;
  background: #1A1A1A;
}
.blog-hero-link {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: auto !important;
  grid-auto-flow: column !important;
  min-height: 360px;
  border-top: 2px solid #E05A0A;
  border-bottom: 2px solid #E05A0A;
  width: 100%;
  text-decoration: none !important;
  color: inherit !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
/* Belt-and-braces: ensure children sit in their grid columns */
.blog-hero-link > .blog-hero-geo {
  grid-column: 1;
}
.blog-hero-link > .blog-hero-content {
  grid-column: 2;
}
.blog-hero-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  text-decoration: none;
  color: inherit;
}
.blog-hero-geo {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-right: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  min-height: 360px;
}
.blog-hero-band .blog-hero-geo svg {
  width: 275px !important;
  height: 275px !important;
}
.blog-hero-content {
  background: #E05A0A;
  padding: 2.5rem;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff !important;
  min-height: 360px;
}
.blog-hero-cat {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}
.blog-hero-cat a,
.blog-hero-cat span,
.blog-hero-cat-inner,
.blog-card-cat-inner {
  display: inline-block;
  font-family: 'Ruda', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  background: #F2EDE6;
  color: #1A1A1A;
  border: 1px solid #F2EDE6;
}

.blog-hero-cat a:hover,
.blog-hero-cat span:hover,
.blog-card-cat-inner:hover {
  background: #E05A0A;
  color: #ffffff;
  border-color: #E05A0A;
}
/* Dark card category pills — force Sand bg + Charcoal text (beats any cascade) */
.blog-card-cat-inner {
  background: #F2EDE6 !important;
  color: #1A1A1A !important;
  border: 1px solid #F2EDE6 !important;
}

.blog-card-cat-inner:hover {
  background: #E05A0A !important;
  color: #ffffff !important;
  border-color: #E05A0A !important;
}

/* Sand card pill: Charcoal bg + Sand text so pill is visible against Sand card */
.blog-card-sand .blog-card-cat-inner {
  background: #1A1A1A !important;
  color: #F2EDE6 !important;
  border-color: #1A1A1A !important;
}

/* Hero band pills: scoped to .blog-hero-band so hover goes to Charcoal, not Ember */
.blog-hero-band .blog-hero-cat a,
.blog-hero-band .blog-hero-cat span {
  background: #F2EDE6 !important;
  color: #1A1A1A !important;
  border: 1px solid #F2EDE6 !important;
}

.blog-hero-band .blog-hero-cat a:hover,
.blog-hero-band .blog-hero-cat span:hover {
  background: #1A1A1A !important;
  color: #ffffff !important;
  border-color: #1A1A1A !important;
}

/* Hero band pill: on Ember bg, hover to Charcoal (not Ember) */
.blog-hero-content .blog-hero-cat-inner:hover {
  background: #1A1A1A;
  color: #ffffff;
  border-color: #1A1A1A;
}

/* Suppress any chevron pseudo-elements on category pills */
.blog-hero-cat-inner::after,
.blog-hero-cat-inner::before {
  display: none !important;
  content: none !important;
}
.blog-hero-title {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.35;
  color: #ffffff !important;
  margin-bottom: 1rem;
  flex: 1;
}
.blog-hero-excerpt {
  font-size: 15px;
  color: #ffffff !important;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.blog-hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.4);
  padding-top: 12px;
}
.blog-hero-meta span {
  font-size: 11px;
  font-weight: 400;
  color: #ffffff !important;
}
.blog-hero-author {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  font-style: italic;
  color: #ffffff !important;
}
/* Belt-and-braces: all text in the Ember hero panel must be white, never Sand */
.blog-hero-content,
.blog-hero-content p,
.blog-hero-content span,
.blog-hero-content div,
.blog-hero-content a {
  color: #ffffff !important;
}

/* =====================
   FILTER BAR
   ===================== */
.blog-filter-bar {
  padding: 2rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.blog-filter-btn {
  font-family: 'Ruda', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin: 0;
  border: 1.5px solid rgba(242,237,230,0.5) !important;
  background: transparent !important;
  color: #F2EDE6 !important;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  border-radius: 0;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.blog-filter-btn:hover {
  background: #E05A0A !important;
  border-color: #E05A0A !important;
  color: #ffffff !important;
  text-decoration: none !important;
}
.blog-filter-on,
.blog-filter-btn.blog-filter-on,
.blog-filter-btn.active,
.blog-filter-btn:focus {
  background: #E05A0A !important;
  border-color: #E05A0A !important;
  color: #ffffff !important;
}

/* =====================
   SEARCH BAR
   ===================== */
.blog-search {
  padding: 1rem 0 1.5rem;
  max-width: 480px;
}
.blog-search-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s;
}
.blog-search-form:focus-within {
  border-color: #E05A0A;
}
/* Override WP search input defaults */
.blog-search-input,
.blog-search-form input[type="search"],
.blog-search-form input[type="text"] {
  flex: 1;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #F2EDE6 !important;
  padding: 14px 16px !important;
  width: 100% !important;
  -webkit-appearance: none;
  border-radius: 0 !important;
}
.blog-search-input::placeholder,
.blog-search-form input[type="search"]::placeholder {
  color: rgba(242,237,230,0.35) !important;
  font-style: italic;
}
.blog-search-btn {
  background: #E05A0A;
  border: none;
  border-left: 0.5px solid rgba(255,255,255,0.15);
  color: #ffffff;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}
.blog-search-btn:hover {
  opacity: 0.85;
  color: #ffffff;
}

/* =====================
   MORE POSTS DIVIDER
   ===================== */
.blog-posts-label {
  padding: 1.5rem 0 1.25rem;
}
.blog-posts-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.blog-posts-eyebrow-rule {
  width: 28px;
  height: 2px;
  background: #E05A0A;
  flex-shrink: 0;
}
.blog-posts-eyebrow-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #E05A0A;
}
.blog-posts-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -1.5px;
  color: #ffffff;
  margin: 0;
  line-height: 1;
}

/* =====================
   POST CARD GRID
   ===================== */
.blog-posts {
  background: #1A1A1A;
  padding-bottom: 0;
}
.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px !important;
  padding-bottom: 4rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  /* Fade-up animation */
  opacity: 0;
  transform: translateY(28px);
  animation: cardFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
/* Stagger card animations using nth-child */
.blog-card:nth-child(1) { animation-delay: 0.05s; }
.blog-card:nth-child(2) { animation-delay: 0.12s; }
.blog-card:nth-child(3) { animation-delay: 0.19s; }
.blog-card:nth-child(4) { animation-delay: 0.26s; }
.blog-card:nth-child(5) { animation-delay: 0.33s; }
.blog-card:nth-child(6) { animation-delay: 0.40s; }
.blog-card:nth-child(7) { animation-delay: 0.47s; }
.blog-card:nth-child(8) { animation-delay: 0.54s; }
.blog-card:nth-child(9) { animation-delay: 0.61s; }
@keyframes cardFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.blog-card-sand:hover {
  box-shadow: 0 12px 32px rgba(26,26,26,0.2);
}
.blog-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none !important;
  color: inherit !important;
}
.blog-card-link:hover {
  text-decoration: none !important;
  color: inherit !important;
}
/* Suppress WordPress/Jetpack link overrides inside cards */
.blog-card-link *,
.blog-card-link *:hover,
.blog-card-link *:visited {
  text-decoration: none !important;
}
/* Restore intentional colours */
.blog-card-title-sand,
.blog-card-title-dark {
  color: #E05A0A !important;
}
.blog-card-excerpt-sand {
  color: #1A1A1A !important;
}
.blog-card-excerpt-dark {
  color: #F2EDE6 !important;
}
.blog-card-date-sand,
.blog-card-author-sand {
  color: #1A1A1A !important;
}
.blog-card-date-dark,
.blog-card-author-dark {
  color: #F2EDE6 !important;
}
.blog-card-top-rule,
.blog-card-bot-rule {
  height: 2px;
  background: #E05A0A;
  flex-shrink: 0;
}
.blog-card-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img-sand {
  background: #F2EDE6;
  border-left: 0.5px solid #1A1A1A;
  border-right: 0.5px solid #1A1A1A;
}
.blog-card-img-dark {
  background: rgba(255,255,255,0.04);
  border-left: 0.5px solid rgba(255,255,255,0.1);
  border-right: 0.5px solid rgba(255,255,255,0.1);
}
.blog-card-img--photo {
  position: relative;
  overflow: hidden;
  height: 180px;
  padding: 0;
  display: block;
}
.blog-card-img--photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img--photo img {
  transform: scale(1.03);
}
.blog-card-img-ember-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: #E05A0A;
  z-index: 2;
}
.blog-hero-geo--photo {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #1A1A1A;
  height: 360px;
}
.blog-hero-geo--photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.blog-hero-link:hover .blog-hero-geo--photo img {
  transform: scale(1.03);
}
.blog-card-body-sand {
  background: #F2EDE6;
  border-left: 0.5px solid #1A1A1A;
  border-right: 0.5px solid #1A1A1A;
  padding: 1rem 1rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-card-body-dark {
  background: rgba(255,255,255,0.04);
  border-left: 0.5px solid rgba(255,255,255,0.1);
  border-right: 0.5px solid rgba(255,255,255,0.1);
  padding: 1rem 1rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-card-cat {
  display: inline-flex;
  align-items: center;
}
/* .blog-card-cat-inner styles now in combined dark-bg pill rule above */
/* Suppress any chevron pseudo-elements on card category pills */
.blog-card-cat-inner::after,
.blog-card-cat-inner::before {
  display: none !important;
  content: none !important;
}
.blog-card-title-sand {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  color: #E05A0A;
  text-decoration: none !important;
}
.blog-card-title-dark {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  color: #E05A0A;
  text-decoration: none !important;
}
.blog-card-excerpt-sand {
  font-size: 13px;
  line-height: 1.7;
  color: #1A1A1A !important;
  flex: 1;
  text-decoration: none !important;
}
.blog-card-excerpt-dark {
  font-size: 13px;
  line-height: 1.7;
  color: #F2EDE6 !important;
  flex: 1;
  text-decoration: none !important;
}
.blog-card-foot-sand {
  background: #F2EDE6;
  border: 0.5px solid #1A1A1A;
  border-top: 1px solid #1A1A1A;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card-foot-dark {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(242,237,230,0.2);
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card-date-sand {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1A1A1A;
  text-decoration: none !important;
}
.blog-card-date-dark {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #F2EDE6 !important;
  text-decoration: none !important;
}
.blog-card-author-sand {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: #1A1A1A;
  text-decoration: none !important;
}
.blog-card-author-dark {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: #F2EDE6 !important;
  text-decoration: none !important;
}

/* No posts */
.blog-no-posts {
  background: #1A1A1A;
  padding: 5rem 3rem;
  text-align: center;
  min-height: 60vh;
}
.blog-no-posts p {
  font-size: 15px;
  color: #F2EDE6;
  line-height: 1.7;
}

/* =====================
   PAGINATION
   ===================== */
.blog-pagination {
  background: #1A1A1A;
  padding: 0 3rem 4rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.blog-pagination .page-numbers {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #F2EDE6;
  text-decoration: none;
  padding: 8px 14px;
  border: 0.5px solid rgba(255,255,255,0.2);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: #E05A0A;
  color: #ffffff;
  border-color: #E05A0A;
}

/* =====================
   SINGLE POST
   ===================== */
.post-header {
  background: #1A1A1A;
  padding: 5rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.post-header-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.post-header-date {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #E05A0A;
}
.post-header-author {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F2EDE6;
}
.post-header-cats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.post-pill-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.post-back-pill-wrap {
  padding: 1rem 0 0;
}

.post-back-pill {
  display: inline-block !important;
  width: auto !important;
  align-self: flex-start !important;
}

.post-back-pill,
.post-header-cat,
.post-header-cats a,
.post-header-cats span {
  display: inline-block;
  font-family: 'Ruda', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.post-back-pill {
  background: #E05A0A;
  color: #ffffff !important;
  border: 1px solid #E05A0A;
}

.post-back-pill:hover {
  background: #1A1A1A;
  color: #ffffff !important;
  border-color: #1A1A1A;
}

.post-header-cat,
.post-header-cats a,
.post-header-cats span {
  background: #F2EDE6;
  color: #1A1A1A !important;
  border: 1px solid #F2EDE6;
}

.post-header-cat:hover,
.post-header-cats a:hover,
.post-header-cats span:hover {
  background: #E05A0A;
  color: #ffffff !important;
  border-color: #E05A0A;
}
.post-header h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #ffffff;
  letter-spacing: -1.2px;
  line-height: 1.1;
  max-width: 860px;
}
.post-content-wrap {
  background: #1A1A1A;
  padding: 5rem 3rem;
  min-height: 60vh;
}
.post-header .section-inner,
.post-content-inner {
  max-width: 75vw;
  margin-left: auto;
  margin-right: auto;
}
.post-content-inner p {
  font-size: 15px;
  color: #F2EDE6;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.post-content-inner h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #E05A0A;
  letter-spacing: -0.5px;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.post-content-inner h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #F2EDE6;
  letter-spacing: -0.3px;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.post-content-inner ul,
.post-content-inner ol {
  font-size: 15px;
  color: #F2EDE6;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.post-content-inner blockquote {
  font-family: 'Syne', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  color: #E05A0A;
  line-height: 1.4;
  letter-spacing: -0.3px;
  margin: 2rem 0;
  border-left: 3px solid #E05A0A;
  padding-left: 1.5rem;
}
.post-content-inner a {
  color: #E05A0A;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-content-inner a:hover {
  color: #ffffff;
}
.post-content-inner img {
  max-width: 100%;
  margin: 1.5rem 0;
}
.post-footer {
  background: #1A1A1A;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid rgba(255,255,255,0.08);
}
/* .post-back-link removed — footer back link now uses .post-back-pill */
.post-cats-footer {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.post-cat-tag {
  display: inline-block;
  font-family: 'Ruda', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1A1A1A !important;
  background: #F2EDE6;
  border: 1px solid #F2EDE6;
  padding: 5px 12px;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.post-cat-tag:hover {
  background: #E05A0A;
  color: #ffffff !important;
  border-color: #E05A0A;
}

/* =====================
   POST TAGS
   ===================== */
.post-tags {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(242,237,230,0.15);
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.post-tags-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E05A0A;
  white-space: nowrap;
}
.post-tag-list {
  font-size: 13px;
  font-weight: 400;
  color: #F2EDE6;
  line-height: 1.7;
}
.post-tag-link {
  color: #F2EDE6;
  text-decoration: none;
  transition: color 0.15s;
}
.post-tag-link:hover {
  color: #E05A0A;
}
.post-tags-wrap {
  background: #1A1A1A;
  padding: 0 3rem 2rem;
}

/* =====================
   BLOG RESPONSIVE — 600px (hero reflow)
   ===================== */
@media (max-width: 600px) {
  .blog-hero-geo {
    min-height: 160px !important;
    padding: 1.5rem;
  }
  .blog-hero-geo--photo {
    height: 220px;
  }
  .blog-hero-band .blog-hero-geo svg {
    width: 120px !important;
    height: 120px !important;
  }
  .blog-hero-content {
    min-height: auto;
    padding: 1.5rem;
  }
}

/* =====================
   BLOG RESPONSIVE — 768px
   ===================== */
@media (max-width: 768px) {
  .blog-archive-header,
  .post-header {
    padding: 4rem 0 3rem;
  }
  .blog-archive-header h1,
  .post-header h1 {
    font-size: 36px;
  }
  .blog-hero-link {
    grid-template-columns: 1fr !important;
    grid-auto-flow: row !important;
  }
  .blog-hero-link > .blog-hero-geo,
  .blog-hero-link > .blog-hero-content {
    grid-column: 1 !important;
  }
  .blog-hero-geo--photo {
    height: 280px;
  }
  .blog-card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .post-content-wrap {
    padding: 3rem 1.5rem;
  }
  .post-header .section-inner,
  .post-content-inner {
    max-width: 100%;
  }
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem 1.5rem;
  }
  .post-cats-footer {
    justify-content: flex-start;
  }
  .blog-pagination {
    padding: 0 1.5rem 3rem;
    flex-wrap: wrap;
  }
}

/* =====================
   BLOG RESPONSIVE — 480px
   ===================== */
@media (max-width: 480px) {
  .blog-archive-header,
  .post-header {
    padding: 3rem 0 2.5rem;
  }
  .blog-archive-header h1,
  .post-header h1 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }
  .blog-card-grid {
    grid-template-columns: 1fr;
  }
  .post-content-wrap {
    padding: 2.5rem 1rem;
  }
  .post-footer {
    padding: 2rem 1rem;
  }
  .blog-pagination {
    padding: 0 1rem 2.5rem;
  }
  .blog-card-excerpt-sand,
  .blog-card-excerpt-dark {
    font-size: 14px;
  }
  .post-content-inner p {
    font-size: 16px;
  }
}
