/* Shared styles (all screens) */

:root {
  --font-serif: BrickDisplayPro, SuisseWorks, Georgia, "Times New Roman", Times,
    serif;
  --font-sans: SuisseIntl, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --width-main: 64rem;
  --bg-grey-light: #f6f6f6;
  --bg-grey-dark: #3e0808;
  --bg-red: #f39369;
  --bg-white: #ffffff;
  --bg-off-white: #fcf6f1;
  --bg-cream: #fceee5;
  --bg-yellow: #f3d468;
  --bg-facedock: #fef9f3;
  --text-gray: rgba(255, 255, 255, 0.75);
  --text-white: rgba(255, 255, 255, 1);
  --text-white-transparent: rgba(255, 255, 255, 0.5);
  --text-black-transparent: rgba(0, 0, 0, 0.5);
  --text-blue: #147ee3;
  --text-brown: #3e0808;
  --pad-s: 2rem;
  --bg-orange-red: linear-gradient(0deg, #f39369, #f39369),
    radial-gradient(
      27.19% 31.32% at 22.81% 77.92%,
      rgba(254, 238, 196, 0.43) 0%,
      rgba(254, 196, 210, 0) 100%
    ),
    #f36f68;
}

@font-face {
  font-family: SuisseWorks;
  src: url("../assets/fonts/SuisseWorks-Regular.otf");
}

@font-face {
  font-family: SuisseWorks;
  font-weight: 500;
  src: url("../assets/fonts/SuisseWorks-Book.otf");
}

@font-face {
  font-family: SuisseWorks;
  font-weight: 600;
  src: url("../assets/fonts/SuisseWorks-Medium.otf");
}

@font-face {
  font-family: SuisseWorks;
  src: url("../assets/fonts/SuisseWorks-Regular.otf");
}

@font-face {
  font-family: SuisseIntl;
  src: url("../assets/fonts/SuisseIntl-Regular.otf");
}

@font-face {
  font-family: SuisseIntl;
  font-weight: 500;
  src: url("../assets/fonts/SuisseIntl-Book.otf");
}

@font-face {
  font-family: SuisseIntl;
  font-weight: 600;
  src: url("../assets/fonts/SuisseIntl-Medium.otf");
}

@font-face {
  font-family: BrickDisplayPro;
  src: url("../assets/fonts/BrickDisplayPro-Regular.ttf");
}

html,
body {
  font-family: var(--font-serif);
  font-size: 1em;
  line-height: calc(4em / 3);
}

.font-serif {
  font-family: var(--font-serif);
}

.font-sans {
  font-family: var(--font-sans);
}

.font-medium {
  font-weight: 600;
}

img {
  display: block;
  width: 100%;
  max-width: var(--width-main);
  margin: 0 auto;
  border-radius: 30px;
}

img:not([src]) {
  padding-bottom: 66%;
  background: var(--bg-grey-light);
}

.bg-grey-light {
  background: var(--bg-grey-light);
}

.bg-grey-dark {
  background: var(--bg-grey-dark);
  color: white;
}

section-content {
  display: block;
  max-width: var(--width-main);
  padding: 0 var(--pad-s);
  margin: 0 auto;
}

section-content-nofade {
  display: block;
  max-width: var(--width-main);
  padding: 0 var(--pad-s);
  margin: 0 auto;
}

.relative {
  position: relative;
}

.z-1 {
  z-index: 1;
}

.screen-reader-only {
  position: absolute;
  top: -9999rem;
  left: -9999rem;
}

.opacity-0 {
  opacity: 0;
  pointer-events: none;
}

.col-2,
.col-1-3,
.col-3 {
  display: grid;
  grid-gap: 2.5rem;
}

.pad-b-0 {
  padding-bottom: 0;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media only screen and (max-width: 480px) {
  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none;
  }
}
