/*
 * Den-SHOW Layout Layer v0.7.0
 * Structure, containers, grids, spacing only.
 */
.ds-page,
.ds-section,
.ds-business-section,
.ds-business-hero{
  position:relative;
  isolation:isolate;
}

.ds-page{
  overflow-x:hidden;
}

.ds-container{
  width:min(var(--ds-container-max), calc(100% - var(--ds-container-gutter)));
  margin-inline:auto;
  position:relative;
  z-index:var(--ds-z-content);
}

.ds-section{
  padding-block:var(--ds-space-section);
  overflow:hidden;
}

.ds-section.ds-opening,
.ds-business-hero{
  min-height:var(--ds-hero-min-height);
  overflow:hidden;
}

.ds-business-section{
  padding-block:var(--ds-space-section);
  overflow:hidden;
}

.ds-footer-section{
  min-height:auto;
  padding-block:0;
}

@media (max-width:1080px){
  .ds-section,
  .ds-business-section{
    padding-block:var(--ds-space-section-tablet);
  }
}

@media (max-width:760px){
  .ds-container,
  .ds-narrow{
    width:min(100% - var(--ds-container-gutter-mobile), var(--ds-container-max));
  }
  .ds-section,
  .ds-business-section{
    min-height:auto;
    padding-block:var(--ds-space-section-mobile);
  }
  .ds-section.ds-opening,
  .ds-business-hero{
    min-height:var(--ds-hero-min-height);
  }
}

/* v0.7.1 fix: secure breathing room above the lower Contact blocks on Place / Commerce. */
body.denshow-theme .ds-page--place .ds-business-cta,
body.denshow-theme .ds-page--commerce .ds-business-cta{
  padding-top:var(--ds-space-section-sm, 96px) !important;
  padding-bottom:var(--ds-space-section-sm, 96px) !important;
}

body.denshow-theme .ds-page--place .ds-business-future,
body.denshow-theme .ds-page--commerce .ds-business-future,
body.denshow-theme .ds-page--commerce .ds-commerce-future{
  padding-bottom:72px !important;
}

@media (max-width:760px){
  body.denshow-theme .ds-page--place .ds-business-cta,
  body.denshow-theme .ds-page--commerce .ds-business-cta{
    padding-top:64px !important;
    padding-bottom:68px !important;
  }
  body.denshow-theme .ds-page--place .ds-business-future,
  body.denshow-theme .ds-page--commerce .ds-business-future,
  body.denshow-theme .ds-page--commerce .ds-commerce-future{
    padding-bottom:52px !important;
  }
}
