@layer blocks {
  .store-hero {
    background: var(--theme-surface-secondary);
  }
  .store-hero__inner {
    box-sizing: content-box;
    margin-inline: auto;
    max-width: 100%;
    padding-inline: 1.5rem;
  }
  @media (min-width: 768px) {
    .store-hero__inner {
      padding-inline: 3rem;
    }
  }
  @media (min-width: 1024px) {
    .store-hero__inner {
      max-width: 120rem;
      padding-inline: 5rem;
    }
  }
  .store-hero__inner {
    padding-block: 4rem;
  }
  @media (min-width: 1024px) {
    .store-hero__inner {
      padding-block: 6.5rem;
    }
  }
  .store-hero__intro {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .store-hero__subtitle {
    margin-bottom: 1rem;
  }
  @media (min-width: 1024px) {
    .store-hero__subtitle {
      margin-bottom: 0;
      margin-top: 0.5rem;
    }
  }
  @media (min-width: 1024px) {
    .store-hero__description {
      max-width: 46.4375rem;
    }
  }
  .store-hero__info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-top: 3rem;
  }
  @media (min-width: 1024px) {
    .store-hero__info {
      display: grid;
      gap: 1.5rem;
      padding-top: 2rem;
      padding-bottom: 6.5rem;
    }
  }
  .store-hero__info-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .store-hero__location {
    flex-direction: row;
    align-items: flex-start;
  }
  .store-hero__brand-icon {
    width: 4.75rem;
    height: 4.75rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
    object-fit: contain;
  }
  .store-hero__address-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .store-hero__address {
    display: flex;
    flex-direction: column;
  }
  .store-hero__address a[href^="tel:"] {
    color: var(--theme-text-primary);
    text-decoration: none;
    position: relative;
    transition: color 0.15s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .store-hero__address a[href^="tel:"]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2.75rem;
    transform: translateY(-50%);
  }
  .store-hero__address a[href^="tel:"]:hover {
    color: var(--theme-interactive-primary-fill);
  }
  .store-hero__address a[href^="tel:"]:focus:not(:focus-visible) {
    outline: none;
  }
  .store-hero__address a[href^="tel:"].focus, .store-hero__address a[href^="tel:"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0.125rem var(--theme-focus-primary);
  }
  .store-hero__contact {
    display: none;
  }
  @media (min-width: 1024px) {
    .store-hero__contact {
      display: flex;
      align-items: flex-start;
    }
  }
  .store-hero__phone {
    display: none;
  }
  @media (min-width: 1024px) {
    .store-hero__phone {
      display: block;
    }
  }
  .store-hero__hours-text {
    display: flex;
    flex-direction: column;
  }
  .store-hero__map {
    display: block;
    margin-top: 4rem;
    aspect-ratio: 2/3;
    overflow: hidden;
    margin-left: calc(-1 * 1.5rem);
    margin-right: calc(-1 * 1.5rem);
    width: calc(100% + 3rem);
  }
  @media (min-width: 768px) {
    .store-hero__map {
      margin-left: calc(-1 * 3rem);
      margin-right: calc(-1 * 3rem);
      width: calc(100% + 6rem);
    }
  }
  @media (min-width: 1024px) {
    .store-hero__map {
      margin-top: 6.5rem;
      margin-left: 0;
      margin-right: 0;
      aspect-ratio: 3/2;
      width: 100%;
      border-radius: 1.5rem;
    }
  }
  .store-hero__map img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .store-hero__map-cta {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
  }
  @media (min-width: 1024px) {
    .store-hero__map-cta {
      display: none;
    }
  }
}