/*
Theme Name: Help For Single Parents Child
Theme URI: https://helpforsingleparents.org
Description: A warm, human child theme for helpforsingleparents.org built on GeneratePress Free. Designed for real people in need of real help.
Author: helpforsingleparents.org
Template: generatepress
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: helpforsingleparents
*/

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

/* =====================================================
   CSS VARIABLES — DESIGN TOKENS
===================================================== */
:root {
  /* Colors */
  --hsp-amber:       #E8820C;
  --hsp-amber-light: #F4A83A;
  --hsp-amber-pale:  #FEF3E2;
  --hsp-teal:        #1A5C6B;
  --hsp-teal-dark:   #0F3D48;
  --hsp-teal-light:  #2A7D8F;
  --hsp-cream:       #FDF8F0;
  --hsp-white:       #FFFFFF;
  --hsp-text:        #2C2C2C;
  --hsp-text-muted:  #666666;
  --hsp-border:      #E8E0D4;
  --hsp-shadow:      rgba(26,92,107,0.12);
  --hsp-shadow-md:   rgba(26,92,107,0.20);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --gap-xs:  8px;
  --gap-sm:  16px;
  --gap-md:  32px;
  --gap-lg:  56px;
  --gap-xl:  88px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --transition: 0.28s ease;
}

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--hsp-text);
  background-color: var(--hsp-cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--hsp-teal-dark);
  font-weight: 700;
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2em; }

a {
  color: var(--hsp-teal);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--hsp-amber); }

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

/* =====================================================
   UTILITY CLASSES
===================================================== */
.hsp-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.hsp-section {
  padding: var(--gap-lg) 0;
}

.hsp-section--alt {
  background-color: var(--hsp-white);
  padding: var(--gap-lg) 0;
}

.hsp-badge {
  display: inline-block;
  background: var(--hsp-amber-pale);
  color: var(--hsp-amber);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.hsp-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.hsp-btn--primary {
  background: var(--hsp-amber);
  color: var(--hsp-white);
  border-color: var(--hsp-amber);
}
.hsp-btn--primary:hover {
  background: #c9700a;
  border-color: #c9700a;
  color: var(--hsp-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,130,12,0.35);
}

.hsp-btn--outline {
  background: transparent;
  color: var(--hsp-teal);
  border-color: var(--hsp-teal);
}
.hsp-btn--outline:hover {
  background: var(--hsp-teal);
  color: var(--hsp-white);
  transform: translateY(-2px);
}

.hsp-section-title {
  text-align: center;
  margin-bottom: var(--gap-md);
}
.hsp-section-title h2 { margin-bottom: 8px; }
.hsp-section-title p {
  color: var(--hsp-text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* =====================================================
   HEADER / NAVIGATION (GeneratePress Overrides)
===================================================== */
.site-header {
  background: var(--hsp-teal-dark) !important;
  border-bottom: 3px solid var(--hsp-amber) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18) !important;
  padding: 0 !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Site title / logo */
.site-title a,
.site-branding a {
  color: var(--hsp-white) !important;
  font-family: var(--font-display) !important;
  font-size: 1.4rem !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  line-height: 1.1 !important;
}

.site-title a:hover { color: var(--hsp-amber-light) !important; }

.site-description {
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.78rem !important;
  font-family: var(--font-body) !important;
  letter-spacing: 0.04em;
}

/* Navigation */
.main-navigation ul li a {
  color: rgba(255,255,255,0.88) !important;
  font-family: var(--font-body) !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm) !important;
  transition: all var(--transition) !important;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a {
  color: var(--hsp-amber-light) !important;
  background: rgba(255,255,255,0.08) !important;
}

/* CTA in nav */
.main-navigation ul li.nav-cta a {
  background: var(--hsp-amber) !important;
  color: var(--hsp-white) !important;
  padding: 8px 20px !important;
}
.main-navigation ul li.nav-cta a:hover {
  background: var(--hsp-amber-light) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  color: var(--hsp-white) !important;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  border-radius: var(--radius-sm) !important;
  padding: 8px 14px !important;
}

/* =====================================================
   HERO SECTION
===================================================== */
.hsp-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hsp-teal-dark);
}

.hsp-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://livingon3k.com/wp-content/uploads/2026/05/hero.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.35;
}

.hsp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(15,61,72,0.92) 0%, rgba(15,61,72,0.65) 55%, rgba(26,92,107,0.40) 100%);
}

.hsp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px;
  max-width: 680px;
  margin-left: 0;
  padding-left: max(24px, calc((100vw - 1140px)/2 + 24px));
}

.hsp-hero__eyebrow {
  display: inline-block;
  color: var(--hsp-amber-light);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1.5px solid rgba(244,168,58,0.4);
  border-radius: 50px;
}

.hsp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--hsp-white);
  line-height: 1.12;
  margin-bottom: 22px;
}

.hsp-hero__title span {
  color: var(--hsp-amber-light);
  display: block;
}

.hsp-hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}

.hsp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hsp-hero__trust {
  margin-top: 32px;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hsp-hero__trust::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--hsp-amber);
}

/* =====================================================
   QUICK HELP CATEGORIES
===================================================== */
.hsp-categories {
  padding: var(--gap-lg) 0;
  background: var(--hsp-white);
}

.hsp-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--gap-sm);
  margin-top: var(--gap-md);
}

.hsp-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px 24px;
  background: var(--hsp-cream);
  border: 2px solid var(--hsp-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--hsp-text);
  transition: all var(--transition);
  cursor: pointer;
}

.hsp-cat-card:hover {
  border-color: var(--hsp-amber);
  background: var(--hsp-amber-pale);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--hsp-shadow-md);
  color: var(--hsp-teal-dark);
}

.hsp-cat-card__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.hsp-cat-card__label {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  color: inherit;
}

/* =====================================================
   ARTICLE CARDS
===================================================== */
.hsp-articles {
  padding: var(--gap-lg) 0;
  background: var(--hsp-cream);
}

.hsp-articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: var(--gap-md);
}

.hsp-article-card {
  background: var(--hsp-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--hsp-border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.hsp-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px var(--hsp-shadow-md);
  border-color: transparent;
}

.hsp-article-card__thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--hsp-teal) 0%, var(--hsp-teal-light) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hsp-article-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.hsp-article-card__thumb-icon {
  font-size: 3rem;
  opacity: 0.6;
}

.hsp-article-card__body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hsp-article-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hsp-amber);
  margin-bottom: 8px;
}

.hsp-article-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hsp-teal-dark);
  line-height: 1.35;
  margin-bottom: 10px;
  flex: 1;
}

.hsp-article-card__title a {
  color: inherit;
  text-decoration: none;
}

.hsp-article-card__title a:hover { color: var(--hsp-amber); }

.hsp-article-card__excerpt {
  font-size: 0.9rem;
  color: var(--hsp-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.hsp-article-card__read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hsp-teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color var(--transition);
}

.hsp-article-card__read-more::after {
  content: '→';
  transition: transform var(--transition);
}

.hsp-article-card:hover .hsp-article-card__read-more {
  color: var(--hsp-amber);
}

.hsp-article-card:hover .hsp-article-card__read-more::after {
  transform: translateX(4px);
}

/* =====================================================
   TRUST / ABOUT BAND
===================================================== */
.hsp-trust-band {
  background: linear-gradient(135deg, var(--hsp-teal-dark) 0%, var(--hsp-teal) 100%);
  padding: var(--gap-lg) 0;
  color: var(--hsp-white);
}

.hsp-trust-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

.hsp-trust-band__text h2 {
  color: var(--hsp-white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.hsp-trust-band__text h2 span { color: var(--hsp-amber-light); }

.hsp-trust-band__text p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hsp-trust-band__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hsp-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}

.hsp-stat__number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--hsp-amber-light);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.hsp-stat__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}

/* =====================================================
   NEWSLETTER / CTA BAND
===================================================== */
.hsp-newsletter {
  background: var(--hsp-amber-pale);
  padding: var(--gap-lg) 0;
  border-top: 3px solid var(--hsp-amber);
  border-bottom: 3px solid var(--hsp-amber);
}

.hsp-newsletter__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hsp-newsletter__inner h2 {
  color: var(--hsp-teal-dark);
  margin-bottom: 10px;
}

.hsp-newsletter__inner p {
  color: var(--hsp-text-muted);
  margin-bottom: 28px;
}

.hsp-newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.hsp-newsletter__form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--hsp-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--hsp-white);
  color: var(--hsp-text);
  outline: none;
  transition: border-color var(--transition);
}

.hsp-newsletter__form input[type="email"]:focus {
  border-color: var(--hsp-amber);
}

.hsp-newsletter__privacy {
  font-size: 0.78rem;
  color: var(--hsp-text-muted);
  margin-top: 12px;
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background: var(--hsp-teal-dark) !important;
  color: rgba(255,255,255,0.75) !important;
  padding: 0 !important;
}

.hsp-footer {
  padding: var(--gap-lg) 0 0;
}

.hsp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gap-md);
  padding-bottom: var(--gap-md);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.hsp-footer__brand h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--hsp-white);
  margin-bottom: 12px;
}

.hsp-footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.hsp-footer__crisis {
  background: rgba(232,130,12,0.15);
  border: 1px solid rgba(232,130,12,0.4);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.hsp-footer__crisis strong { color: var(--hsp-amber-light); }

.hsp-footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hsp-amber-light);
  margin-bottom: 16px;
}

.hsp-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hsp-footer__col ul li {
  margin-bottom: 8px;
}

.hsp-footer__col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}

.hsp-footer__col ul li a:hover {
  color: var(--hsp-amber-light);
}

.hsp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.hsp-footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.hsp-footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hsp-footer__legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.hsp-footer__legal a:hover { color: var(--hsp-amber-light); }

/* =====================================================
   GENERATEPRESS CONTENT OVERRIDES
===================================================== */
.inside-article {
  background: var(--hsp-white);
  border-radius: var(--radius-md);
  padding: var(--gap-md);
  box-shadow: 0 2px 12px var(--hsp-shadow);
  margin-bottom: var(--gap-md);
}

.entry-title a { color: var(--hsp-teal-dark); }
.entry-title a:hover { color: var(--hsp-amber); }

/* Content area */
.entry-content h2,
.entry-content h3,
.entry-content h4 { color: var(--hsp-teal-dark); margin-top: 1.6em; }

.entry-content a { color: var(--hsp-amber); font-weight: 700; }
.entry-content a:hover { color: var(--hsp-teal); }

.entry-content ul, .entry-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}

.entry-content li { margin-bottom: 0.4em; }

/* Sidebar */
.widget-area .widget {
  background: var(--hsp-white);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--hsp-border);
}

.widget-area .widget-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hsp-amber);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--hsp-amber-pale);
}

/* Breadcrumbs */
.breadcrumb-trail {
  background: var(--hsp-white);
  padding: 10px 0;
  border-bottom: 1px solid var(--hsp-border);
}

.breadcrumb-trail .breadcrumbs {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 0.82rem;
  color: var(--hsp-text-muted);
}

/* =====================================================
   PAGE TEMPLATES
===================================================== */
.hsp-page-hero {
  background: linear-gradient(135deg, var(--hsp-teal-dark) 0%, var(--hsp-teal) 100%);
  padding: 60px 24px;
  text-align: center;
  color: var(--hsp-white);
}

.hsp-page-hero h1 {
  color: var(--hsp-white);
  margin-bottom: 12px;
}

.hsp-page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.hsp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
  margin-top: var(--gap-md);
}

.hsp-contact-form-wrap {
  background: var(--hsp-white);
  border-radius: var(--radius-md);
  padding: var(--gap-md);
  border: 1px solid var(--hsp-border);
}

.hsp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hsp-contact-info-item {
  background: var(--hsp-white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--hsp-border);
  border-left: 4px solid var(--hsp-amber);
}

.hsp-contact-info-item h4 {
  color: var(--hsp-teal-dark);
  margin-bottom: 6px;
  font-size: 1rem;
}

.hsp-contact-info-item p {
  font-size: 0.9rem;
  color: var(--hsp-text-muted);
  margin: 0;
}

/* Accessibility page */
.hsp-a11y-section {
  border-left: 4px solid var(--hsp-teal-light);
  padding-left: 20px;
  margin-bottom: 28px;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {
  .hsp-trust-band__inner {
    grid-template-columns: 1fr;
  }

  .hsp-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hsp-contact-grid {
    grid-template-columns: 1fr;
  }

  .hsp-newsletter__form {
    flex-direction: column;
  }

  .hsp-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .hsp-hero__content {
    padding: 60px 24px;
    max-width: 100%;
    margin-left: 0;
    padding-left: 24px;
  }
}

@media (max-width: 480px) {
  .hsp-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hsp-articles__grid {
    grid-template-columns: 1fr;
  }

  .hsp-footer__grid {
    grid-template-columns: 1fr;
  }

  .hsp-trust-band__stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */
:focus-visible {
  outline: 3px solid var(--hsp-amber);
  outline-offset: 3px;
  border-radius: 3px;
}

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

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999em;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 12px 24px;
  background: var(--hsp-amber);
  color: var(--hsp-white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0 0 var(--radius-sm) 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --hsp-amber: #B56000;
    --hsp-teal: #003D4D;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =====================================================
   FULL-WIDTH HOMEPAGE — GP OVERRIDE
   Strips out all GeneratePress content wrappers and
   padding so our custom sections go edge-to-edge.
===================================================== */
.hsp-homepage .site-content,
.hsp-homepage #content,
.hsp-homepage .content-area,
.hsp-homepage .inside-page-hero,
.hsp-homepage .hentry,
.hsp-homepage .entry-content,
.hsp-homepage .page-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  width: 100% !important;
}

.hsp-homepage .site-content .content-area {
  width: 100% !important;
}

/* Remove default GP page padding */
.hsp-homepage .inside-article {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
}

/* Remove GP container max-width on homepage sections */
.hsp-homepage-main {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* The "no posts" message */
.hsp-no-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--hsp-text-muted);
  font-size: 1.05rem;
}

/* More articles button */
.hsp-articles__more {
  text-align: center;
  margin-top: 48px;
}

/* GP sometimes adds a page title on static front page — hide it */
.hsp-homepage .page-title,
.hsp-homepage .entry-title {
  display: none !important;
}

