/* Full-width Hero */
:root {
  --hsd-desktop-bg: 
    /* Desktop Gradient Overlay */
    linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.60) 65%, rgba(0,0,0,0) 100%), 
    /* Desktop Background Image */
url("https://service.secureoffersites.com/images/GetLibraryImage?fileNameOrId=632722") no-repeat center;
  
  --hsd-mobile-bg: 
    /* Mobile Gradient Overlay */
    linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.70) 65%, rgba(0,0,0,0.30) 100%),
    /* Mobile Background Image */
url("https://service.secureoffersites.com/images/GetLibraryImage?fileNameOrId=632721") no-repeat center;
  --hsd-hero-h1-size: 54px !important;
  --hsd-hero-text-color: white;
  --hero-hero-text-size: 16px;
}
.hsd-hero {
width:100%;
background: var(--hsd-desktop-bg);
background-size: cover;
height:auto;
padding:5vw;
}
.hsd-contentWrap {
max-width:1440px;
margin: 0 auto;
padding:32px;
}
.hsd-heroContent {
color: var(--hsd-hero-text-color);
font-size:var(--hero-hero-text-size);
max-width: 38vw;
}
.hsd-heroContent h1 {
    color: var(--hsd-hero-text-color);
    font-size: var(--hsd-hero-h1-size);
    line-height: 1.2;
    margin: 18px 0px;
    margin-bottom: 1.5rem;
}
.hsd-heroContent h1 span {
    display: block;
    font-size: 24px;
    margin: 18px 0px;
}
@media screen and (max-width: 720px) {
  .hsd-contentWrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem;
}
.hsd-heroContent {
    color: white;
    font-size: 16px;
    max-width: 100%;
    text-align: center;
    padding-top: 30vh;
}
.hsd-heroContent h1 span {
    display: block;
    font-size: 1.2rem;
    margin: 18px 0px;
}
.hsd-heroContent h1 {
    color: #fff !important;
    font-size: 2rem !important;
    line-height: 1.2;
}
  .hsd-hero {
width:100%;
background: var(--hsd-mobile-bg);
background-size: cover;
  }
}

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .hsd-location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 fixed columns */
    gap: 15px;
    max-width: 100%; /* margin: 0 auto; */
    padding:1rem;
  }
  .hsd-location-card {
    background-color: white;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    transition: box-shadow 0.3s ease;
    display: flex;
    align-items: center;
  }
  .hsd-location-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .hsd-location-card a {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    width: 100%;
    color: inherit;
  }
  .hsd-location-icon {
    width: 20px; /* Adjust size as needed */
    height: 20px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
  }
  .hsd-location-text {
    font-size: 18px;
    font-weight: 500;
  } /* Responsive adjustments */
  @media screen and (max-width: 1024px) {
    .hsd-location-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
  }
  @media screen and (max-width: 600px) {
    .hsd-location-grid {
      grid-template-columns: repeat(1, 1fr); /* 1 column on mobile */
    }
  }