/** Shopify CDN: Minification failed

Line 71:13 Expected identifier but found whitespace
Line 71:15 Unexpected "{"
Line 71:24 Expected ":"
Line 71:45 Expected ":"
Line 81:19 Expected identifier but found whitespace
Line 81:21 Unexpected "{"
Line 81:30 Expected ":"

**/
p, .p, body, li, span {
    font-family: 'Union' !important;
  font-weight: 400 !important;
}

ul {
  list-style: disc !important;
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
  padding-left: 1.5rem !important; /* Creates the necessary indent */
}
li {
  display: list-item !important;
  margin-bottom: 0.5rem;
  list-style-type: disc !important;
}
footer ul {
  list-style: none !important;
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
  padding-left: 0rem !important; /* Creates the necessary indent */
}
footer li {
  display: list-item !important;
  margin-bottom: 0.5rem;
  list-style-type: none !important;
}

/* NEW MENU STYLES */
.menu-item-static {
    position: static; /* Required for the mega menu to span full width */
  }

  /* Ensure the header itself is relative so the top-full works */
  .header {
    position: relative;
  }

  .mega-menu-container {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  }

  .header__menu-item .link-text {
    transition: color 0.3s ease;
  }

  /* When the menu is expanded, we want the parent to stay underlined */
  .menu-item-static:hover > .header__menu-item span:last-child {
    width: 100%;
  }

  .blog-filter li::marker, .pagination-wrapper li::marker {
    content: ""; 
  }

  /* 1. Ensure the container can grow to fit the image height */
.hero-img, 
.hero-img figure {
  height: auto !important;
  min-height: {{ section.settings.height }}vh;
}

/* 2. Scale the image so it fits the width without aggressive cropping */
.hero-img img, 
.hero-img video {
  height: auto !important;
  max-height: none !important;
  width: 100% !important;
  object-fit: contain !important; /* Changes from 'cover' to 'contain' */
  background-color: {{ section.settings.bgcolor }};
}

/* 3. Mobile specific adjustment for vertical photos */
@media (max-width: 768px) {
  .hero-img img {
    object-fit: scale-down !important;
  }
}