/* 
 * DO NOT EDIT THIS FILE.
 * The Airbus Web Experience use PostCSS to compile CSS
 * the same way as in the Drupal core except it use the .pcss extension.
 * Therefore, you are supposed to edit the pcss file of the same name.
 */
.awx-page{
  position:relative;
  min-height:100vh;
}
.awx-page-content-group{
  display:grid;
  grid-template-areas:"body" "footer";
  grid-template-rows:1fr auto;
  grid-template-columns:1fr;
  max-width:100%;
  min-height:calc(100vh - var(--awx-header-height-start));
  margin:0 auto;
  grid-gap:0;
  gap:0;
  background:var(--awx-white);
}
.has-overlay-header:not(.glb-body) .awx-page-content-group{
  min-height:100vh;
}
@supports (-webkit-touch-callout: none){
  .awx-page{
    min-height:100svh;
  }

  .awx-page-content-group{
    min-height:calc(100svh - var(--awx-header-height-start));
  }
  .has-overlay-header:not(.glb-body) .awx-page-content-group{
    min-height:100svh;
  }
}
.awx-main{
  max-width:100vw;
  min-height:100%;
  background-color:var(--awx-white);
}
.awx-page-title{
  margin:var(--awx-sp-v2) 0;
  font-size:max(1.875rem, min(3vw, 3.25rem));
  font-size:clamp(1.875rem, 3vw, 3.25rem);
}
.awx-belly > .awx-page-title{
  margin-right:var(--awx-body-padding-h);
  margin-left:var(--awx-body-padding-h);
}
