/*
Theme Name: Green Budget Lab
Theme URI: https://greenbudgetlab.com
Author: Green Budget Lab
Author URI: https://greenbudgetlab.com
Description: A research-led sustainability blog theme with warm earthy tones, Playfair Display headings, and clean card-based layouts.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: green-budget-lab
Tags: blog, sustainability, eco, clean, minimal
*/

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

/* =============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================= */
:root {
  --background: hsl(45, 38%, 89%);
  --foreground: hsl(40, 6%, 10%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(40, 6%, 10%);
  --card-dark: hsl(0, 0%, 17%);
  --card-dark-foreground: hsl(0, 0%, 95%);
  --primary: hsl(39, 56%, 51%);
  --primary-foreground: hsl(40, 6%, 10%);
  --secondary: hsl(106, 23%, 33%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(45, 20%, 92%);
  --muted-foreground: hsl(40, 6%, 40%);
  --border: hsl(40, 10%, 80%);
  --footer-bg: hsl(0, 0%, 16%);
  --footer-fg: hsl(0, 0%, 85%);
  --radius: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  text-wrap: balance;
  color: var(--foreground);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
}

p {
  line-height: 1.75;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container-custom {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container-custom {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-custom {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-spacing {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .section-spacing {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .section-spacing {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

/* Grid helpers */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  line-height: 1;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: hsl(39, 56%, 44%);
  color: var(--primary-foreground);
}

.btn-secondary {
  background-color: var(--foreground);
  color: var(--background);
}

.btn-secondary:hover {
  background-color: hsl(40, 6%, 22%);
  color: var(--background);
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 2px solid var(--foreground);
}

.btn-outline:hover {
  background-color: var(--foreground);
  color: var(--background);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* =============================================
   CARD STYLES
   ============================================= */
.card {
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.08);
}

.card-dark {
  background-color: var(--card-dark);
  color: var(--card-dark-foreground);
}

.card-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

/* =============================================
   BADGES / TAGS
   ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.badge-dark {
  background-color: rgba(0,0,0,0.85);
  color: #fff;
}

.badge-secondary-light {
  background-color: hsla(106, 23%, 33%, 0.1);
  color: var(--secondary);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(235, 224, 207, 0.95);
  border-bottom: 1px solid rgba(180, 165, 140, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .site-header .header-inner {
    height: 5rem;
  }
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo .logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--secondary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.site-logo:hover .logo-icon {
  transform: scale(1.05);
}

.site-logo .logo-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--foreground);
  display: none;
}

@media (min-width: 640px) {
  .site-logo .logo-text {
    display: block;
  }
}

/* Primary Navigation */
.primary-nav {
  display: none;
}

@media (min-width: 1024px) {
  .primary-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.primary-nav a {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(30, 25, 20, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.current-menu-item {
  color: var(--foreground);
  background-color: var(--muted);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-actions .btn-contact {
  display: none;
}

@media (min-width: 768px) {
  .header-actions .btn-contact {
    display: inline-flex;
  }
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  transition: background 0.2s;
}

.mobile-menu-toggle:hover {
  background-color: var(--muted);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.mobile-nav-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--card);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}

.mobile-nav-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  padding: 0.25rem;
  margin-bottom: 1rem;
}

.mobile-nav-panel a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(30, 25, 20, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-nav-panel a:hover {
  color: var(--foreground);
  background-color: var(--muted);
}

.mobile-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  background-color: var(--background);
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 7rem 0;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: hsla(106, 23%, 33%, 0.1);
  color: var(--secondary);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.hero-title {
  max-width: 52rem;
  margin-bottom: 1.5rem;
}

.hero-title .text-accent {
  color: var(--secondary);
  font-style: italic;
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.375rem;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

/* =============================================
   FEATURED ARTICLE
   ============================================= */
.featured-article-card {
  position: relative;
  height: 500px;
  border-radius: 1.5rem;
  overflow: hidden;
  display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
  text-decoration: none;
}

@media (min-width: 768px) {
  .featured-article-card {
    height: 600px;
  }
}

.featured-article-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.featured-article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-article-card:hover img {
  transform: scale(1.05);
}

.featured-article-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.featured-article-badges {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.featured-article-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

@media (min-width: 768px) {
  .featured-article-content {
    padding: 3rem;
  }
}

.featured-article-content h3 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.featured-article-content .excerpt {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  max-width: 40rem;
}

.featured-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
  transition: gap 0.2s ease;
  text-decoration: none;
}

.featured-article-card:hover .featured-read-link {
  gap: 0.75rem;
}

/* Section headers row */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-view-all {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.section-view-all:hover {
  text-decoration: underline;
}

/* =============================================
   STATS / MATH SECTION
   ============================================= */
.stats-section {
  background-color: var(--background);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.stat-card {
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
}

.stat-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  background-color: hsla(39, 56%, 51%, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.stat-icon-wrap svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.stat-value {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.stat-label {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.stat-description {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Stat card variants */
.stat-card-light {
  background-color: var(--card);
  color: var(--card-foreground);
}

.stat-card-dark {
  background-color: var(--card-dark);
  color: var(--card-dark-foreground);
}

.stat-card-green {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.stat-card-green .stat-value {
  color: #fff;
}

/* =============================================
   ARTICLE CARDS
   ============================================= */
.article-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .article-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.article-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.article-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}

.article-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-card-thumb img {
  transform: scale(1.05);
}

.article-card-thumb .badge-wrap {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.article-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.article-meta svg {
  width: 1rem;
  height: 1rem;
}

.article-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.article-card:hover .article-card-title {
  color: var(--primary);
}

.article-card-excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(180, 165, 140, 0.5);
  margin-top: auto;
}

.article-card-author {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--card-foreground);
}

.article-card-arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.article-card:hover .article-card-arrow {
  transform: translateX(4px);
}

/* =============================================
   LATEST ANALYSIS SECTION
   ============================================= */
.latest-analysis-section {
  background-color: hsla(45, 20%, 92%, 0.3);
}

/* =============================================
   NEWSLETTER SECTION
   ============================================= */
.newsletter-section {
  background-color: var(--footer-bg);
  color: var(--footer-fg);
}

.newsletter-icon-wrap {
  width: 4rem;
  height: 4rem;
  background-color: hsla(39, 56%, 51%, 0.2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.newsletter-icon-wrap svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.newsletter-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto 1rem;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  height: 3rem;
  padding: 0 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
  background-color: rgba(255,255,255,0.1);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-input:focus {
  border-color: var(--primary);
  background-color: rgba(255,255,255,0.15);
}

.newsletter-disclaimer {
  font-size: 0.875rem;
  opacity: 0.6;
  text-align: center;
}

.newsletter-disclaimer a {
  text-decoration: underline;
}

.newsletter-disclaimer a:hover {
  opacity: 1;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-fg);
}

.footer-inner {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .footer-inner {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--secondary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.footer-logo-text {
  font-weight: 600;
  font-size: 1.125rem;
  color: #fff;
}

.footer-tagline {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.65;
  max-width: 20rem;
  margin-bottom: 1.5rem;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email:hover {
  color: #fff;
}

.footer-email svg {
  width: 1rem;
  height: 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

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

.footer-social-link svg {
  width: 1rem;
  height: 1rem;
}

.footer-col-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  display: block;
  width: 100%;
  font-size: 0.875rem;
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  color: #fff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  opacity: 0.7;
}

.footer-bottom .tagline-italic {
  font-style: italic;
}

/* =============================================
   PAGE BANNER (inner pages)
   ============================================= */
.page-banner {
  background-color: var(--background);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.page-banner h1 {
  margin-bottom: 0.75rem;
}

.page-banner .subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 40rem;
}

/* =============================================
   ARCHIVE / BLOG LISTING
   ============================================= */
.archive-section {
  padding: 4rem 0 6rem;
  background-color: var(--background);
}

/* =============================================
   SINGLE POST / ARTICLE
   ============================================= */
.single-article {
  padding: 3rem 0 6rem;
}

.article-hero-image {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.article-header .article-meta {
  margin-bottom: 1.25rem;
}

.article-header h1 {
  margin-bottom: 1rem;
  font-size: clamp(1.875rem, 5vw, 3rem);
}

.article-header .article-excerpt {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.article-author-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.article-author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
}

.article-author-name {
  font-weight: 700;
  font-size: 0.9375rem;
}

.article-author-bio {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Article body content */
.article-body {
  max-width: 48rem;
}

.article-body p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: var(--card-foreground);
  line-height: 1.8;
}

.article-body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.article-body h3 {
  font-size: 1.375rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  font-size: 1.125rem;
  color: var(--card-foreground);
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-body img {
  width: 100%;
  border-radius: var(--radius);
  margin: 2rem 0 0.5rem;
}

.article-body figcaption {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.article-body blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--primary);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--foreground);
  background-color: hsla(39, 56%, 51%, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Lab Verdict box */
.lab-verdict {
  margin-top: 3rem;
  background-color: var(--footer-bg);
  color: var(--footer-fg);
  border-radius: 1.25rem;
  padding: 2rem;
  border-top: 4px solid var(--primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.lab-verdict h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* =============================================
   ARCHIVE TABLE (article data tables)
   ============================================= */
.data-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--card);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.data-table th {
  background-color: var(--muted);
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--card-foreground);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:nth-child(even) {
  background-color: hsla(45, 20%, 92%, 0.3);
}

/* =============================================
   ABOUT / STATIC PAGES
   ============================================= */
.page-content {
  padding: 4rem 0 6rem;
  background-color: var(--background);
}

.page-content-inner {
  max-width: 48rem;
}

.page-content p {
  font-size: 1.125rem;
  color: var(--card-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.page-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.page-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-content ul li {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  color: var(--card-foreground);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-form-wrap {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background-color: var(--background);
  color: var(--foreground);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-control:focus {
  border-color: var(--primary);
}

textarea.form-control {
  resize: vertical;
  min-height: 8rem;
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem;
  pointer-events: none;
}

.cookie-banner-inner {
  max-width: 64rem;
  margin: 0 auto;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  pointer-events: all;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-banner p {
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.6;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* =============================================
   SCROLL TO TOP BUTTON
   ============================================= */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 40;
  width: 3rem;
  height: 3rem;
  background-color: var(--foreground);
  color: var(--background);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

.scroll-top-btn.visible {
  display: flex;
}

.scroll-top-btn:hover {
  background-color: hsl(40, 6%, 22%);
  transform: translateY(-2px);
}

.scroll-top-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* =============================================
   UTILITY: SVG ICONS INLINE
   ============================================= */
.icon {
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =============================================
   WORDPRESS CORE (alignments, captions)
   ============================================= */
.wp-block-image img {
  border-radius: var(--radius);
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption-text,
.wp-block-image figcaption {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--foreground);
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.pagination .current,
.pagination a:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* Screen reader text */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* =============================================
   ARTICLE DARK HERO
   ============================================= */
.article-hero-dark {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: hsl(40,6%,8%);
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.70) 50%,
    rgba(0,0,0,0.88) 100%
  );
  z-index: 1;
}

.article-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 56rem;
  width: 100%;
  padding-top: 6rem;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.article-back-link:hover {
  color: #fff;
}

.article-hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.article-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
}

.article-hero-meta-item svg {
  flex-shrink: 0;
}

/* =============================================
   ARTICLE CONTENT WRAPPER
   ============================================= */
.article-content-wrap {
  background-color: var(--background);
  padding: 3rem 0 5rem;
}

.article-content-box {
  max-width: 52rem;
  margin: 0 auto;
}

/* =============================================
   TABLE OF CONTENTS
   ============================================= */
.article-toc {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}

.article-toc-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.article-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-toc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.article-toc-list li::before {
  content: '·';
  color: var(--primary);
  font-weight: 700;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.article-toc-list a {
  font-size: 0.9375rem;
  color: var(--foreground);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

.article-toc-list a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* =============================================
   ARTICLE BODY CONTENT
   ============================================= */
.article-body {
  color: var(--card-foreground);
}

.article-body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--card-foreground);
}

.article-body h2 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--foreground);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}

.article-body h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--foreground);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  font-size: 1.0625rem;
  color: var(--card-foreground);
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.article-body li {
  margin-bottom: 0.5rem;
  line-height: 1.75;
}

.article-body img {
  width: 100%;
  border-radius: var(--radius);
  margin: 1.75rem 0 0.5rem;
}

.article-body figcaption,
.article-body .wp-caption-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.article-body blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--primary);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--foreground);
  background-color: hsla(39,56%,51%,0.06);
  border-radius: 0 0.75rem 0.75rem 0;
}

/* Strong text */
.article-body strong { font-weight: 700; }

/* =============================================
   LAB VERDICT BOX
   (Add this in post content using a Custom HTML block:
    <div class="lab-verdict-box">
      <div class="lab-verdict-title">⊙ Lab Verdict: Your Verdict Title</div>
      <p>Your verdict text here.</p>
      <span class="lab-verdict-badge">Estimated Impact: $7,100 over 5 years</span>
    </div>
   )
   ============================================= */
.lab-verdict-box,
.article-body .lab-verdict-box {
  background-color: hsl(40,6%,13%);
  color: hsl(0,0%,90%);
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
  border: 1.5px solid var(--primary);
}

.lab-verdict-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lab-verdict-box p {
  color: hsl(0,0%,85%) !important;
  font-size: 1rem !important;
  margin-bottom: 1rem !important;
}

.lab-verdict-badge {
  display: inline-block;
  background-color: hsla(39,56%,51%,0.15);
  color: var(--primary);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid hsla(39,56%,51%,0.4);
}

/* =============================================
   ARTICLE TAGS
   ============================================= */
.article-tags {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.article-tags-label {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--foreground);
  margin-right: 0.25rem;
}

.article-tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--muted);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--foreground);
  transition: background 0.2s;
}

.article-tag:hover {
  background: var(--border);
}

/* =============================================
   AUTHOR CARD
   ============================================= */
.author-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.author-card-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: var(--secondary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-card-info {
  flex: 1;
}

.author-card-label {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--foreground);
  margin-bottom: 0.375rem !important;
  line-height: 1.4 !important;
}

.author-card-bio {
  font-size: 0.875rem !important;
  color: var(--muted-foreground) !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

/* =============================================
   ARTICLE SIMPLE HEADER (replaces dark hero)
   ============================================= */
.article-simple-header {
  background-color: var(--background);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}

.article-back-link-light {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted-foreground);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}

.article-back-link-light:hover {
  color: var(--foreground);
}

.article-simple-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  max-width: 52rem;
}

.article-simple-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.article-simple-meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
}

/* =============================================
   SINGLE POST — FULL WIDTH DARK HEADER
   ============================================= */
.single-header {
  width: 100%;
  background-color: hsl(40,6%,10%);
  padding: 3rem 0 3.5rem;
}

.single-header-inner {
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .single-header-inner {
    padding: 0 2rem;
  }
}

.single-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.single-back-link:hover {
  color: rgba(255,255,255,0.9);
}

.single-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.single-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 500;
}

/* =============================================
   SINGLE POST — CONTENT AREA
   Full width wrapper, centered article column
   ============================================= */
.single-content-wrap {
  width: 100%;
  background-color: var(--background);
  padding: 3rem 0 5rem;
}

/* The centered article column — space on sides for future ads */
.single-article-col {
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .single-article-col {
    padding: 0 2rem;
  }
}

/* Allow Spectra full-width blocks to break out of the column */
.single-article-col .wp-block-cover,
.single-article-col .wp-block-group.alignfull,
.single-article-col .alignfull,
.single-article-col .alignwide {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* =============================================
   FIX: Remove old conflicting single styles
   ============================================= */
.article-simple-header {
  display: none !important;
}

/* =============================================
   FORCE FULL WIDTH ON SINGLE POST
   Overrides any Hostinger/WordPress wrapper divs
   ============================================= */

/* Target any wrapper WordPress or Hostinger adds */
.single #page,
.single #content,
.single #primary,
.single #main,
.single .site-content,
.single .content-area,
.single .entry-content,
.single .post-content,
.single .wp-site-blocks,
.single main,
body.single {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  float: none !important;
}

/* Force the single header full width */
.single-header {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  transform: translateX(-50%) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Simpler approach — just use negative margins to break out */
.single-header,
.single-content-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* =============================================
   SINGLE POST — NUCLEAR FULL WIDTH FIX
   Works regardless of what wrapper Hostinger adds
   ============================================= */

/* Kill any width restrictions on single post wrappers */
body.gbl-single-fullwidth,
body.gbl-single-fullwidth #page,
body.gbl-single-fullwidth #wrapper,
body.gbl-single-fullwidth #content,
body.gbl-single-fullwidth #primary,
body.gbl-single-fullwidth .hfeed,
body.gbl-single-fullwidth .site,
body.gbl-single-fullwidth .site-content,
body.gbl-single-fullwidth .content-area {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  display: block !important;
}

/* Hide sidebars completely on single posts */
body.gbl-single-fullwidth #secondary,
body.gbl-single-fullwidth .widget-area,
body.gbl-single-fullwidth aside {
  display: none !important;
}

/* Make single header span full viewport */
body.gbl-single-fullwidth .single-header {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  left: auto !important;
  transform: none !important;
  box-sizing: border-box !important;
}

/* Make single content wrap full width */
body.gbl-single-fullwidth .single-content-wrap {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

/* Keep the inner article column centered */
body.gbl-single-fullwidth .single-article-col {
  max-width: 52rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

/* Keep single header inner centered */
body.gbl-single-fullwidth .single-header-inner {
  max-width: 52rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* =============================================
   DIRECT FIX — single-article-col centering
   ============================================= */
.single-article-col {
  display: block !important;
  width: 100% !important;
  max-width: 52rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  float: none !important;
  box-sizing: border-box !important;
}

.single-content-wrap {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.single-header {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.single-header-inner {
  display: block !important;
  width: 100% !important;
  max-width: 52rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  box-sizing: border-box !important;
}
