/* Fonts */

@font-face {
  font-family: "FreightSans Pro";
  font-weight: 500;
  font-style: normal;
  src: url("/fonts/FreightSansProMedium-Regular.woff2") format("woff2"),
       url("/fonts/FreightSansProMedium-Regular.woff") format("woff"),
       url("/fonts/FreightSansProMedium-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "FreightSans Pro";
  font-weight: 500;
  font-style: italic;
  src: url("/fonts/FreightSansProMedium-Italic.woff2") format("woff2"),
       url("/fonts/FreightSansProMedium-Italic.woff") format("woff"),
       url("/fonts/FreightSansProMedium-Italic.ttf") format("truetype");
}

@font-face {
  font-family: "FreightSans Pro";
  font-weight: 600;
  font-style: normal;
  src: url("/fonts/FreightSansProSemibold-Regular.woff2") format("woff2"),
       url("/fonts/FreightSansProSemibold-Regular.woff") format("woff"),
       url("/fonts/FreightSansProSemibold-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "FreightSans Pro";
  font-weight: 600;
  font-style: italic;
  src: url("/fonts/FreightSansProSemibold-Italic.woff2") format("woff2"),
       url("/fonts/FreightSansProSemibold-Italic.woff") format("woff"),
       url("/fonts/FreightSansProSemibold-Italic.ttf") format("truetype");
}

@font-face {
  font-family: "FreightSans Pro";
  font-weight: 700;
  font-style: normal;
  src: url("/fonts/FreightSansProBold-Regular.woff2") format("woff2"),
       url("/fonts/FreightSansProBold-Regular.woff") format("woff"),
       url("/fonts/FreightSansProBold-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "FreightSans Pro";
  font-weight: 700;
  font-style: italic;
  src: url("/fonts/FreightSansProBold-Italic.woff2") format("woff2"),
       url("/fonts/FreightSansProBold-Italic.woff") format("woff"),
       url("/fonts/FreightSansProBold-Italic.ttf") format("truetype");
}

@font-face {
  font-family: "Whitman";
  font-weight: 600;
  font-style: normal;
  src: url("/fonts/Whitman-SemiBold.woff2") format("woff2"),
       url("/fonts/Whitman-SemiBold.woff") format("woff"),
       url("/fonts/Whitman-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Whitman";
  font-weight: 700;
  font-style: italic;
  src: url("/fonts/Whitman-BoldItalic.woff2") format("woff2"),
       url("/fonts/Whitman-BoldItalic.woff") format("woff"),
       url("/fonts/Whitman-BoldItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Whitman";
  font-weight: 800;
  font-style: italic;
  src: url("/fonts/Whitman-ExtraBoldItalic.woff2") format("woff2"),
       url("/fonts/Whitman-ExtraBoldItalic.woff") format("woff"),
       url("/fonts/Whitman-ExtraBoldItalic.ttf") format("truetype");
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
input, textarea, select, button,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details,
figure, figcaption, footer, header, hgroup,
menu, nav, output, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

input, button {
  border-radius: 0;
}

button,
input[type="button"],
input[type="submit"] {
  border: none;
  text-align: initial;
  background-color: transparent;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, content-lock {
  display: block;
}

/* Margins & Basic Styles */

html {
  height: 100%;
  font-family: "FreightSans Pro", sans-serif;
  font-weight: 500;
  color: #333;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  min-height: 100%;
}

/* Hide focus outline for mouse users */

body[data-mouse-active] :focus:not(input):not(textarea):not(select) {
  outline: none;
}

main {
  position: relative;
  z-index: 0;
}

h1:not(:first-child),
p:not(:first-child),
ol:not(:first-child),
ul:not(:first-child),
dl:not(:first-child),
dd:not(:first-child),
address:not(:first-child),
figure:not(:first-child),
table:not(:first-child),
.redactor:not(:first-child),
.body-icon-text:not(:first-child) {
  margin-top: 1em;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
}

h2:not(:first-child),
h3:not(:first-child),
h4:not(:first-child),
h5:not(:first-child),
h6:not(:first-child) {
  margin-top: 2em;
}

ul, ol {
  margin-left: 4ch;
}

ul.unstyled,
ol.unstyled {
  list-style: none;
  margin: 0;
}

img {
  border: none;
}

.redactor img {
  max-width: 100%;
}

iframe {
  max-width: 100%;
}

a {
  color: #5c8dc6;
}

.semibold {
  font-weight: 600;
}

b, strong, .bold {
  font-weight: 700;
}

i, em, .italic {
  font-style: italic;
}

small {
  font-size: 0.85rem;
}

.uppercase {
  text-transform: uppercase;
}

.break-word {
  word-wrap: break-word;
}

details > summary {
  list-style: none;
  cursor: pointer;
}

details > summary::before {
  display: none
}

details > summary::-webkit-details-marker {
  display: none;
}

section {
  position: relative;
}

section::before,
section::after {
  content: "";
  display: table;
}

section::after {
  clear: both;
}

/* Accessibility */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Fonts */

.font-xs-sans {
  font-family: "FreightSans Pro", sans-serif;
  font-size: calc(0.18vw + 13.43px); /* 14px @ 320, 16px @ 1440 */
  line-height: 1.4;
}

.font-s-sans {
  font-family: "FreightSans Pro", sans-serif;
  font-size: calc(0.18vw + 15.43px); /* 16px @ 320, 18px @ 1440 */
  line-height: 1.4;
}

.font-m-sans,
body {
  font-family: "FreightSans Pro", sans-serif;
  font-size: calc(0.18vw + 17.43px); /* 18px @ 320, 20px @ 1440 */
  line-height: 1.4;
}

.font-l-sans,
.redactor h3:not([class*="font-"]) {
  font-family: "FreightSans Pro", sans-serif;
  font-size: calc(0.45vw + 20.57px); /* 22px @ 320, 27px @ 1440 */
  line-height: 1.1;
}

.redactor h3:not([class*="font-"]) {
  font-weight: 600;
}

.font-s-serif,
th {
  font-family: Whitman, serif;
  font-size: calc(0.18vw + 18.43px); /* 19px @ 320, 21px @ 1440 */
  line-height: 1.25;
}

.font-m-serif {
  font-family: Whitman, serif;
  font-size: calc(0.71vw + 22.71px); /* 25px @ 320, 33px @ 1440 */
  line-height: 1.1;
}

.font-l-serif {
  font-family: Whitman, serif;
  font-size: calc(1.96vw + 27.71px); /* 34px @ 320, 56px @ 1440 */
  line-height: 0.9;
}

.font-xl-serif {
  font-family: Whitman, serif;
  font-size: calc(2.32vw + 32.57px); /* 40px @ 320, 66px @ 1440 */
  line-height: 0.9;
}

.font-heading-serif {
  font-family: Whitman, serif;
  font-size: 24px;
  line-height: 1.2;
}

@media (min-width: 960px) {
  .font-heading-serif {
    font-size: 3.13vw; /* 45px @ 1440 */
    line-height: 1;
  }
}

/* Tables */

.table-wrapper:not(:first-child) {
  margin-top: 2rem;
}

.table-wrapper:not(:last-child) {
  margin-bottom: 2rem;
}

.horizontal-scroll-warning {
  text-align: center;
}

@media (min-width: 640px) {
  .horizontal-scroll-warning {
    display: none;
  }
}

.horizontal-scroll-warning::before,
.horizontal-scroll-warning::after {
  width: 1.5em;
  height: 1.5em;
  margin: 0 1em;
  vertical-align: middle;
  color: #912D29;
}

.horizontal-scroll-warning::before {
  content: url(/images/icons/tablearrowleft.svg);
}

.horizontal-scroll-warning::after {
  content: url(/images/icons/tablearrowright.svg);
}

.horizontal-scroll-container {
  max-width: 100%;
  overflow-x: auto;
}

table {
  table-layout: auto;
  border-collapse: collapse;
}

th {
  padding: 0.75em;
  text-align: left;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  background-color: #007D91;
}

tbody > tr + tr {
  border-top: 2px solid #F3E9D2;
}

td {
  padding: 0.75em;
}

/* Colors */

.fg-white {
  color: #fff;
}

.fg-off-white {
  color: #f3ead2;
}

.fg-yellow {
  color: #edb220;
}

.fg-blue-light {
  color: #5C8DC6;
}

.fg-blue-dark {
  color: #1d3d66;
}

.bg-blue-midnight {
  background-color: #010f20;
}

.bg-blue-dark {
  background-color: #1d3d66;
}

.bg-blue-transparent {
  background-color: rgba(14,37,67,0.85);
}

.bg-yellow {
  background-color: #edb220;
}

.bg-teal {
  background-color: #007d91;
}

.bg-teal-bright-transparent {
  background-color: rgba(47,178,171,0.5);
}

.bg-off-white {
  background-color: #f3ead2;
}

.bg-white {
  background-color: #fff;
}

/* Sections */

section.full-bleed + section.full-bleed {
  margin-top: 4px;
}

section.full-bleed > h2 {
  padding: 1.25em 6.25vw 1em; /* 20px @ 320 */
}

@media (min-width: 960px) {
  section.full-bleed > h2 {
    padding: 1.25em 10vw 1em; /* 144px @ 1440 */
  }
}

/* Content Lock */
/* TODO: Figure out if this is needed and what the best format for it is, since it will be infrequently used but still needed for long runs of text */

.lock {
  position: relative;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .lock {
    max-width: 65rem;
  }
}

/* Site Padding */

.site-padding {
  padding-left: 6.25vw;
  padding-right: 6.25vw;
}

@media (min-width: 960px) {
  .site-padding {
    padding-left: 4.17vw; /* 60px @ 1440 */
    padding-right: 4.17vw; /* 60px @ 1440 */
  }
}

.site-padding-narrow {
  padding-left: 6.25vw;
  padding-right: 6.25vw;
}

@media (min-width: 960px) {
  .site-padding-narrow {
    padding-left: 10vw;
    padding-right: 10vw;
  }
}

.site-padding-vertical {
  padding-top: 20vw; /* 64px @ 320 */
  padding-bottom: 20vw; /* 64px @ 320 */
}

@media (min-width: 640px) {
  .site-padding-vertical {
    padding-top: 7.7vw; /* 111px @ 1440 */
    padding-bottom: 7.7vw; /* 111px @ 1440 */
  }
}

.site-padding-vertical + .site-padding-vertical {
  padding-top: 0;
}

.site-padding-top {
  padding-top: 20vw; /* 20px @ 320 */
}

@media (min-width: 640px) {
  .site-padding-top {
    padding-top: 7.7vw; /* 40px @ 1440 */
  }
}

.site-padding-vertical-small {
  padding-top: 6.25vw; /* 20px @ 320 */
  padding-bottom: 6.25vw; /* 20px @ 320 */
}

@media (min-width: 640px) {
  .site-padding-vertical-small {
    padding-top: 2.78vw; /* 40px @ 1440 */
    padding-bottom: 2.78vw; /* 40px @ 1440 */
  }
}

/* Utilities */

.text-center {
  text-align: center;
}

/* Actions */

.action {
  display: inline-block;
  margin: 1em 1em 0 0;
  padding: 0.9em;
  border: none;
  border-radius: 0;
  letter-spacing: 0.125em;
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

@media (min-width: 960px) {
  .action {
    padding: 1em 1.5em;
  }
}

.action.link {
  padding: 0;
  letter-spacing: normal;
}

.action.icon {
  padding: 0;
}

/* Selects */

.select-wrapper {
  position: relative;
  display: inline-block;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 1em;
  height: 1em;
  color: #912D29;
  background-image: url(/images/icons/select_chevron.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  pointer-events: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.67em 3em 0.67em 1em;
  border: 2px solid #007D91;
  border-radius: 0;
  background-color: #fff;
}

select::-ms-expand {
  display: none;
}

/* Breakpoint-based line breaks / vertical bars */

.break-border-md::before {
  content: "\A";
  white-space: pre;
}

@media (min-width: 640px) {
  .break-border-md::before {
    content: none;
  }
  
  .break-border-md {
    margin: 0 0.5em;
    border-left: 1px solid #fff;
  }
}

.break-border-all {
  margin: 0 0.5em;
  border-left: 1px solid #fff;
}

/* Site Header */

.header-site {
  position: relative;
  z-index: 1;
  top: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #fffefa;
}

.header-site .hidden-link {
  position: absolute;
  z-index: 10;
  padding: 0.5em 1em;
  border: 2px solid #007d91;
  font-weight: 700;
  background-color: #fff;
  transform: translateY(-100%);
  transition: transform 0.25s ease;
}

.header-site .hidden-link:focus {
  transform: none;
}

.header-site-logo {
  display: block;
  padding: 5px 0;
  line-height: 0;
}

.header-site-logo img {
  width: 76px;
  height: 40px;
}

@supports(padding: max(0px)) {
  .header-site-logo {
    margin-left: max(3vw, env(safe-area-inset-left));
  }
}

@media (min-width: 960px) {
  .header-site-logo {
    margin-left: 4vw;
    padding: 8px 0 9px;
  }
  
  @supports(padding: max(0px)) {
    .header-site-logo {
      margin-left: max(4vw, env(safe-area-inset-left));
    }
  }

  .header-site-logo img {
    width: 120px;
    height: 63px;
  }
}

/* Main Navigation */

.flex-toolbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.flex-spacer {
  flex: 1 1 auto;
}

@media (min-width: 960px) {
  .nav-site-details {
    margin-right: 40px;
  }
}

.nav-site-details > summary {
  width: 50px;
  height: 50px;
  margin-right: env(safe-area-inset-right);
  background-image: url(/images/menu_mobile.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}

.nav-site-details[open] > summary {
  background-image: url(/images/menu_close.svg);
}

@media (max-width: 959.98px) {
  .nav-site-details[open] > summary::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 960px) {
  .nav-site-details > summary {
    display: none;
  }
}

.nav-site {
  position: absolute;
  z-index: 11;
  top: 50px;
  right: 0;
  right: env(safe-area-inset-right);
  width: 270px;
  background-color: #007D91;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 960px) {
  .nav-site {
    position: static;
    width: auto;
    background-color: transparent;
    box-shadow: none;
  }
}

.nav-site .shortcuts {
  display: flex;
  flex-direction: row;
}

.nav-site .shortcuts a {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 33.33%;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  color: #fff;
}

.nav-site .shortcuts a + a {
  border-left: 1px solid #133158;
}

.nav-site .shortcuts a img {
  width: 24px;
  height: 24px;
  margin-bottom: 0.33em;
}

@media (min-width: 960px) {
  .nav-site .shortcuts {
    display: none;
  }
}

.nav-site > ul {
  display: flex;
  flex-direction: column;
}

@media (min-width: 960px) {
  .nav-site > ul {
    flex-direction: row;
  }
}

@media (max-width: 959.98px) {
  .nav-site > ul > li + li {
    border-top: 1px solid rgba(47, 178, 171, 0.5);
  }
}

.nav-site-link {
  position: relative;
  display: block;
  padding: 17px 20px 17px 64px;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 960px) {
  .nav-site-link {
    padding: 27px 20px 28px;
    color: #333;
  }
}

.nav-site-home-icon {
  display: none;
}

@media (min-width: 960px) {
  .nav-site-home-text {
    display: none;
  }
  
  .nav-site-home-icon {
    display: block;
    width: 1.25em;
    height: 1.25em;
  }
}

.nav-site-sub-details:not([open]) > .nav-site-link {
  z-index: 11;
}

.nav-site-sub-details > summary.nav-site-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 25px;
  width: 13px;
  height: 13px;
  background-image: url(/images/icons/menu_plus.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.nav-site-sub-details[open] > summary.nav-site-link::after {
  background-image: url(/images/icons/menu_minus.svg);
}

@media (min-width: 960px) {
  .nav-site-sub-details > summary.nav-site-link::after {
    top: auto;
    bottom: 17px;
    left: 50%;
    width: 9px;
    height: 6px;
    background-image: url(/images/icons/menu_arrow_down.svg);
    transform: translateX(-50%);
  }
  
  .nav-site-sub-details[open] > summary.nav-site-link::after {
    bottom: 0;
    width: 12px;
    height: 8px;
    background-image: url(/images/icons/menu_arrow_down.svg);
    transform: translateX(-50%) scaleY(-1);
  }
  
  .nav-site-sub-details[open] > summary.nav-site-link::before {
    content: "";
    display: block;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.nav-site-sub-details {
  position: relative;
}

.nav-site-sub-details > ul {
  margin-left: 20px;
}

@media (min-width: 960px) {
  .nav-site-sub-details > ul > li + li {
    border-top: 1px solid rgba(47, 178, 171, 0.5);
  }
}

@media (min-width: 960px) {
  .nav-site-sub-details > ul {
    position: absolute;
    z-index: 11;
    left: 50%;
    top: 100%;
    width: 270px;
    margin: 0;
    background-color: #007D91;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
  }
}

@media (min-width: 960px) {
  .nav-site-sub-details > ul .nav-site-link {
    color: #fff;
  }
}

/* Site Footer */

/* Footer: Keep Up to Date */

.keep-up-to-date {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 640px) {
  .keep-up-to-date {
    flex-direction: row;
  }
}

.keep-up-to-date > .logo {
  width: 50vw; /* 160px @ 320 */
  height: auto;
  margin: 0 0 9.375vw 0; /* 30px @ 320 */
}

@media (min-width: 640px) {
  .keep-up-to-date > .logo {
    width: 16.67vw; /* 240px @ 1440 */
    height: auto;
    margin: 0 3.47vw 0 0; /* 50px @ 1440 */
  }
}

.keep-up-to-date > .content {
  padding: 9.375vw; /* 30px @ 320 */
}

@media (min-width: 640px) {
  .keep-up-to-date > .content {
    padding: 1.74vw 3.47vw; /* 25px 50px @ 1440 */
  }
}

.keep-up-to-date > .content {
  flex: 1 1 auto;
}

@media (min-width: 640px) {
  .keep-up-to-date > .content .actions {
    float: left;
  }
}

.keep-up-to-date .action.icon > img {
  width: 2.75em;
  height: 2.75em;
}

.border-yellow {
  border: 2px solid #edb220;
}

/* Footer: Map */

.footer-site .map {
  height: 220px;
}

@media (min-width: 960px) {
  .footer-site .map {
    height: 420px;
    background-image: url(/images/map_desktop.jpg);
  }
}

.footer-site .map > .background-image {
  background-image: url(/images/map_mobile.jpg);
}

@media (min-width: 960px) {
  .footer-site .map > .background-image {
    background-image: url(/images/map_desktop.jpg);
  }
}

/* Footer: Info */

.footer-info {
  display: flex;
  flex-direction: column;
}

.footer-info > .info-group + .info-group {
  margin-top: 40px;
}

@media (min-width: 960px) {
  .footer-info {
    flex-direction: row;
  }
  
  .footer-info > .info-group + .info-group {
    margin-top: 0;
    margin-left: 40px;
  }
  
  .footer-info > .info-group.width-25 {
    width: 25%;
  }
  
  .footer-info > .info-group.width-50 {
    width: 50%;
  }
}

@media (min-width: 640px) {
  .two-column {
    columns: 2;
  }
  
  .two-column > li {
    break-inside: avoid;
  }
}

.footer-info ol,
.footer-info ul {
  margin-top: 1em;
}

.footer-info h2,
.footer-info li {
  padding-left: 50px;
}

.footer-info li:not(:last-child) {
  padding-bottom: 1em;
}

.red-numbers {
  counter-reset: ships-footer;
}

.red-numbers > li {
  counter-increment: ships-footer;
  position: relative;
}

.red-numbers > li::before {
  content: counter(ships-footer);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 27px;
  height: 27px;
  border-radius: 13.5px;
  font-size: 1.25em;
  line-height: 1;
  font-variant-numeric: lining-nums;
  color: #fff;
  background-color: #912d29;
}

.with-icon {
  position: relative;
}

.with-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 27px;
  height: 27px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.with-icon.address::before {
  background-image: url(/images/icons/footer_address.svg);
}

.with-icon.email::before {
  background-image: url(/images/icons/footer_email.svg);
}

.with-icon.phone::before {
  background-image: url(/images/icons/footer_phone.svg);
}

/* Bottom Strip Links */

.footer-site .bottom-strip-links {
  padding: 0.5rem;
}

/* Home Page Stage */

.background-image {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: lightgray; /* XXX TEMPORARY */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 639.98px) {
  .stage > .background-image {
    height: 93.75vw; /* 300px @ 320 */
  }
}

.stage > .background-video-container {
  height: 93.75vw; /* 300px @ 320 */
}

@media (min-width: 640px) {
  .stage > .background-video-container {
    height: 100%;
  }
}

.stage-overlay {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 93.75vw; /* 300px @ 320 */
  padding: 9vw;
}

@media (min-width: 640px) {
  .stage-overlay {
    align-items: stretch;
    width: 33.33%;
    height: 100%;
    min-height: 40vw;
    margin: 0;
    padding: 4vw;
  }
}

.corner-callout {
  margin: 0 0 -9vw -9vw;
  padding: 10px 30px;
}

@media (min-width: 640px) {
  .corner-callout {
    align-self: flex-end;
    margin: 0 -4vw -4vw 0;
    padding: 24px 40px;
  }
}

/* Overview Page Stage */

.stage-overview-icon {
  width: 100%;
  height: auto;
  max-width: 30rem;
}

/* Detail Page Stage */

.stage-detail.with-background-image {
  padding-top: 40vw;
}

@media (min-width: 640px) {
  .stage-detail.with-background-image {
    padding-top: 16vw;
  }
}

.stage-detail .content {
  position: relative;
  display: flex;
  flex-direction: column;
}

.stage-detail .content-background {
  position: absolute;
  z-index: 0;
  top: 20vw; /* 64px @ 320 */
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
}

@media (min-width: 640px) {
  .stage-detail .content-background {
    top: 8.75vw; /* 126px @ 1440 */
  }
}

.stage-detail .heading {
  display: flex;
  flex-direction: row;
}

.stage-detail .heading .icon {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 20vw; /* 64px @ 320 */
  height: 20vw; /* 64px @ 320 */
}

@media (min-width: 640px) {
  .stage-detail .heading .icon {
    width: 8.75vw; /* 126px @ 1440 */
    height: 8.75vw; /* 126px @ 1440 */
  }
}

.stage-detail .heading .icon > img {
  width: 100%;
  height: 100%;
}

.stage-detail .heading .text {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  width: 75vw;
  min-height: 20vw;
}

@media (min-width: 640px) {
  .stage-detail .heading .text {
    width: 65vw;
    min-height: 8.75vw;
  }
}

.stage-detail .breadcrumb,
.stage-detail h1 {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  padding: 0.5rem 1rem;
  background-color: #fff;
}

@media (min-width: 960px) {
  .stage-detail .breadcrumb,
  .stage-detail h1 {
    padding: 1.25rem 1.25rem 1.25rem 10vw;
  }
}

.stage-detail.with-background-image .breadcrumb {
  background-color: rgba(255, 255, 255, 0.87);
}

.stage-detail .intro-text {
  position: relative;
  z-index: 2;
  margin-top: 2rem; /* XXX TEMPORARY */
  padding-bottom: 2rem; /* XXX TEMPORARY */
}

/* Site Detail Page Stage */

.stage-site-detail {
  padding-top: 53vw; /* 170px @ 320 */
}

@media (min-width: 640px) {
  .stage-site-detail {
    padding-top: 24vw; /* 350px @ 1440 */
  }
}

.stage-site-detail > .background-video-container {
  height: 78vw; /* 250px @ 320 */
}

@media (min-width: 640px) {
  .stage-site-detail > .background-video-container {
    height: 37.8vw; /* 550px @ 1440 */
  }
}

.stage-site-detail .content {
  position: relative;
  display: flex;
  flex-direction: column;
}

.stage-site-detail .content-background {
  position: absolute;
  z-index: 0;
  top: 25vw; /* 80px @ 320 */
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
}

@media (min-width: 640px) {
  .stage-site-detail .content-background {
    top: 13.8vw; /* 200px @ 1440 */
  }
}

@media (min-width: 1600px) {
  .stage-site-detail .content-background {
    top: 7.6vw;
  }
}

.stage-site-detail .heading {
  display: flex;
  flex-direction: row;
}

.stage-site-detail .heading .heading-icon {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 25vw; /* 80px @ 320 */
  height: 25vw; /* 80px @ 320 */
}

@media (min-width: 640px) {
  .stage-site-detail .heading .heading-icon {
    width: 13.8vw; /* 200px @ 1440 */
    height: 13.8vw; /* 200px @ 1440 */
  }
}

@media (min-width: 1600px) {
  .stage-site-detail .heading .heading-icon {
    width: 7.6vw;
    height: 7.6vw;
  }
}

.stage-site-detail .heading .heading-icon > img {
  width: 100%;
  height: 100%;
}

.stage-site-detail .heading .heading-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 75vw; /* 240px @ 320 */
  min-height: 20vw;
}

@media (min-width: 640px) {
  .stage-site-detail .heading .heading-text {
    width: 65vw; /* 936px @ 1440 */
    min-height: 8.75vw;
  }
}

.stage-site-detail .site-data,
.stage-site-detail h1 {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
}

.stage-site-detail h1 {
  background-color: rgba(255, 255, 255, 0.87);
  padding: 0.5rem 1rem;
}

@media (min-width: 960px) {
  .stage-site-detail h1 {
    padding: 1.25rem 1.25rem 1.25rem 10vw;
  }
}
    
.stage-site-detail .site-data {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #fff;
}

.stage-site-detail .site-data > .location,
.stage-site-detail .site-data > .hours {
  width: 100%;
  padding: 0.5rem 1rem;
}

.stage-site-detail .site-data > .hours {
  border-top: 1px solid #F3EBD2;
}

@media (min-width: 960px) {
  .stage-site-detail .site-data > .location {
    width: 30%;
    padding: 1.25rem 1.25rem 1.25rem 10vw;
  }
  
  .stage-site-detail .site-data > .hours {
    width: 70%;
    border-top: none;
    border-left: 2px solid #f3ebd2;
    padding: 1.25rem;
  }
}

.stage-site-detail .site-data .inline-icon {
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.5em;
  align-self: baseline;
}

.stage-site-detail .intro-text {
  position: relative;
  z-index: 2;
  margin-top: 2rem; /* XXX TEMPORARY */
  padding-bottom: 2rem; /* XXX TEMPORARY */
}

/* Background Videos */

.background-video-container {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.background-video {
  position: relative;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}

/* Icon & Text Bar Component */

.icon-text-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 35px;
  padding-bottom: 35px;
}

@media (min-width: 640px) {
  .icon-text-group {
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  @supports(padding: max(0px)) {
    .icon-text-group {
      padding-left: max(10vw, env(safe-area-inset-left));
      padding-right: max(10vw, env(safe-area-inset-right));
    }
  }
}

/* Icon & Text Sub-Component */

.icon-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}

@media (min-width: 640px) {
  .icon-text {
    width: 50%;
    padding: 15px 20px;
  }
}

@media (min-width: 960px) {
  .icon-text {
    width: 25%;
    padding: 30px 20px;
  }
}

.icon-text > img {
  flex: 0 0 auto;
  width: 2.35em;
  height: 2.35em;
  margin-right: 1.5em;
}

.icon-text.small > img {
  width: 1.25em;
  height: 1.25em;
  margin-right: 1em;
}


.icon-text > .text {
  align-self: flex-start;
}

/* Slider Component */

.slider {
  position: relative;
}

.slider-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.slider-row::-webkit-scrollbar { 
  display: none;
}

.slider-item {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  position: relative;
  width: 90vw; /* ~290px @ 320 */
  height: 92vw; /* ~295px @ 320 */
  padding: 5vw;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (min-width: 640px) {
  .slider-item {
    width: 45vw;
    height: 47vw;
    padding: 2vw;
  }
}

@media (min-width: 960px) {
  .slider-item {
    width: 30vw;
    height: 32vw;
  }
}

.slider-item + .slider-item {
  margin-left: 4px;
}

.slider-text {
  position: relative;
}

.slider-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 45px;
  height: 45px;
  padding: 11px;
  transform: translateY(-50%);
  cursor: pointer;
}

@media (min-width: 960px) {
  .slider-arrow {
    width: 72px;
    height: 72px;
    padding: 19px;
  }
}

.slider-arrow.left {
  left: 0;
}

.slider-arrow.right {
  right: 0;
}

.slider-arrow[disabled] {
  cursor: default;
}

.slider-arrow[disabled] > img {
  opacity: 0.15;
}

/* Events Component */

.events {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.event {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 640px) {
  .event {
    flex-direction: row;
    align-items: center;
  }
  
  .event:nth-child(n+3) {
    border-top: 2px solid #f3ead2;
  }
}

@media (min-width: 960px) {
  .event {
    width: 50%;
  }
}

.event .date {
  display: flex;
  flex-direction: row;
  align-self: stretch;
  padding: 20px 9.375vw;
  font-family: Whitman, serif;
  font-size: 25px;
  line-height: 1;
}

@media (max-width: 639.99px) {
  .event .date > .month::after {
    content: " ";
    white-space: pre;
  }

  .event .date > .day::after {
    content: ", ";
    white-space: pre;
  }
}

@media (min-width: 640px) {
  .event .date {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 33.33%; /* TODO: Not sure how this can sanely be padded with safe area insets when at 50% width */
    padding: 20px;
  }
  
  .event .date > .month,
  .event .date > .year {
    font-family: "FreightSans Pro";
    font-weight: 700;
    font-size: 1.39vw; /* 20px @ 1440 */ /* TODO: Too small for 640 */
    text-transform: uppercase;
  }
  
  .event .date > .day {
    font-size: 4.86vw; /* 70px @ 1440 */ /* TODO: Too small for 640 */
    font-weight: 900;
  }
}

.event .overview {
  padding: 6.25vw 9.375vw 25vw; /* 20px, 30px, 80px @ 320 */
}

@media (min-width: 640px) {
  .event .overview {
    padding: 3.47vw; /* 50px @ 1440 */
  }
}

/* XXX TEMPORARY */
.event .icon-text {
  width: 100%;
  margin: 1em 0;
  padding: 0;
}

/* Details (when used in body copy) */

.body-details {
  overflow: hidden;
}

.body-details > summary {
  position: relative;
  z-index: 1;
  padding: 1.4em 0 1.4em 2em;
  background-color: #fff;
}

.body-details + .body-details {
  border-top: 2px solid #F3EAD2;
}

.body-details > summary::before {
  content: "+";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  font-size: 2.5em;
  font-weight: 500;
  color: #007D91;
  transform: translateY(-50%);
}

.body-details[open] > summary::before {
  content: "–";
}

.body-details > .details-content {
  position: relative;
  z-index: 0;
  padding-left: 2.7em; /* XXX TEMPORARY */
  padding-bottom: 2em; /* XXX TEMPORARY */
}

.body-details[open] > .details-content {
  transform: none;
  animation: details-disclosure 0.3s ease;
}

@keyframes details-disclosure {
  0% { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

/* Callout Grid */

.callout-grid-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.callout-grid-row > .callout {
  position: relative;
  width: 100%;
  min-height: 80vw;
  text-decoration: none;
}

@media (min-width: 640px) {
  .callout-grid-row > .callout {
    flex: 0 0 auto;
    width: 33.33%;
    min-height: 33.33vw;
  }
}

.callout-grid-row > .callout .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10vw;
  text-align: center;
}

@media (min-width: 640px) {
  .callout-grid-row > .callout .content {
    padding: 3vw;
  }
}

.callout-grid-row > .callout .icon {
  width: 10vw;
  height: 10vw;
}

@media (min-width: 640px) {
  .callout-grid-row > .callout .icon {
    width: 3vw;
    height: 3vw;
  }
}

/* Image and Text Section */

.image-and-text-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .image-and-text-row {
    flex-wrap: nowrap;
  }
}

.image-and-text-row + .image-and-text-row {
  border-top: 2px solid #f3ead2;
}

.image-and-text-row.reverse {
  flex-direction: row-reverse;
}

.image-and-text-row > .image {
  width: 100%;
  height: 66.67vw;
  flex: 0 0 auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (min-width: 640px) {
  .image-and-text-row > .image {
    width: 40%;
    height: auto;
  }
}

/* Body Copy Icon & Text Block */

.body-icon-text {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.body-icon-text + .body-icon-text {
  margin-top: 0.5rem;
}

.body-icon-text > img {
  width: 1.5em;
  height: 1.5em;
  margin-right: 1em;
}

.body-icon-text .redactor {
  margin: 0;
}
