i sending the css script in here so I have it saved for when I remove it: /* Submenu background color */
.ast-header-break-point .main-header-bar-navigation .ast-menu-toggle .sub-menu,
.main-header-bar .main-header-bar-navigation .main-header-menu .sub-menu {
  background-color: #2E2E2E !important; /* Charcoal */
}

/* Submenu link text color */
.ast-header-break-point .main-header-bar-navigation .ast-menu-toggle .sub-menu a,
.main-header-bar .main-header-bar-navigation .main-header-menu .sub-menu a {
  color: #FFFFFF !important; /* White text */
}

/* Submenu hover color (Coral) */
.ast-header-break-point .main-header-bar-navigation .ast-menu-toggle .sub-menu a:hover,
.main-header-bar .main-header-bar-navigation .main-header-menu .sub-menu a:hover {
  color: #FF6B6B !important; /* Coral on hover */
}
/* Hover effect for the Spectra Post Grid */
.custom-hover-grid .uagb-post__inner-wrap {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Spectra Post Grid Hover Effects */
.custom-hover-grid .uagb-post__inner-wrap {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent; /* Default border color */
}

.custom-hover-grid .uagb-post__inner-wrap:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increased shadow */
    border-color: #FF6B6B; /* Coral border on hover */
}

.custom-hover-grid .uagb-post__inner-wrap:hover h2 a {
    color: #FF6B6B; /* Coral title color on hover */
}

.custom-hover-grid .uagb-post__inner-wrap:hover .uagb-post__image {
    opacity: 0.9; /* Slight fade on image */
}

/* Custom Hover Effect for Read More Button in Spectra Post Grid */
.custom-read-more-hover .uagb-post__inner-wrap .uagb-post__read-more {
    background-color: #FF6B6B; /* Coral */
    color: #FFFFFF; /* White text */
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Hover Effect for the Read More Button in Spectra Post Grid */
.custom-read-more-hover .wp-block-button__link.uagb-text-link {
    background-color: #FF6B6B; /* Coral color */
    color: #FFFFFF; /* White text */
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Hover Effect for the Read More Button in Spectra Post Grid */
.custom-read-more-hover .wp-block-button__link.uagb-text-link {
    background-color: #FF6B6B; /* Coral color */
    color: #FFFFFF; /* White text */
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Improved Hover Effect for the Read More Button in Spectra Post Grid */
.custom-read-more-hover .wp-block-button__link.uagb-text-link {
    background-color: #FF6B6B !important; /* Coral color */
    color: #FFFFFF !important; /* White text */
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.custom-read-more-hover .wp-block-button__link.uagb-text-link:hover {
    background-color: #008080 !important; /* Teal on hover */
    color: #FFFFFF !important; /* Keep text white on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3) !important; /* Drop shadow */
    transform: translateY(-3px) !important; /* Slight lift */
}

/* Contact Form Wrapper */
.millspaw-contact-form {
    background-color: #008080;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px auto;
    color: #FFFFFF;
}

/* Contact Form Heading */
.millspaw-contact-form h2, 
.millspaw-contact-form p {
    color: #FFFFFF;
    font-weight: bold;
}

/* Input Fields */
.millspaw-contact-form input[type="text"],
.millspaw-contact-form input[type="email"],
.millspaw-contact-form textarea {
    width: 100%;
    background-color: #DFF6F0;
    color: #7A7A7A;
    border: 1px solid #7A7A7A;
    padding: 12px;
    margin: 8px 0;
    border-radius: 5px;
    font-size: 16px;
}

/* Input Focus */
.millspaw-contact-form input:focus,
.millspaw-contact-form textarea:focus {
    outline: none;
    border-color: #FF6B6B;
}

/* Submit Button */
.millspaw-contact-form input[type="submit"] {
    background-color: #FF6B6B;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.millspaw-contact-form input[type="submit"]:hover {
    background-color: #1A1A2E;
    color: #DFF6F0;
}

/* Send Message Button - Base Style */
.millspaw-contact-form input[type="submit"] {
    background-color: #FF6B6B;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Style for the Contact Form Submit Button */
.millspaw-contact-form input[type="submit"],
.millspaw-contact-form button {
    background-color: #FF6B6B; /* Coral */
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover Effect - Lift and Shadow */
.millspaw-contact-form input[type="submit"]:hover,
.millspaw-contact-form button:hover {
    transform: translateY(-5px); /* Lift */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Drop shadow */
    background-color: #1A1A2E; /* Deep Navy */
    color: #DFF6F0; /* Light Mint */
}

/* Make sure the button is displayed as a block to center it */
.millspaw-contact-form input[type="submit"],
.millspaw-contact-form button {
    display: inline-block;
}

/* Fade In Upward Motion Animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

/* Staggered Animation for CTA Button */
.fade-up.button {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Spectra Button Hover Effect */
.uagb-buttons-repeater .wp-block-button__link {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.uagb-buttons-repeater .wp-block-button__link:hover {
  transform: scale(1.05); /* Slightly grow the button */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}
/* Improved Minimal Fade-In Effect */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
}
/* Sticky Navbar Base Styling */
.ast-primary-header-bar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
    padding-top: 40px; /* Maintain top padding */
    padding-bottom: 10px; /* Reduced bottom padding */
}

/* Sticky Navbar when Scrolled */
.ast-primary-header-bar.scrolled {
    background-color: #333; /* Change to desired color */
    padding-top: 50px; /* Maintain top padding */
    padding-bottom: 10px; /* Reduced bottom padding when scrolled */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}
/* Ensure body does not push footer space */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* Scroll Indicator Styling */
#scrollIndicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 6px; /* Adjust the height as needed */
    background-color: #008080; /* Teal color */
    border-radius: 3px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    z-index: 9999; /* Ensure it stays on top */
    transition: width 0.2s ease;
}
/* Enhanced Footer Styling */
.site-footer {
    background: linear-gradient(135deg, #1A1A2E, #333333); /* Darker gradient */
    color: #DFF6F0; /* Light text color */
    padding: 40px 20px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

/* Footer Link Styling */
.site-footer a {
    color: #FF6B6B; /* Coral link color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #008080; /* Teal on hover */
    text-decoration: underline;
}

/* Footer Logo and Text Alignment */
.site-footer .footer-logo,
.site-footer .footer-text {
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle;
}

.site-footer .footer-logo img {
    max-height: 60px;
}

/* Footer Navigation */
.site-footer nav {
    margin: 20px 0;
    text-align: center;
}

.site-footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer nav ul li {
    display: inline-block;
    margin: 0 15px;
}

.site-footer nav ul li a {
    color: #DFF6F0; /* Light text color */
    font-weight: bold;
}

.site-footer nav ul li a:hover {
    color: #FF6B6B; /* Coral on hover */
}

/* Footer Contact Info */
.site-footer .footer-contact {
    margin: 15px 0;
    text-align: center;
}

/* Copyright Text */
.site-footer .copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #B0BEC5; /* Soft gray */
}

/* Footer Social Icons */
.site-footer .footer-social-icons {
    margin: 10px 0;
    text-align: center;
}

.site-footer .footer-social-icons a {
    color: #DFF6F0;
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s ease;
}

.site-footer .footer-social-icons a:hover {
    color: #FF6B6B;
}

/* Footer Border on Top */
.site-footer {
    border-top: 4px solid #FF6B6B; /* Coral border to define footer */
}
/* Fixing Anchor Overshoot with Sticky Header */
:target::before {
    content: "";
    display: block;
    height: 80px; /* Adjust to match your header height */
    margin-top: -80px; /* Same value as height */
}

/* Smooth Scrolling for Anchor Links */
html {
    scroll-behavior: smooth;
}
/* Base hover styling for the service card */
.service-hover-card {
  padding: 20px;
  border: 2px solid transparent !important;  /* Override inline border:none */
  background-color: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border-radius: 15px; /* Match your existing rounded corners */
}

.service-hover-card:hover {
  border-color: #FF6B6B !important;  /* Force the coral border to show */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
/* Image sizing inside the card */
.service-hover-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

/* Optional: Button hover effect */
.service-hover-card .wp-block-button__link {
  background-color: #FF6B6B;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.service-hover-card .wp-block-button__link:hover {
  background-color: #008080; /* Teal */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
/* Optional: Heading color on hover */
.service-hover-card:hover h3,
.service-hover-card:hover h2 {
  color: #FF6B6B;
}

/* Global Button Hover Effect */
.btn-hover-style .wp-block-button__link {
  background-color: #FF6B6B;
  color: #FFFFFF;
  border-radius: 4px;
  padding: 8px 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-hover-style .wp-block-button__link:hover {
  background-color: #008080; /* Teal */
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.service-hover-card h3 {
  transition: color 0.3s ease;
}

.service-hover-card:hover h3 {
  color: #FF6B6B !important; /* Coral */
}
.service-hover-card ul {
  margin-left: revert !important;
}
.performance-hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 3px solid transparent !important; /* Force base border to exist */
  border-style: solid !important;           /* Override inline border-style:none */
  border-width: 2px !important;             /* Override inline border-width:0px */
  border-radius: 12px;
  background-color: #ffffff;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.performance-hover-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: #FF6B6B !important; /* Coral border on hover */
}
.service-hover-card h4 {
  transition: color 0.3s ease;
}

.service-hover-card:hover h4 {
  color: #FF6B6B !important; /* Coral */
}
.service-hover-card ul {
  margin-left: revert !important;
}
@media only screen and (max-width: 767px) {
  .service-hover-card {
    padding: 16px !important;
    margin-bottom: 24px;
  }

  .service-hover-card img,
  .performance-hover-card img {
    max-width: 120px;
    height: auto;
    margin: 0 auto 16px auto;
    display: block;
  }

  .service-hover-card p,
  .performance-hover-card p {
    font-size: 15px;
    line-height: 1.5;
  }

  .wp-block-button__link {
    margin-top: 16px !important;
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Force footer gradient on mobile */
  .site-footer {
    background: linear-gradient(135deg, #1A1A2E, #333333) !important;
    padding: 30px 16px;
    font-size: 14px;
    text-align: center;
  }

}
@media only screen and (max-width: 767px) {
  html:not([data-block-editor="true"]) .wp-block-columns {
    flex-direction: column !important;
  }

  html:not([data-block-editor="true"]) .wp-block-column {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
    margin-bottom: 24px;
  }
}


  html:not([data-block-editor="true"]) .wp-block-column {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
    margin-bottom: 24px;
  }
}
/* Submenu background color */
.ast-header-break-point .main-header-bar-navigation .ast-menu-toggle .sub-menu,
.main-header-bar .main-header-bar-navigation .main-header-menu .sub-menu {
  background-color: #2E2E2E !important; /* Charcoal */
}

/* Submenu link text color */
.ast-header-break-point .main-header-bar-navigation .ast-menu-toggle .sub-menu a,
.main-header-bar .main-header-bar-navigation .main-header-menu .sub-menu a {
  color: #FFFFFF !important; /* White text */
}

/* Submenu hover color (Coral) */
.ast-header-break-point .main-header-bar-navigation .ast-menu-toggle .sub-menu a:hover,
.main-header-bar .main-header-bar-navigation .main-header-menu .sub-menu a:hover {
  color: #FF6B6B !important; /* Coral on hover */
}

/* Hover effect for the Spectra Post Grid */
.custom-hover-grid .uagb-post__inner-wrap {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Spectra Post Grid Hover Effects */
.custom-hover-grid .uagb-post__inner-wrap {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}

.custom-hover-grid .uagb-post__inner-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: #FF6B6B;
}

.custom-hover-grid .uagb-post__inner-wrap:hover h2 a {
    color: #FF6B6B;
}

.custom-hover-grid .uagb-post__inner-wrap:hover .uagb-post__image {
    opacity: 0.9;
}

/* Read More Button Hover */
.custom-read-more-hover .wp-block-button__link.uagb-text-link {
    background-color: #FF6B6B !important;
    color: #FFFFFF !important;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.custom-read-more-hover .wp-block-button__link.uagb-text-link:hover {
    background-color: #008080 !important;
    color: #FFFFFF !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3) !important;
    transform: translateY(-3px) !important;
}

/* Contact Form */
.millspaw-contact-form {
    background-color: #008080;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px auto;
    color: #FFFFFF;
}
.millspaw-contact-form h2, 
.millspaw-contact-form p {
    color: #FFFFFF;
    font-weight: bold;
}
.millspaw-contact-form input[type="text"],
.millspaw-contact-form input[type="email"],
.millspaw-contact-form textarea {
    width: 100%;
    background-color: #DFF6F0;
    color: #7A7A7A;
    border: 1px solid #7A7A7A;
    padding: 12px;
    margin: 8px 0;
    border-radius: 5px;
    font-size: 16px;
}
.millspaw-contact-form input:focus,
.millspaw-contact-form textarea:focus {
    outline: none;
    border-color: #FF6B6B;
}
.millspaw-contact-form input[type="submit"] {
    background-color: #FF6B6B;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.millspaw-contact-form input[type="submit"]:hover {
    background-color: #1A1A2E;
    color: #DFF6F0;
}
/* === STICKY HEADER & DROPDOWN MENU === */
.ast-primary-header-bar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
}

/* Sticky full dropdown menu on mobile */
.ast-header-break-point .main-header-bar-navigation {
  position: fixed !important;
  top: 185px !important; /* Adjust based on your header height */
  left: 0;
  width: 100vw;
  z-index: 9997;
  background-color: #2E2E2E !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Dropdown menu links */
.ast-header-break-point .main-header-bar-navigation .main-header-menu > li > a {
  color: #FFFFFF !important;
  padding: 16px 20px;
  display: block;
  background-color: #2E2E2E !important;
}

/* Hover color */
.ast-header-break-point .main-header-bar-navigation .main-header-menu > li > a:hover {
  color: #FF6B6B !important;
}

/* === FIX SUBMENU FLOATING ABOVE FULL MENU === */
/* Hide submenus by default on mobile */
.ast-header-break-point .main-header-bar-navigation .menu-item-has-children > .sub-menu {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  position: absolute !important;
}

/* Show submenu when toggle activated */
.ast-header-break-point .main-header-bar-navigation .menu-item-has-children.ast-submenu-expanded > .sub-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  background-color: #2E2E2E !important;
  z-index: 9999;
}

/* Submenu link styling */
.ast-header-break-point .main-header-bar-navigation .sub-menu a {
  color: #FFFFFF !important;
  padding: 12px 20px;
  display: block;
  background-color: #2E2E2E !important;
}

.ast-header-break-point .main-header-bar-navigation .sub-menu a:hover {
  color: #FF6B6B !important;
}
/* Force solid background on mobile header for all pages */
@media (max-width: 768px) {
  .ast-primary-header-bar {
    background-color: #2E2E2E !important; /* Charcoal background */
    transition: all 0.3s ease;
  }

  body:not(.home) .ast-primary-header-bar {
    background-color: #2E2E2E !important;
  }
}
/* Fix for desktop submenu white background */
.main-header-bar .main-header-bar-navigation .main-header-menu .sub-menu {
  background-color: #2E2E2E !important; /* Charcoal or your desired dark color */
}

/* Submenu link styling on desktop */
.main-header-bar .main-header-bar-navigation .main-header-menu .sub-menu li a {
  color: #FFFFFF !important;  /* White text */
  background-color: #2E2E2E !important; /* Same as background for smoothness */
}

/* Submenu link hover effect */
.main-header-bar .main-header-bar-navigation .main-header-menu .sub-menu li a:hover {
  color: #FF6B6B !important; /* Coral hover color */
}
/* === JOB LISTING & JOB ARCHIVE PAGES ONLY === */
body.single-job_listing,
body.post-type-archive-job_listing {
  --mlspw-header-h: 88px; /* adjust to match your actual sticky header height */
}

/* Solid header background on job pages (all header rows) */
body.single-job_listing .site-header,
body.post-type-archive-job_listing .site-header,
body.single-job_listing .ast-primary-header-bar,
body.post-type-archive-job_listing .ast-primary-header-bar,
body.single-job_listing .main-header-bar,
body.post-type-archive-job_listing .main-header-bar,
body.single-job_listing .ast-above-header-wrap,
body.post-type-archive-job_listing .ast-above-header-wrap,
body.single-job_listing .ast-below-header-wrap,
body.post-type-archive-job_listing .ast-below-header-wrap {
  background-color: #2E2E2E !important;  /* swap with Astra var if needed */
  backdrop-filter: none !important;
}

/* Extra top padding so content clears sticky header */
body.single-job_listing.ast-transparent-header #content,
body.post-type-archive-job_listing.ast-transparent-header #content,
body.single-job_listing #content,
body.post-type-archive-job_listing #content,
body.single-job_listing .site-content,
body.post-type-archive-job_listing .site-content,
body.single-job_listing .site-content > .ast-container,
body.post-type-archive-job_listing .site-content > .ast-container,
body.single-job_listing .site-content > .ast-container > .site-main,
body.post-type-archive-job_listing .site-content > .ast-container > .site-main {
  padding-top: calc(var(--mlspw-header-h) + 0px) !important; /* +20px gives breathing room */
}

/* Keep menus above content */
body.single-job_listing .site-header,
body.post-type-archive-job_listing .site-header { z-index: 9999; }
body.single-job_listing .main-header-menu .sub-menu,
body.post-type-archive-job_listing .main-header-menu .sub-menu { z-index: 10000; }

/* Mobile breakpoint adjustments */
@media (max-width: 921px) {
  body.single-job_listing .site-content,
  body.post-type-archive-job_listing .site-content {
    padding-top: calc(var(--mlspw-header-h) + 8px) !important;
  }
}
/* === BLOG POSTS ONLY (match job page header + spacing) === */
body.single-post {
  --mlspw-header-h: 88px; /* match the value you used on job pages */
}

/* Make the header solid on blog posts */
body.single-post .site-header,
body.single-post .ast-primary-header-bar,
body.single-post .main-header-bar,
body.single-post .ast-above-header-wrap,
body.single-post .ast-below-header-wrap {
  /* use your Astra global header color so it matches site-wide */
  background-color: var(----ast-global-color-2, #2E2E2E) !important;
  backdrop-filter: none !important;
  z-index: 9999;
}

/* Ensure content doesn't slide under the sticky header */
body.single-post #content,
body.single-post .site-content,
body.single-post .site-content > .ast-container,
body.single-post .site-content > .ast-container > .site-main {
  /* use same offset you settled on for jobs */
  padding-top: calc(var(--mlspw-header-h) + 0px) !important;
}

/* Keep dropdowns above header if needed */
body.single-post .main-header-menu .sub-menu { z-index: 10000; }

/* Mobile tweak (Astra's breakpoint) */
@media (max-width: 921px) {
  body.single-post .site-content,
  body.single-post .site-content > .ast-container,
  body.single-post .site-content > .ast-container > .site-main {
    padding-top: calc(var(--mlspw-header-h) + 8px) !important;
  }
}
/* Let the gradient from .site-footer show through on all inner footer wrappers */
.ast-builder-footer,
.site-footer .ast-footer-wrap,
.site-footer .ast-container,
.site-primary-footer-wrap,
.site-footer .ast-builder-grid-row-container,
.site-footer .ast-builder-grid-row,
.site-footer .ast-footer-copyright,
.site-footer .widget,
.site-footer .wp-block-group,
.site-footer .wp-block-group__inner-container {
  background: transparent !important;
  box-shadow: none !important;
}

/* Remove any accidental rounded corners or borders that frame the "box" look */
.site-footer .wp-block-group,
.site-footer .ast-container {
  border: 0 !important;
  border-radius: 0 !important;
}

/* Ensure full-bleed gradient on mobile too */
@media (max-width: 767px) {
  .site-footer,
  .site-footer .ast-container,
  .site-footer .ast-builder-grid-row-container {
    padding-left: 16px;
    padding-right: 16px;
    background-clip: padding-box; /* keeps gradient edges clean */
  }
}
/* Mobile: shrink Why Millspaw PNG icons, keep desktop unchanged */
@media (max-width: 921px) {
  /* If you added the class to the SECTION only */
  .why-millspaw img {
    width: 150px !important;
    max-width: 150px !important;
    height: auto !important;
  }

  /* If you added the class directly on the IMAGE blocks */
  img.why-millspaw-icon {
    width: 80px !important;
    max-width: 80px !important;
    height: auto !important;
  }
}
/* Mobile only: scale down Millspaw hero logo */
@media (max-width: 767px) {
  .hero-millspaw-logo img {
    max-width: 150px !important; /* adjust size for mobile */
    height: auto !important;
    display: block;
    margin: 0 auto; /* center on mobile */
  }
}

