/*
 * Copyright 2020 Adobe. All rights reserved.
 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License. You may obtain a copy
 * of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
 * OF ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */

/* fallback fonts */
@font-face {
  font-family: roboto-condensed-fallback;
  size-adjust: 88.82%;
  src: local('Arial');
}

@font-face {
  font-family: roboto-fallback;
  size-adjust: 99.529%;
  src: local('Arial');
}

@media (width >= 900px) {
  body {
    min-height: 100dvh;
    background-color: var(--c-canvas);
  }

  main {
    box-sizing: border-box;
    margin-left: var(--rail-w);
    min-height: 100dvh;
    background-color: var(--c-canvas);
  }
}

body {
  display: none;
  margin: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--body-font-family);
  font-size: var(--body-font-size-m);
  line-height: 1.6;
}

body.appear {
  display: block;
}

@media (width < 900px) {
  body {
    min-height: 100dvh;
    padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom));
    background-color: var(--c-canvas);
  }
}

header {
  height: var(--nav-height);
}

@media (width < 900px) {
  header {
    height: calc(var(--mobile-header-h) + env(safe-area-inset-top));
  }

  :target {
    scroll-margin-top: calc(var(--mobile-header-h) + env(safe-area-inset-top));
  }
}

@media (width >= 900px) {
  header {
    height: 0;
  }
}

header .header {
  visibility: hidden;
}

header .header[data-block-status="loaded"] {
  visibility: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0.8em;
  margin-bottom: 0.25em;
  font-family: var(--heading-font-family);
  font-weight: 600;
  line-height: 1.25;
  scroll-margin: 40px;
}

h1 { font-size: var(--heading-font-size-xxl); }

h2 {
  font-size: var(--heading-font-size-xl);
  line-height: 1.1;
}

h3 { font-size: var(--heading-font-size-l); }
h4 { font-size: var(--heading-font-size-m); }

h5 {
  margin-top: 1.5em;
  margin-bottom: 1em;
  font-size: var(--heading-font-size-s);
  line-height: 1.2;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--c-text-muted);
  font-family: var(--body-font-family);
  font-size: var(--heading-font-size-xs);
  font-weight: 400;
  line-height: 1.4;
}

p,
dl,
ol,
ul,
pre,
blockquote {
  margin-top: 0.8em;
  margin-bottom: 0.25em;
}

code,
pre {
  font-size: var(--body-font-size-s);
}

pre {
  padding: var(--s-4);
  border-radius: var(--r-md);
  background-color: var(--light-color);
  overflow-x: auto;
  white-space: pre;
}

main > div {
  margin: var(--s-10) var(--s-4);
}

input,
textarea,
select,
button {
  font: inherit;
}

/* links */
a:any-link {
  color: var(--link-color);
  text-decoration: none;
  overflow-wrap: break-word;
}

a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

/* buttons */
p.button-wrapper {
  margin: var(--s-3) 0;
}

a.button:any-link,
button.button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 2.4em;
  padding: 0.5em 1.2em;
  font: inherit;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a.button[aria-disabled="true"],
button.button:disabled {
  cursor: not-allowed;
  pointer-events: none;
}

a.button.primary,
button.button.primary {
  border-color: var(--text-color);
  background-color: var(--text-color);
  color: var(--background-color);
}

a.button.primary:hover,
a.button.primary:focus-visible,
button.button.primary:hover,
button.button.primary:focus-visible {
  border-color: var(--dark-color);
  background-color: var(--dark-color);
  color: var(--light-color);
}

a.button.primary[aria-disabled="true"],
a.button.primary[aria-disabled="true"]:hover,
a.button.primary[aria-disabled="true"]:focus-visible,
button.button.primary:disabled,
button.button.primary:disabled:hover,
button.button.primary:disabled:focus-visible {
  background-color: var(--light-color);
  border-color: var(--light-color);
  color: var(--dark-color);
}

a.button.secondary,
button.button.secondary {
  border-color: var(--text-color);
  background-color: transparent;
  color: var(--text-color);
}

a.button.secondary:hover,
a.button.secondary:focus-visible,
button.button.secondary:hover,
button.button.secondary:focus-visible {
  border-color: var(--dark-color);
  background-color: var(--light-color);
  color: var(--dark-color);
}

a.button.secondary[aria-disabled="true"],
a.button.secondary[aria-disabled="true"]:hover,
a.button.secondary[aria-disabled="true"]:focus-visible,
button.button.secondary:disabled,
button.button.secondary:disabled:hover,
button.button.secondary:disabled:focus-visible {
  background-color: var(--light-color);
  border-color: var(--light-color);
  color: var(--dark-color);
}

/* high-impact call-to-action */
a.button.accent,
button.button.accent {
  border-color: var(--link-color);
  background-color: var(--link-color);
  color: var(--background-color);
}

a.button.accent:hover,
a.button.accent:focus-visible,
button.button.accent:hover,
button.button.accent:focus-visible {
  border-color: var(--link-hover-color);
  background-color: var(--link-hover-color);
}

a.button.accent[aria-disabled="true"],
a.button.accent[aria-disabled="true"]:hover,
a.button.accent[aria-disabled="true"]:focus-visible,
button.button.accent:disabled,
button.button.accent:disabled:hover,
button.button.accent:disabled:focus-visible {
  background-color: var(--light-color);
  border-color: var(--light-color);
  color: var(--dark-color);
}

main img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.icon {
  display: inline-block;
  height: 24px;
  width: 24px;
}

.icon img {
  height: 100%;
  width: 100%;
}

/* sections */
main > .section {
  margin: 0 0 var(--s-10);
}

main > .section > div {
  max-width: var(--content-max-width);
  margin: auto;
  padding: 0 var(--gutter);
}

main > .section > .default-content-wrapper:has(> h2 + h6:last-child) {
  padding-top: var(--s-4);
  padding-bottom: var(--s-5);
}

main > .section > .section-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-6);
}

main > .section:first-of-type {
  margin-bottom: 0;
}

@media (width >= 900px) {
  main > .section > div {
    padding: 0 var(--gutter-desktop);
  }

  main > .section > .default-content-wrapper:has(> h2 + h6:last-child) {
    padding-top: var(--s-6);
    padding-bottom: var(--s-6);
  }

  main > .section > .section-columns-50-50 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  main > .section > .section-columns-33-67 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  }

  main > .section > .section-columns-67-33 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }

  main > .section > .section-columns-33-33-34 {
    grid-template-columns: minmax(0, 33fr) minmax(0, 33fr) minmax(0, 34fr);
  }
}

/* section metadata */
main .section.light,
main .section.highlight {
  background-color: var(--light-color);
  margin: 0;
  padding: var(--s-10) 0;
}
