/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Base Layout.
 */

.container {
  width: 100%;
  max-width: var(--max-width);
  padding-inline: var(--container-padding);

  /* This fixes an issue where if the toolbar is open in vertical mode, and
   * the mobile navigation is open, the "close" button gets pushed outside of
   * the viewport. */
}

body.is-fixed .container {
  width: calc(100% - var(--drupal-displace-offset-left, 0px) - var(--drupal-displace-offset-right, 0px));
}

.page-wrapper {
  max-width: var(--max-bg-color);
  background: var(--color--background-backdrop);
  filter: var(--global-filter);
}

/**
 * Creates stacking context ensuring that child elements can never appear in
 * front of mobile navigation.
 */

.layout-main-wrapper {
  position: relative;
  z-index: 2; /* Ensure dropdown is not cut off by footer. */
}

/* Contains the social sidebar, and the primary content area. */

@media (min-width: 75rem) {
  .layout-main {
    padding-inline: calc(50% - var(--max-width) / 2);
  }
}

@media (min-width: 75rem) {
  .main-content {
    width: calc(100% - var(--content-left));
    margin-inline-end: auto;
  }
}

.main-content__container {
  padding-block-start: var(--sp);
}

.main-content__container main {
  align-self: flex-start;
  background-color: var(--color--background-main);
  box-shadow: 0 0 16px var(--color--shadow);
  margin-block-end: var(--sp);
  padding-block: var(--sp);
  padding-inline: var(--sp);
}

@media (min-width: 43.75rem) {
  .main-content__container main {
    padding-block: 1.875rem;
    padding-inline: 2.25rem;
  }
}

@media (min-width: 43.75rem) {
  .main-content__container {
  }
}

@media (min-width: 75rem) {
  .main-content__container {
    padding-inline: 0;
  }
}

/*
 * Contextual link wrappers load without the ".contextual" CSS class, which
 * causes layout shifts. We fix this by setting this to position: absolute;
 */

[data-contextual-id]:not(.contextual) {
  position: absolute;
}
