/** Shopify CDN: Minification failed

Line 16:10 Unexpected "{"
Line 16:19 Expected ":"
Line 17:16 Expected identifier but found whitespace
Line 17:18 Unexpected "{"
Line 17:27 Expected ":"
Line 17:78 Expected ":"
Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:30 Expected ":"
Line 18:84 Expected ":"
... and 60 more hidden warnings

**/
.section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  @media screen and (min-width: 750px) {
    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }
  }

  #VenueLocation-{{ section.id }} .venue-location__grid {
    display: grid;
    gap: 2rem;
  }

  @media screen and (min-width: 990px) {
    #VenueLocation-{{ section.id }} .venue-location__grid {
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
      align-items: start;
    }
  }

  #VenueLocation-{{ section.id }} .venue-location__kicker {
    margin: 0 0 .6rem;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .8;
  }

  #VenueLocation-{{ section.id }} .venue-location__heading {
    margin: 0 0 .8rem;
    line-height: 1.05;
  }

  #VenueLocation-{{ section.id }} .venue-location__subheading {
    margin-bottom: 1.5rem;
    max-width: 70ch;
  }

  #VenueLocation-{{ section.id }} .venue-location__image-wrap {
    margin-bottom: 1.5rem;
    border-radius: 18px;
    overflow: hidden;
  }

  #VenueLocation-{{ section.id }} .venue-location__image-wrap img {
    display: block;
    width: 100%;
    height: auto;
  }

  #VenueLocation-{{ section.id }} .venue-location__cards {
    display: grid;
    gap: 1rem;
  }

  #VenueLocation-{{ section.id }} .venue-location__card {
    padding: 1.25rem;
    border: 1px solid rgba(var(--color-foreground), .12);
    border-radius: 18px;
    background: rgba(var(--color-foreground), .04);
  }

  #VenueLocation-{{ section.id }} .venue-location__card-title {
    margin: 0 0 .8rem;
  }

  #VenueLocation-{{ section.id }} .venue-location__venue-name {
    margin: 0 0 .5rem;
    font-weight: 700;
  }

  #VenueLocation-{{ section.id }} .venue-location__address {
    font-style: normal;
    display: grid;
    gap: .15rem;
    margin: 0 0 1rem;
  }

  #VenueLocation-{{ section.id }} .venue-location__contact-list p {
    margin: .25rem 0;
  }

  #VenueLocation-{{ section.id }} .venue-location__actions,
  #VenueLocation-{{ section.id }} .venue-location__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1rem;
  }

  #VenueLocation-{{ section.id }} .venue-location__hours {
    margin: 0;
  }

  #VenueLocation-{{ section.id }} .venue-location__hours-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(var(--color-foreground), .12);
  }

  #VenueLocation-{{ section.id }} .venue-location__hours-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  #VenueLocation-{{ section.id }} .venue-location__hours-row dt,
  #VenueLocation-{{ section.id }} .venue-location__hours-row dd {
    margin: 0;
  }

  #VenueLocation-{{ section.id }} .venue-location__small,
  #VenueLocation-{{ section.id }} .venue-location__map-caption {
    font-size: .92rem;
    opacity: .8;
  }

  #VenueLocation-{{ section.id }} .venue-location__map-column {
    position: sticky;
    top: 2rem;
  }

  #VenueLocation-{{ section.id }} .venue-location__map-wrap {
    min-height: 420px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(var(--color-foreground), .12);
    background: rgba(var(--color-foreground), .04);
  }

  #VenueLocation-{{ section.id }} .venue-location__map-wrap iframe {
    display: block;
    width: 100%;
    min-height: 420px;
  }