@charset "UTF-8";
.hidden {
  display: none;
}

@media (max-width: 720px) {
  .mobile-hidden {
    display: none;
  }
}

html {
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #111111;
  overflow-x: hidden;
  overscroll-behavior: none;
  animation: quickFade 500ms;
  scrollbar-color: #0054ff #fdfdfd;
}
html * {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  background: #fdfdfd;
}

::-webkit-scrollbar {
  width: 1rem;
}

::-webkit-scrollbar-track {
  background: #0054ff;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb {
  background: #dddddd;
}

::-webkit-scrollbar-thumb:hover {
  background: #111111;
}

::selection {
  background: #0054ff;
}

p:empty {
  display: none;
}

.page {
  display: flex;
  height: 100%;
}
.page .page-content {
  order: 1;
  width: 100%;
  position: relative;
  height: inherit;
}
.page .page-nav {
  order: 2;
  height: inherit;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4, p {
  padding-top: 0;
  margin-top: 0;
  margin-block-start: 0;
}

ul, li, ol {
  list-style: none;
}

aside ul li {
  list-style: none;
}

ol {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #111111;
}

figure {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

.general--hero {
  padding: calc(1.25rem + 1vw);
  min-height: 8rem;
}
@media (max-width: 720px) {
  .general--hero {
    padding: 1.75rem;
  }
}
.general--hero img {
  width: 100%;
}

.general--header {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding: calc(1.25rem + 1vw) calc(1.25rem + 1vw) 0 calc(1.25rem + 1vw);
}
@media (max-width: 720px) {
  .general--header {
    padding: 1.75rem 1.75rem 0 1.75rem;
  }
}
.general--header .general--header-container {
  grid-column: 2/span 6;
  padding-bottom: calc(1.25rem + 1vw);
  border-bottom: #111111 solid 1px;
}
.general--header .general--header-container h1 {
  margin-bottom: 1rem;
}
@media (max-width: 1240px) {
  .general--header .general--header-container {
    grid-column: 2/span 10;
  }
}
@media (max-width: 720px) {
  .general--header {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .general--header .general--header-container {
    grid-column: span 6;
  }
}

.general--body {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding: calc(1.25rem + 1vw);
}
@media (max-width: 720px) {
  .general--body {
    padding: 1.75rem;
  }
}
.general--body a {
  color: #0054ff;
}
.general--body ul li {
  font-size: calc(.9rem + .4vw);
}
.general--body p, .general--body .general--masthead, .general--body .general--contact {
  grid-column: 2/span 6;
}
.general--body .general--masthead {
  margin-top: calc(1.25rem + 1vw);
  margin-bottom: calc(1.25rem + 1vw);
}
.general--body .general--masthead .general--masthead-header {
  margin-bottom: 1rem;
}
.general--body .general--masthead .general--masthead-staff {
  display: flex;
  justify-content: space-between;
}
.general--body .general--masthead .general--masthead-staff .names {
  flex-basis: 30%;
}
.general--body .general--masthead .general--masthead-staff .positions {
  flex-basis: 70%;
}
.general--body .general--contact {
  margin-bottom: calc(2rem + 2vw);
}
.general--body .general--contact .general--contact-header {
  margin-bottom: 1rem;
}
@media (max-width: 1240px) {
  .general--body p, .general--body .general--masthead, .general--body .general--contact {
    grid-column: 2/span 10;
  }
}
@media (max-width: 720px) {
  .general--body {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .general--body p, .general--body .general--masthead, .general--body .general--contact {
    grid-column: span 6;
  }
  .general--body .general--masthead .general--masthead-staff .names {
    flex-basis: 50%;
  }
  .general--body .general--masthead .general--masthead-staff .positions {
    flex-basis: 50%;
  }
}

.error-body--container {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding: calc(1.25rem + 1vw);
}
@media (max-width: 720px) {
  .error-body--container {
    padding: 1.75rem;
  }
}
.error-body--container .error-body {
  margin: calc(2rem + 2vw) 0 calc(3rem + 4vw) 0;
  grid-column: 2/span 6;
}
.error-body--container .error-body h1 {
  font-size: 20vw;
  line-height: 1;
  color: #0054ff;
}
.error-body--container .error-body hr {
  margin-top: calc(1.25rem + 1vw);
  margin-bottom: calc(1.25rem + 1vw);
}
.error-body--container .error-body a {
  color: #0054ff;
}
@media (max-width: 1240px) {
  .error-body--container .error-body {
    grid-column: span 12;
  }
}
@media (max-width: 720px) {
  .error-body--container {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .error-body--container .error-body {
    grid-column: span 6;
  }
}

h1 {
  font-size: calc(1.5rem + 1vw);
  font-family: "orpheuspro", Georgia, Times New Roman, serif;
  line-height: 1.25;
  font-weight: 800;
}

h2 {
  font-size: calc(1rem + .5vw);
  font-family: "neue-haas-grotesk-text", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-weight: 400;
}

h3 {
  font-size: calc(1rem + .5vw);
  font-family: "neue-haas-grotesk-text", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-weight: 400;
}

h4 {
  font-size: calc(.9rem + .4vw);
  font-family: "antarctican-mono", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-weight: 400;
}

blockquote {
  font-size: calc(1.5rem + 1vw);
  font-family: "orpheuspro", Georgia, Times New Roman, serif;
  line-height: 1.25;
  font-weight: 800;
}

p {
  font-size: calc(.9rem + .4vw);
  font-family: "neue-haas-grotesk-text", Helvetica, Arial, sans-serif;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.75rem;
}
p em {
  font-weight: 400;
}
p strong, p b {
  font-weight: 600;
}

.caption {
  font-size: calc(.7rem + .3vw);
  font-family: "antarctican-mono", Helvetica, Arial, sans-serif;
  line-height: 1.8;
}

li {
  font-size: calc(.7rem + .3vw);
  font-family: "neue-haas-grotesk-text", Helvetica, Arial, sans-serif;
  line-height: 1.8;
}

hr {
  margin-top: calc(1.25rem + 1vw);
  margin-bottom: calc(2rem + 2vw);
  border-top: #111111 solid 1px;
}

.page-headline {
  font-size: calc(1.75rem + 1.75vw);
}

.headline {
  letter-spacing: -0.06rem;
  animation: quickFade 500ms;
  font-weight: 800;
}
.headline a {
  transition: opacity 200ms linear;
}
.headline a:hover {
  opacity: 0.6;
}

.mono {
  font-family: "antarctican-mono", Helvetica, Arial, sans-serif !important;
  letter-spacing: -0.1rem;
}
@media (max-width: 1080px) {
  .mono {
    letter-spacing: -0.125rem;
  }
}
@media (max-width: 720px) {
  .mono {
    letter-spacing: -0.1rem;
  }
}

.dropcap:first-letter {
  float: left;
  font-family: "orpheuspro", Georgia, Times New Roman, serif;
  font-size: calc(5.6rem + 4.8vw);
  padding-top: calc(1rem + .7vw);
  line-height: 0.65;
  padding-right: calc(0.5rem + .1vw);
}
@media (max-width: 720px) {
  .dropcap:first-letter {
    padding-top: 1.25rem;
    font-size: 5rem;
  }
}

.centered {
  text-align: center;
}

.news-title {
  margin-bottom: 1rem;
}

.serif {
  font-family: "orpheuspro", Georgia, Times New Roman, serif;
  font-weight: 800;
}

.glass {
  opacity: 0.6;
}

.accent {
  color: #0054ff;
}

.uppercase {
  text-transform: uppercase;
}

header {
  padding: 1.75rem;
  border-bottom: #111111 solid 1px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
@media (max-width: 720px) {
  header {
    padding: 1rem;
  }
}
header .header-left {
  display: flex;
  justify-content: center;
}
header .header-left .issue-selector .issue-selector--button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  position: relative;
}
header .header-left .issue-selector .issue-selector--button .header-logo {
  width: 8rem;
  height: auto;
  padding-top: 0.25rem;
  padding-right: 0.75rem;
}
header .header-left .issue-selector .issue-selector--button .brand-inline {
  display: none;
}
header .header-left .issue-selector .issue-selector--button img {
  position: relative;
  height: 1.75rem;
}
header .header-left .issue-selector .issue-selector--dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background: #fdfdfd;
  border-bottom-right-radius: 1rem;
  padding: 2.5rem 1.75rem 1.75rem 1.75rem;
  left: 0;
  z-index: 1;
  transition-property: opacity, visibility;
  transition-duration: 0.4s, 0s;
  transition-delay: 0s, 0.8s;
}
header .header-left .issue-selector .issue-selector--dropdown h4 {
  margin-bottom: 0.75rem;
}
header .header-left .issue-selector .issue-selector--dropdown h4 a {
  color: #aaaaaa;
}
header .header-left .issue-selector .issue-selector--dropdown h4:last-child {
  margin-bottom: 0;
}
header .header-left .issue-selector:hover .issue-selector--dropdown {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s, 0s;
}
header .header-right .header-menu--button {
  display: none;
}
@media (max-width: 1080px) {
  header .header-right .header-menu--button {
    display: block;
    width: 1.75rem;
    cursor: pointer;
  }
}
@media (max-width: 720px) {
  header .header-left .brand-inline {
    padding-top: 0.1666666667rem;
  }
  header .header-left .issue-selector .issue-selector--dropdown {
    display: none;
  }
}

.header--ghost {
  position: absolute;
  width: 100%;
}
.header--ghost header {
  position: relative;
  border-bottom: #fdfdfd solid 1px;
}
.header--ghost header .header-logo, .header--ghost header .header-menu--button {
  color: #fdfdfd;
}
.header--ghost header .header-logo img, .header--ghost header .header-menu--button img {
  filter: invert(1) brightness(1);
}
.header--ghost header .brand-inline a {
  color: #fdfdfd;
}

.header--special {
  position: absolute;
  width: 100%;
}
.header--special header {
  position: relative;
  border-bottom: none;
  z-index: 2;
}
.header--special header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}
.header--special header .header-logo, .header--special header .header-menu--button {
  color: #fdfdfd;
}
.header--special header .header-logo img, .header--special header .header-menu--button img {
  filter: invert(1) brightness(1);
}
.header--special header .brand-inline a {
  color: #fdfdfd;
}
.header--special header .header-left .issue-selector .issue-selector--dropdown {
  display: none;
}
.header--special header .header-right .header-menu--button {
  display: block;
  width: 1.75rem;
  cursor: pointer;
}

.sitemap h1, .sitemap h2 {
  margin-bottom: 1rem;
}
.sitemap h3, .sitemap h4 {
  margin-bottom: 1rem;
}
.sitemap a {
  user-select: none;
}

nav {
  right: 0;
  height: 100%;
  width: 5rem;
  background-color: #fdfdfd;
}
nav .nav-menu {
  background-color: rgba(253, 253, 253, 0.33);
  backdrop-filter: blur(1.75rem);
  -webkit-backdrop-filter: blur(1.75rem);
  display: flex;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  width: 1080px;
  height: inherit;
  border-left: #111111 solid 1px;
  transform: translateX(calc(1080px - 5rem));
  transition: transform 200ms ease;
}
@-moz-document url-prefix() {
  nav .nav-menu {
    background-color: rgba(253, 253, 253, 0.99) !important;
  }
}
nav .nav-menu .nav-side {
  align-self: flex-start;
  width: 1.75rem;
  height: inherit;
  cursor: pointer;
  padding: 1.75rem;
}
@media (max-width: 720px) {
  nav .nav-menu .nav-side {
    padding: 1rem;
  }
}
nav .nav-menu .nav-side .nav-side--button, nav .nav-menu .nav-side .nav-side--spine {
  display: block;
}
nav .nav-menu .nav-side .nav-side--button {
  text-align: center;
  width: 1.75rem;
  margin-bottom: 2.5rem;
}
nav .nav-menu .nav-side .nav-side--spine {
  width: 1.75rem;
}
nav .nav-menu .nav-side .nav-side--spine h4 {
  padding: 0;
  margin: 0;
  transform: rotate(90deg);
  text-transform: capitalize;
}
nav .nav-menu .nav-panel {
  padding: 1.75rem;
  width: 100%;
  padding-left: 5rem;
  padding-right: 5rem;
}
@media (max-width: 720px) {
  nav .nav-menu .nav-panel {
    padding: 1rem;
  }
}
nav .nav-menu .nav-panel .nav-header {
  margin-bottom: 5rem;
  height: 1.75rem;
}
nav .nav-menu .nav-panel .nav-header .nav-header--tagline {
  position: relative;
  bottom: 0.5rem;
}
nav .nav-menu .nav-panel .nav-header .nav-header--tagline h4 {
  padding: 0;
  margin: 0;
}
nav .nav-menu .nav-panel .nav-header .nav-header--button {
  position: absolute;
  cursor: pointer;
  height: 1.75rem;
  width: 1.75rem;
  top: 1.75rem;
  right: 1.75rem;
}
nav .nav-menu .nav-panel h1:hover {
  color: #111111;
}
nav .nav-menu .nav-panel .sitemap a:hover {
  color: #0054ff;
}
nav .nav-menu .nav-panel .sitemap .sitemap-logo {
  display: none;
}
nav .nav-menu .nav-panel .sitemap .sitemap-brand a:hover {
  color: #111111;
}
nav .nav-menu .nav-panel .sitemap .sitemap-primary {
  margin-bottom: calc(1.25rem + 1vw);
  padding-bottom: calc(1.25rem + 1vw);
  border-bottom: #111111 solid 1px;
}
nav .nav-menu .nav-panel .sitemap .sitemap-primary a {
  display: block;
}
nav .nav-menu .nav-panel .sitemap .sitemap-primary h2:last-child {
  margin-bottom: 0;
}
nav .nav-menu .nav-panel .sitemap .sitemap-secondary {
  display: grid;
  grid-template-columns: repeat(6, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  margin-bottom: calc(1.25rem + 1vw);
}
nav .nav-menu .nav-panel .sitemap .sitemap-secondary .sitemap-secondary--pages {
  grid-column: 1/span 3;
}
nav .nav-menu .nav-panel .sitemap .sitemap-secondary .sitemap-secondary--services {
  grid-column: 4/span 3;
  margin-bottom: calc(1.25rem + 1vw);
}
nav .nav-menu .nav-panel .sitemap .sitemap-secondary .sitemap-social {
  grid-column: 1/span 6;
  margin-top: calc(1.25rem + 1vw);
  margin-bottom: calc(2rem + 2vw);
  display: flex;
}
nav .nav-menu .nav-panel .sitemap .sitemap-secondary .sitemap-social a {
  margin-right: 1.75rem;
}
@media (max-width: 1080px) {
  nav {
    width: 0 !important;
  }
  nav .nav-side {
    display: none;
    width: 0;
  }
  nav .nav-menu {
    width: 720px;
    transform: translateX(720px);
  }
  nav .nav-menu .nav-panel {
    padding: calc(1.25rem + 1vw);
  }
}
@media (max-width: 1080px) and (max-width: 720px) {
  nav .nav-menu .nav-panel {
    padding: 1.75rem;
  }
}
@media (max-width: 720px) {
  nav .nav-menu {
    width: 320px;
    transform: translateX(320px);
  }
  nav .nav-menu .nav-panel .nav-header {
    height: 0;
    margin-bottom: calc(2rem + 2vw);
  }
  nav .nav-menu .nav-panel .nav-header .nav-header--button {
    top: 1rem;
    right: 1rem;
  }
  nav .nav-menu .nav-panel .nav-header .nav-header--tagline {
    display: none;
  }
}
nav .nav-menu__unfurl {
  transform: translateX(0px) !important;
}

.nav--special nav {
  position: relative;
  width: 0 !important;
}
.nav--special nav .nav-side {
  display: none;
  width: 0 !important;
}
.nav--special nav .nav-menu {
  transform: translateX(1090px);
}

footer {
  padding: calc(1.25rem + 1vw);
  background-color: #0054ff;
}
@media (max-width: 720px) {
  footer {
    padding: 1.75rem;
  }
}
footer h1, footer h2, footer h3, footer h4, footer p, footer li, footer blockquote, footer figcaption {
  color: #111111;
}
footer hr {
  border-top: #111111 1px solid;
}
footer a:hover {
  color: #fdfdfd;
}
footer .sitemap {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  margin-top: calc(2rem + 2vw);
  margin-bottom: calc(2rem + 2vw);
}
footer .sitemap .sitemap-brand {
  display: none;
}
footer .sitemap .sitemap-title {
  grid-column: 2/span 2;
}
footer .sitemap .sitemap-title h1 {
  font-size: calc(1.5rem + 1vw);
}
footer .sitemap .sitemap-title .sitemap-logo {
  width: 80%;
  height: auto;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
footer .sitemap .sitemap-primary {
  grid-column: 4/span 3;
  border-right: #111111 solid 1px;
}
footer .sitemap .sitemap-secondary {
  grid-column: 8/span 4;
  display: flex;
  flex-wrap: wrap;
}
footer .sitemap .sitemap-secondary .sitemap-secondary--pages {
  flex-basis: 50%;
}
footer .sitemap .sitemap-secondary .sitemap-secondary--services {
  flex-basis: 50%;
  margin-bottom: calc(1.25rem + 1vw);
}
footer .sitemap .sitemap-secondary .sitemap-social {
  flex-basis: 100%;
  display: flex;
}
footer .sitemap .sitemap-secondary .sitemap-social a {
  margin-right: calc(1.25rem + 1vw);
}
@media (max-width: 1240px) {
  footer .sitemap .sitemap-title {
    grid-column: 1/span 12;
    grid-row: 1;
    width: 16rem;
    display: flex;
    margin-bottom: 1.75rem;
  }
  footer .sitemap .sitemap-title .sitemap-logo {
    margin-bottom: 0;
    margin-right: 1rem;
  }
  footer .sitemap .sitemap-title .sitemap-brand {
    padding: 0;
    margin: 0;
    align-self: center;
  }
  footer .sitemap .sitemap-primary {
    grid-column: 1/span 5;
  }
  footer .sitemap .sitemap-secondary {
    grid-column: 7/span 6;
  }
}
@media (max-width: 720px) {
  footer .sitemap {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
    margin-top: calc(1.25rem + 1vw);
    margin-bottom: calc(1.25rem + 1vw);
  }
  footer .sitemap .sitemap-title {
    grid-column: 1/span 6;
    width: 10rem;
    margin-bottom: calc(1.25rem + 1vw);
  }
  footer .sitemap .sitemap-primary {
    grid-column: 1/span 6;
    border-right: 0;
    border-bottom: #111111 solid 1px;
    margin-bottom: calc(2rem + 2vw);
  }
  footer .sitemap .sitemap-primary h2:last-child {
    margin-bottom: calc(2rem + 2vw);
  }
  footer .sitemap .sitemap-secondary {
    grid-column: 1/span 6;
  }
}

.article-hero .video-embed {
  position: relative;
  padding-top: 53.33%;
}
.article-hero .video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.article-body .body-container h1, .article-body .body-container h2, .article-body .body-container h3, .article-body .body-container h4 {
  margin-top: 0;
  margin-bottom: 1.75rem;
}
.article-body .body-container h2 {
  font-family: "orpheuspro", Georgia, Times New Roman, serif;
  font-size: calc(1rem + .8vw);
  font-weight: 600;
}
.article-body .body-container a {
  color: #111111;
  opacity: 0.6;
}
.article-body .body-container a:hover {
  color: #0054ff;
}
.article-body .body-container figure {
  margin-top: calc(1.25rem + 1vw);
  margin-bottom: calc(2rem + 2vw);
}
.article-body .body-container figure img, .article-body .body-container figure video {
  width: 100%;
}
@media (max-width: 720px) {
  .article-body .body-container figure {
    margin-top: 0.75rem;
    margin-bottom: 1.75rem;
  }
}
.article-body .body-container figure figcaption {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  font-family: "antarctican-mono", Helvetica, Arial, sans-serif;
}
.article-body .body-container figure .video-embed {
  min-height: calc(24rem + 18vw);
}
@media (max-width: 720px) {
  .article-body .body-container figure .video-embed {
    min-height: calc(12rem + 12vw);
  }
}
.article-body .body-container .embed {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) {
  .article-body .body-container .embed {
    width: 100%;
  }
}
.article-body .body-container .image-tiny {
  text-align: center;
}
.article-body .body-container .image-tiny img {
  width: 30%;
}
@media (max-width: 1240px) {
  .article-body .body-container .image-tiny img {
    width: 50%;
  }
}
.article-body .body-container .image-small {
  text-align: center;
}
.article-body .body-container .image-small img {
  width: 80%;
}
@media (max-width: 1240px) {
  .article-body .body-container .image-small img {
    width: 100%;
  }
}
.article-body .body-container .image-full {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.article-body .body-container .image-double {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.article-body .body-container .image-double img {
  width: 48%;
  align-self: center;
  margin-bottom: calc(2rem + 2vw);
}
.article-body .body-container .image-double img:first-child {
  margin-right: 2%;
}
@media (max-width: 720px) {
  .article-body .body-container .image-double {
    margin-bottom: 1rem;
  }
  .article-body .body-container .image-double img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.article-body .body-container .interactive {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.article-body .body-container .interactive img {
  width: auto;
}
.article-body .body-container blockquote {
  margin-top: calc(0.5rem + .1vw);
  margin-bottom: calc(1.25rem + 1vw);
}
.article-body .body-container blockquote:before {
  content: "「 ";
}
.article-body .body-container blockquote:after {
  content: " 」";
}
.article-body .body-container blockquote cite:before {
  content: "—";
}
.article-body .body-container iframe {
  width: 100% !important;
}
.article-body .body-container ul, .article-body .body-container ol {
  padding-left: calc(1.25rem + 1vw);
  margin-bottom: calc(1.25rem + 1vw);
}
.article-body .body-container ul li, .article-body .body-container ol li {
  margin-top: calc(0.5rem + .1vw);
}
.article-body .body-container ul li {
  list-style: circle;
}
.article-body .body-container ol li {
  list-style: decimal;
}
.article-body .body-container .section-divider {
  width: calc(3rem + 4vw);
  margin-left: auto;
  margin-right: auto;
  border-top: #aaaaaa solid 1px;
}
.article-body .body-container aside {
  margin-bottom: 0;
}
.article-body .body-container aside h1, .article-body .body-container aside h2, .article-body .body-container aside h3, .article-body .body-container aside h4, .article-body .body-container aside h5 {
  font-size: calc(.7rem + .3vw);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.article-body .body-container aside h1, .article-body .body-container aside h2, .article-body .body-container aside h3, .article-body .body-container aside h4, .article-body .body-container aside p, .article-body .body-container aside li {
  font-family: "antarctican-mono", Helvetica, Arial, sans-serif;
  font-size: calc(.7rem + .3vw);
  color: #0054ff;
}
.article-body .body-container aside h1::selection, .article-body .body-container aside h2::selection, .article-body .body-container aside h3::selection, .article-body .body-container aside h4::selection, .article-body .body-container aside p::selection, .article-body .body-container aside li::selection {
  color: #fdfdfd;
  background: #0054ff;
}
.article-body .body-container aside ul, .article-body .body-container aside ol {
  padding-left: 0;
}
.article-body .body-container aside ul li:first-child, .article-body .body-container aside ol li:first-child {
  margin-top: 0;
}
.article-body .body-container aside ul li, .article-body .body-container aside ol li {
  list-style: none;
  margin-bottom: 0.75rem;
}
.article-body .body-container aside img {
  width: 100%;
}

.article-credits {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
}
.article-credits .article-credits--body {
  grid-column: 3/span 8;
}
@media (max-width: 1240px) {
  .article-credits .article-credits--body {
    grid-column: 2/span 10;
  }
}
@media (max-width: 720px) {
  .article-credits {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .article-credits .article-credits--body {
    grid-column: 1/span 6;
  }
}

.article-credits {
  padding: 0 calc(1.25rem + 1vw) calc(1.25rem + 1vw) calc(1.25rem + 1vw);
}
@media (max-width: 720px) {
  .article-credits {
    padding: 0 1.75rem 2.5rem 1.75rem;
  }
}
.article-credits .article-credits--body {
  padding-bottom: calc(1.25rem + 1vw);
}
.article-credits .article-credits--body a {
  color: #0054ff;
}
.article-credits .article-credits--body .article-credits--contributor {
  display: flex;
  justify-content: space-between;
  padding-top: calc(2rem + 2vw);
  margin-bottom: calc(1.25rem + 1vw);
  border-top: #aaaaaa solid 1px;
}
.article-credits .article-credits--body .article-credits--contributor .article-credits--headshot {
  background: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 10rem;
  width: 10rem;
  margin-right: calc(1.25rem + 1vw);
  border-radius: 5rem;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .article-credits .article-credits--body {
    padding-bottom: 0;
  }
  .article-credits .article-credits--body .article-credits--contributor {
    padding-top: calc(2rem + 2vw);
    border-top: #0054ff solid 1px;
    display: block;
  }
  .article-credits .article-credits--body .article-credits--contributor .article-credits--headshot {
    background: #111111;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(3rem + 4vw);
    width: calc(3rem + 4vw);
    margin-right: 1rem;
    border-radius: calc(3rem + 4vw)/2;
    float: left;
  }
}

.end-card .related-articles {
  background-color: #111111;
  padding: calc(1.25rem + 1vw);
  padding-top: calc(3rem + 4vw);
  padding-bottom: calc(3rem + 4vw);
}
.end-card .related-articles h1, .end-card .related-articles h2, .end-card .related-articles h3, .end-card .related-articles h4, .end-card .related-articles p, .end-card .related-articles li, .end-card .related-articles blockquote, .end-card .related-articles figcaption {
  color: #fdfdfd;
}
.end-card .related-articles hr {
  border-top: #fdfdfd 1px solid;
}
.end-card .related-articles a:hover {
  color: #0054ff;
}
@media (max-width: 720px) {
  .end-card .related-articles {
    padding: 1.75rem;
  }
}
.end-card .related-articles .related-articles--header {
  margin-bottom: calc(2rem + 2vw);
  text-align: center;
}
.end-card .related-articles .related-articles--header a {
  color: #fdfdfd;
}
.end-card .related-articles .related-articles--teasers {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
}
.end-card .related-articles .related-articles--teasers .teaser--tab-m {
  grid-column: 2/span 10;
  border-top: #fdfdfd solid 1px;
  border-left: #fdfdfd solid 1px;
  border-right: #fdfdfd solid 1px;
}
.end-card .related-articles .related-articles--teasers .teaser--tab-m:last-child {
  border-bottom: #fdfdfd solid 1px;
}
.end-card .related-articles .related-articles--teasers a {
  color: #fdfdfd;
}
@media (max-width: 1080px) {
  .end-card .related-articles .related-articles--teasers .teaser--tab-m {
    grid-column: 1/span 12;
  }
}
@media (max-width: 720px) {
  .end-card .related-articles {
    padding-top: calc(3rem + 4vw);
    padding-bottom: calc(3rem + 4vw);
  }
  .end-card .related-articles .related-articles--header {
    margin-bottom: calc(1.25rem + 1vw);
  }
  .end-card .related-articles .related-articles--teasers .teaser--tab-m {
    margin-bottom: 0;
  }
}

.article--editorial .article-cover {
  padding: calc(1.25rem + 1vw);
  background: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: calc(24rem + 18vw);
  overflow-y: hidden;
  position: relative;
  display: flex;
}
@media (max-width: 720px) {
  .article--editorial .article-cover {
    padding: 1.75rem;
  }
}
.article--editorial .article-cover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}
.article--editorial .article-cover .article-cover--info {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  width: 100%;
  align-self: flex-end;
  position: relative;
}
.article--editorial .article-cover .article-cover--info .article--header {
  grid-column: 3/span 8;
}
.article--editorial .article-cover .article-cover--info .article--header h1, .article--editorial .article-cover .article-cover--info .article--header h2, .article--editorial .article-cover .article-cover--info .article--header h3, .article--editorial .article-cover .article-cover--info .article--header h4, .article--editorial .article-cover .article-cover--info .article--header h5 {
  color: #fdfdfd;
}
.article--editorial .article-cover .article-cover--info .article--header .article--issue {
  margin-bottom: 1rem;
}
.article--editorial .article-cover .article-cover--info .article--header .article--headline h1 {
  font-size: calc(1.75rem + 1.75vw);
  margin-bottom: 0.5rem;
}
.article--editorial .article-cover .article-cover--info .article--header .article--deck {
  margin-bottom: calc(1.25rem + 1vw);
}
.article--editorial .article-cover .image-source {
  padding: 0;
  margin: 0;
  position: absolute;
  color: #fdfdfd;
  font-size: calc(.7rem + .3vw);
  bottom: 0.75rem;
  right: 1rem;
}
.article--editorial .article-cover--video {
  min-height: calc(24rem + 18vw);
  overflow-y: hidden;
  position: relative;
  display: flex;
}
.article--editorial .article-cover--video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}
.article--editorial .article-cover--video video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article--editorial .article-cover--video .article-cover--info {
  padding: calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  width: 100%;
  align-self: flex-end;
  position: relative;
}
@media (max-width: 720px) {
  .article--editorial .article-cover--video .article-cover--info {
    padding: 1.75rem;
  }
}
.article--editorial .article-cover--video .article-cover--info .article--header {
  grid-column: 3/span 8;
}
.article--editorial .article-cover--video .article-cover--info .article--header .article--headline h1, .article--editorial .article-cover--video .article-cover--info .article--header .article--headline h2, .article--editorial .article-cover--video .article-cover--info .article--header .article--deck h1, .article--editorial .article-cover--video .article-cover--info .article--header .article--deck h2, .article--editorial .article-cover--video .article-cover--info .article--header .article--issue h1, .article--editorial .article-cover--video .article-cover--info .article--header .article--issue h2 {
  color: #fdfdfd;
}
.article--editorial .article-cover--video .article-cover--info .article--header .article--headline h1 {
  font-size: calc(1.75rem + 1.75vw);
  margin-bottom: 0.5rem;
}
.article--editorial .article-cover--video .article-cover--info .article--header .article--deck {
  margin-bottom: calc(1.25rem + 1vw);
}
.article--editorial .article-cover--video .article-cover--info .article--header .article--issue {
  grid-column: 3/span 8;
  margin-bottom: calc(0.5rem + .1vw);
}
.article--editorial .article-body {
  padding-top: calc(1.25rem + 1vw);
}
.article--editorial .article-body .article-lead {
  padding: calc(1.25rem + 1vw) calc(1.25rem + 1vw) 0 calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
}
@media (max-width: 720px) {
  .article--editorial .article-body .article-lead {
    padding: 1.75rem 1.75rem 0 1.75rem;
  }
}
.article--editorial .article-body .article-lead .article-lead--lede {
  grid-column: 3/span 8;
  margin-bottom: calc(1.25rem + 1vw);
}
.article--editorial .article-body .article-lead .article-lead--meta {
  display: flex;
  justify-content: space-between;
  grid-column: 3/span 8;
  padding-bottom: calc(1.25rem + 1vw);
  border-bottom: #0054ff solid 1px;
}
.article--editorial .article-body .article-lead .article-lead--meta .article-lead--date {
  text-align: right;
}
.article--editorial .article-body .article-lead h2 {
  margin-bottom: calc(0.5rem + .1vw);
}
.article--editorial .article-body .body-container {
  padding: calc(0.5rem + .1vw) calc(1.25rem + 1vw) calc(1.25rem + 1vw) calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding-top: calc(1.25rem + 1vw);
}
@media (max-width: 720px) {
  .article--editorial .article-body .body-container {
    padding: calc(0.5rem + .1vw) 1.75rem 2.5rem 1.75rem;
  }
}
.article--editorial .article-body .body-container p:last-child {
  margin-bottom: 0;
}
.article--editorial .article-body .body-container p, .article--editorial .article-body .body-container h1, .article--editorial .article-body .body-container h2, .article--editorial .article-body .body-container h3, .article--editorial .article-body .body-container h4, .article--editorial .article-body .body-container h5, .article--editorial .article-body .body-container h6, .article--editorial .article-body .body-container ul, .article--editorial .article-body .body-container ol, .article--editorial .article-body .body-container blockquote {
  grid-column: 4/span 6;
}
.article--editorial .article-body .body-container figure, .article--editorial .article-body .body-container hr, .article--editorial .article-body .body-container .article-space, .article--editorial .article-body .body-container .article-list, .article--editorial .article-body .body-container .inset {
  grid-column: 4/span 6;
}
.article--editorial .article-body .body-container aside {
  grid-auto-flow: dense;
  grid-column: 10/span 3;
  grid-row: span 6;
}
.article--editorial .article-body .body-container .image-single {
  grid-column: 3/span 8;
}
.article--editorial .article-body .body-container .article-drawer {
  grid-column: 3/span 8;
}
.article--editorial .article-body .body-container .image-wide {
  grid-column: 2/span 10;
}
.article--editorial .article-body .body-container .image-full, .article--editorial .article-body .body-container .interactive {
  grid-column: 1/span 12;
}
.article--editorial .article-body .body-container .image-double {
  grid-column: 1/span 12;
}
.article--editorial .article-credits {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
}
.article--editorial .article-credits .article-credits--body {
  grid-column: 3/span 8;
}
@media (max-width: 1240px) {
  .article--editorial .article-cover .article-cover--info .article--header, .article--editorial .article-cover--video .article-cover--info .article--header {
    grid-column: 2/span 10;
  }
  .article--editorial .article-body .article-lead .article-lead--lede, .article--editorial .article-body .article-lead .article-lead--meta {
    grid-column: 2/span 10;
  }
  .article--editorial .article-body .body-container p, .article--editorial .article-body .body-container h1, .article--editorial .article-body .body-container h2, .article--editorial .article-body .body-container h3, .article--editorial .article-body .body-container h4, .article--editorial .article-body .body-container h5, .article--editorial .article-body .body-container h6, .article--editorial .article-body .body-container ul, .article--editorial .article-body .body-container ol, .article--editorial .article-body .body-container blockquote, .article--editorial .article-body .body-container aside {
    grid-column: 2/span 10;
  }
  .article--editorial .article-body .body-container figure, .article--editorial .article-body .body-container hr, .article--editorial .article-body .body-container .image-single, .article--editorial .article-body .body-container .image-double, .article--editorial .article-body .body-container .article-space, .article--editorial .article-body .body-container .inset {
    grid-column: 2/span 10;
  }
  .article--editorial .article-body .body-container aside {
    margin: 1.75rem 0;
  }
  .article--editorial .article-body .body-container .article-drawer, .article--editorial .article-body .body-container .article-list {
    grid-column: 2/span 10;
  }
  .article--editorial .article-body .body-container .image-single {
    grid-column: 2/span 10;
  }
  .article--editorial .article-body .body-container .image-wide {
    grid-column: 1/span 12;
  }
  .article--editorial .article-body .body-container .image-full, .article--editorial .article-body .body-container .interactive {
    grid-column: 1/span 12;
  }
  .article--editorial .article-credits .article-credits--body {
    grid-column: 2/span 10;
  }
}
@media (max-width: 720px) {
  .article--editorial .article-cover, .article--editorial .article-cover--video {
    min-height: calc(24rem + 18vw);
  }
  .article--editorial .article-cover .article-cover--info, .article--editorial .article-cover--video .article-cover--info {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .article--editorial .article-cover .article-cover--info .article--header, .article--editorial .article-cover--video .article-cover--info .article--header {
    grid-column: 1/span 6;
  }
  .article--editorial .article-body {
    padding-top: calc(1.25rem + 1vw);
  }
  .article--editorial .article-body .article-lead {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .article--editorial .article-body .article-lead .article-lead--lede, .article--editorial .article-body .article-lead .article-lead--meta {
    grid-column: 1/span 6;
  }
  .article--editorial .article-body .body-container {
    margin-top: calc(1.25rem + 1vw);
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .article--editorial .article-body .body-container p, .article--editorial .article-body .body-container h1, .article--editorial .article-body .body-container h2, .article--editorial .article-body .body-container h3, .article--editorial .article-body .body-container h4, .article--editorial .article-body .body-container h5, .article--editorial .article-body .body-container h6, .article--editorial .article-body .body-container ul, .article--editorial .article-body .body-container ol, .article--editorial .article-body .body-container blockquote, .article--editorial .article-body .body-container figure, .article--editorial .article-body .body-container hr, .article--editorial .article-body .body-container aside,
.article--editorial .article-body .body-container .image-single, .article--editorial .article-body .body-container .image-wide, .article--editorial .article-body .body-container .image-full, .article--editorial .article-body .body-container .image-double, .article--editorial .article-body .body-container .interactive, .article--editorial .article-body .body-container .article-space {
    grid-column: span 6;
  }
  .article--editorial .article-body .body-container .article-drawer, .article--editorial .article-body .body-container .article-list {
    grid-column: 1/span 6;
  }
  .article--editorial .article-credits {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .article--editorial .article-credits .article-credits--body {
    grid-column: 1/span 6;
  }
}

.article--editorial.dark-mode .article-body {
  background-color: #111111;
}
.article--editorial.dark-mode .article-body h1, .article--editorial.dark-mode .article-body h2, .article--editorial.dark-mode .article-body h3, .article--editorial.dark-mode .article-body h4, .article--editorial.dark-mode .article-body p, .article--editorial.dark-mode .article-body li, .article--editorial.dark-mode .article-body blockquote, .article--editorial.dark-mode .article-body figcaption {
  color: #fdfdfd;
}
.article--editorial.dark-mode .article-body hr {
  border-top: #fdfdfd 1px solid;
}
.article--editorial.dark-mode .article-body a:hover {
  color: #fdfdfd;
}
.article--editorial.dark-mode .article-body .article-lead .article-lead--meta {
  border-bottom: #fdfdfd solid 1px;
}
.article--editorial.dark-mode .article-body .body-container p a {
  color: #fdfdfd;
}
.article--editorial.dark-mode .article-body .body-container figcaption a {
  color: #fdfdfd;
}
.article--editorial.dark-mode .article-body .body-container .inset h1, .article--editorial.dark-mode .article-body .body-container .inset h2, .article--editorial.dark-mode .article-body .body-container .inset h3, .article--editorial.dark-mode .article-body .body-container .inset h4, .article--editorial.dark-mode .article-body .body-container .inset h5, .article--editorial.dark-mode .article-body .body-container .inset p, .article--editorial.dark-mode .article-body .body-container .inset li {
  color: #aaaaaa;
}
.article--editorial.dark-mode .article-body .article-drawer .article-drawer--header h1, .article--editorial.dark-mode .article-body .article-drawer .article-drawer--header h2, .article--editorial.dark-mode .article-body .article-drawer .article-drawer--header h3 {
  color: #0054ff;
}
.article--fluid .article-cover {
  padding: calc(1.25rem + 1vw);
  background: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  overflow-y: hidden;
  position: relative;
  display: flex;
}
@media (max-width: 720px) {
  .article--fluid .article-cover {
    padding: 1.75rem;
  }
}
.article--fluid .article-cover .image-source {
  padding: 0;
  margin: 0;
  position: absolute;
  color: #fdfdfd;
  font-size: calc(.7rem + .3vw);
  bottom: 0.75rem;
  right: 1rem;
}
@media (max-width: 720px) {
  .article--fluid .article-cover {
    min-height: 500px;
  }
}
.article--fluid .article-header {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  position: relative;
  text-align: center;
  padding-top: calc(2rem + 2vw);
}
.article--fluid .article-header .article--headline {
  grid-column: 3/span 8;
}
.article--fluid .article-header .article--headline h1 {
  font-size: calc(2rem + 2.5vw);
  margin-bottom: 0.75rem;
}
.article--fluid .article-header .article--deck {
  grid-column: 3/span 8;
  margin-bottom: calc(1.25rem + 1vw);
}
.article--fluid .article-body .article-lead {
  padding: calc(1.25rem + 1vw) calc(1.25rem + 1vw) 0 calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  margin-bottom: calc(1.25rem + 1vw);
}
@media (max-width: 720px) {
  .article--fluid .article-body .article-lead {
    padding: 1.75rem 1.75rem 0 1.75rem;
  }
}
.article--fluid .article-body .article-lead .article-lead--lede {
  grid-column: 3/span 8;
  margin-bottom: calc(1.25rem + 1vw);
}
.article--fluid .article-body .article-lead .article-lead--meta {
  display: flex;
  justify-content: space-between;
  grid-column: 3/span 8;
  padding-bottom: calc(1.25rem + 1vw);
  border-bottom: #0054ff solid 1px;
}
.article--fluid .article-body .article-lead .article-lead--meta .article-lead--date {
  text-align: right;
}
.article--fluid .article-body .article-lead h2 {
  margin-bottom: calc(0.5rem + .1vw);
}
.article--fluid .article-body .body-container {
  padding: calc(0.5rem + .1vw) calc(1.25rem + 1vw) calc(1.25rem + 1vw) calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding-top: calc(1.25rem + 1vw);
}
@media (max-width: 720px) {
  .article--fluid .article-body .body-container {
    padding: calc(0.5rem + .1vw) 1.75rem 2.5rem 1.75rem;
  }
}
.article--fluid .article-body .body-container .fluid-container {
  grid-column: 3/span 8;
}
.article--fluid .article-body .body-container .fluid-container p {
  font-size: calc(1rem + .5vw);
}
.article--fluid .article-body .body-container .fluid-container hr {
  margin-top: calc(2rem + 2vw);
}
.article--fluid .article-body .body-container .fluid-container .image-single, .article--fluid .article-body .body-container .fluid-container .article-drawer, .article--fluid .article-body .body-container .fluid-container aside {
  width: 40%;
  margin-bottom: calc(1.25rem + 1vw);
}
.article--fluid .article-body .body-container .fluid-container aside {
  margin-bottom: 0;
}
.article--fluid .article-body .body-container .fluid-container .fluid-left {
  float: left;
  margin-right: calc(1.25rem + 1vw);
}
.article--fluid .article-body .body-container .fluid-container .fluid-right {
  float: right;
  margin-left: calc(1.25rem + 1vw);
}
.article--fluid .article-body .body-container .fluid-container .article-drawer h1, .article--fluid .article-body .body-container .fluid-container .article-drawer h2, .article--fluid .article-body .body-container .fluid-container .article-drawer h3, .article--fluid .article-body .body-container .fluid-container .article-drawer h4, .article--fluid .article-body .body-container .fluid-container .article-drawer p {
  font-size: calc(.9rem + .4vw);
}
.article--fluid .article-body .body-container .fluid-container .article-drawer .article-drawer--panel figure img {
  border: none;
  width: 100%;
  transform: rotate(0deg);
}
@media (max-width: 1240px) {
  .article--fluid .article-cover .article-cover--info .article--issue {
    grid-column: 2/span 10;
  }
  .article--fluid .article-cover .article-cover--info .article--headline {
    grid-column: 2/span 10;
  }
  .article--fluid .article-cover .article-cover--info .article--deck {
    grid-column: 2/span 10;
  }
  .article--fluid .article-body .article-lead .article-lead--lede, .article--fluid .article-body .article-lead .article-lead--meta {
    grid-column: 2/span 10;
  }
  .article--fluid .article-body .body-container {
    padding-top: calc(2rem + 2vw);
  }
  .article--fluid .article-body .body-container .fluid-container {
    grid-column: 2/span 10;
  }
}
@media (max-width: 720px) {
  .article--fluid .article-cover .article-cover--info {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .article--fluid .article-cover .article-cover--info .article--issue {
    grid-column: span 6;
  }
  .article--fluid .article-cover .article-cover--info .article--headline {
    grid-column: span 6;
  }
  .article--fluid .article-cover .article-cover--info .article--deck {
    grid-column: span 6;
  }
  .article--fluid .article-hero {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
    padding: calc(1.25rem + 1vw) calc(1.25rem + 1vw) 0 calc(1.25rem + 1vw);
    margin-top: 0;
  }
}
@media (max-width: 720px) and (max-width: 720px) {
  .article--fluid .article-hero {
    padding: 1.75rem 1.75rem 0 1.75rem;
  }
}
@media (max-width: 720px) {
  .article--fluid .article-hero img {
    width: 100%;
    grid-column: 1/span 6;
  }
}
@media (max-width: 720px) {
  .article--fluid .article-hero h4 {
    grid-column: 1/span 6;
  }
}
@media (max-width: 720px) {
  .article--fluid .article-body .article-header {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .article--fluid .article-body .article-header .article-header--headline {
    grid-column: 1/span 6;
  }
  .article--fluid .article-body .article-header .article-header--deck {
    grid-column: 1/span 6;
  }
  .article--fluid .article-body .article-lead {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .article--fluid .article-body .article-lead .article-lead--lede, .article--fluid .article-body .article-lead .article-lead--meta {
    grid-column: 1/span 6;
  }
  .article--fluid .article-body .body-container {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .article--fluid .article-body .body-container .fluid-container {
    grid-column: 1/span 6;
  }
  .article--fluid .article-body .body-container .fluid-container aside {
    padding: 0 calc(2rem + 2vw) calc(2rem + 2vw) calc(2rem + 2vw);
    overflow: auto;
  }
  .article--fluid .article-body .body-container .fluid-container .image-single, .article--fluid .article-body .body-container .fluid-container .article-drawer, .article--fluid .article-body .body-container .fluid-container aside {
    width: auto;
  }
  .article--fluid .article-body .body-container .fluid-container .fluid-left {
    float: none;
    margin-right: 0;
  }
  .article--fluid .article-body .body-container .fluid-container .fluid-right {
    float: none;
    margin-left: 0;
  }
}

.article--fluid.dark-mode .article-body {
  background-color: #111111;
}
.article--fluid.dark-mode .article-body h1, .article--fluid.dark-mode .article-body h2, .article--fluid.dark-mode .article-body h3, .article--fluid.dark-mode .article-body h4, .article--fluid.dark-mode .article-body p, .article--fluid.dark-mode .article-body li, .article--fluid.dark-mode .article-body blockquote, .article--fluid.dark-mode .article-body figcaption {
  color: #fdfdfd;
}
.article--fluid.dark-mode .article-body hr {
  border-top: #fdfdfd 1px solid;
}
.article--fluid.dark-mode .article-body a:hover {
  color: #fdfdfd;
}
.article--fluid.dark-mode .article-body .body-container p a {
  color: #fdfdfd;
}
.article--fluid.dark-mode .article-body .body-container .inset h1, .article--fluid.dark-mode .article-body .body-container .inset h2, .article--fluid.dark-mode .article-body .body-container .inset h3, .article--fluid.dark-mode .article-body .body-container .inset h4, .article--fluid.dark-mode .article-body .body-container .inset h5, .article--fluid.dark-mode .article-body .body-container .inset p, .article--fluid.dark-mode .article-body .body-container .inset li {
  color: #aaaaaa;
}
.article--fluid.dark-mode .article-body .article-lead .article-lead--meta {
  border-bottom: #fdfdfd solid 1px;
}
.article--fluid.dark-mode .article-body .article-drawer .article-drawer--header h1, .article--fluid.dark-mode .article-body .article-drawer .article-drawer--header h2, .article--fluid.dark-mode .article-body .article-drawer .article-drawer--header h3 {
  color: #0054ff;
}
.article--fluid.dark-mode .article-credits {
  background: #111111;
  border-bottom: #aaaaaa solid 1px;
}
.article--fluid.dark-mode .article-credits .article-credits--body p {
  color: #fdfdfd;
}

.article--immersive .article-body {
  background-color: #fdfdfd;
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
}
.article--immersive .article-body h1, .article--immersive .article-body h2, .article--immersive .article-body h3, .article--immersive .article-body h4, .article--immersive .article-body p, .article--immersive .article-body li, .article--immersive .article-body blockquote, .article--immersive .article-body figcaption {
  color: #111111;
}
.article--immersive .article-body hr {
  border-top: #111111 1px solid;
}
.article--immersive .article-body a:hover {
  color: #aaaaaa;
}
.article--immersive .article-body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
}
.article--immersive .article-body a {
  color: #0054ff;
}
.article--immersive .article-body .hero-video {
  position: absolute;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: auto;
}
.article--immersive .article-body .article-header, .article--immersive .article-body .article-lead, .article--immersive .article-body .body-container {
  position: inherit;
}
.article--immersive .article-body .article-header {
  padding: calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  text-align: center;
  padding-top: calc(6rem + 6vw);
  padding-bottom: calc(1.25rem + 1vw);
  color: #fdfdfd;
}
@media (max-width: 720px) {
  .article--immersive .article-body .article-header {
    padding: 1.75rem;
  }
}
.article--immersive .article-body .article-header .article--issue {
  grid-column: 3/span 8;
  margin-bottom: calc(1.25rem + 1vw);
}
.article--immersive .article-body .article-header .article--headline {
  grid-column: 3/span 8;
  margin-bottom: calc(1.25rem + 1vw);
}
.article--immersive .article-body .article-header .article--headline h1 {
  font-size: calc(3rem + 3.5vw);
}
.article--immersive .article-body .article-header .article--deck {
  grid-column: 4/span 6;
  margin-bottom: calc(2rem + 2vw);
}
.article--immersive .article-body .article-header .article--deck h2 {
  font-size: calc(1rem + .5vw);
}
.article--immersive .article-body .article-header .article-header--byline {
  grid-column: 4/span 3;
}
.article--immersive .article-body .article-header .article-header--date {
  grid-column: 7/span 3;
}
.article--immersive .article-body .article-header .article-header--byline, .article--immersive .article-body .article-header .article-header--date {
  margin-bottom: calc(1.25rem + 1vw);
  text-align: center;
}
.article--immersive .article-body .article-lead {
  padding: calc(0.5rem + .1vw) calc(1.25rem + 1vw) calc(1.25rem + 1vw) calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  color: #fdfdfd;
}
@media (max-width: 720px) {
  .article--immersive .article-body .article-lead {
    padding: calc(0.5rem + .1vw) 1.75rem 2.5rem 1.75rem;
  }
}
.article--immersive .article-body .article-lead .article-lead--lede {
  border-bottom: #111111 solid 1px;
  padding-bottom: calc(2rem + 2vw);
  grid-column: 4/span 6;
}
.article--immersive .article-body .body-container {
  padding: calc(0.5rem + .1vw) calc(1.25rem + 1vw) calc(1.25rem + 1vw) calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding-top: calc(1.25rem + 1vw);
  padding-bottom: calc(3rem + 4vw);
  color: #fdfdfd;
}
@media (max-width: 720px) {
  .article--immersive .article-body .body-container {
    padding: calc(0.5rem + .1vw) 1.75rem 2.5rem 1.75rem;
  }
}
.article--immersive .article-body .body-container p:last-child {
  margin-bottom: 0;
}
.article--immersive .article-body .body-container p, .article--immersive .article-body .body-container h1, .article--immersive .article-body .body-container h2, .article--immersive .article-body .body-container h3, .article--immersive .article-body .body-container h4, .article--immersive .article-body .body-container h5, .article--immersive .article-body .body-container h6, .article--immersive .article-body .body-container blockquote, .article--immersive .article-body .body-container ol, .article--immersive .article-body .body-container ul, .article--immersive .article-body .body-container hr, .article--immersive .article-body .body-container .article-lead--lede, .article--immersive .article-body .body-container .article-space {
  grid-column: 4/span 6;
}
.article--immersive .article-body .body-container figure, .article--immersive .article-body .body-container .image-single, .article--immersive .article-body .body-container .inset {
  grid-column: 4/span 6;
}
.article--immersive .article-body .body-container iframe, .article--immersive .article-body .body-container .media-embed {
  grid-column: 2/span 10;
}
.article--immersive .article-body .body-container aside {
  grid-column: 4/span 6;
}
.article--immersive .article-body .body-container .article-drawer, .article--immersive .article-body .body-container .article-list {
  grid-column: 4/span 6;
}
.article--immersive .article-body .body-container .image-wide {
  grid-column: 2/span 10;
}
.article--immersive .article-body .body-container .image-full {
  grid-column: 1/span 12;
}
.article--immersive .article-body .body-container .image-double {
  grid-column: 2/span 10;
}
.article--immersive .article-body .body-container .media-embed {
  margin-bottom: calc(2rem + 2vw);
}
@media (max-width: 1240px) {
  .article--immersive .article-body .article-header .article--headline, .article--immersive .article-body .article-header .article--deck, .article--immersive .article-body .article-header .article--issue {
    grid-column: 2/span 10;
  }
  .article--immersive .article-body .article-header .article-header--byline {
    grid-column: 2/span 5;
  }
  .article--immersive .article-body .article-header .article-header--date {
    grid-column: 7/span 5;
  }
  .article--immersive .article-body .article-lead .article-lead--lede {
    grid-column: 2/span 10;
  }
  .article--immersive .article-body .body-container p, .article--immersive .article-body .body-container h1, .article--immersive .article-body .body-container h2, .article--immersive .article-body .body-container h3, .article--immersive .article-body .body-container h4, .article--immersive .article-body .body-container h5, .article--immersive .article-body .body-container h6, .article--immersive .article-body .body-container ol, .article--immersive .article-body .body-container ul, .article--immersive .article-body .body-container blockquote, .article--immersive .article-body .body-container hr, .article--immersive .article-body .body-container .article-lead--lede, .article--immersive .article-body .body-container .article-space {
    grid-column: 2/span 10;
  }
  .article--immersive .article-body .body-container figure, .article--immersive .article-body .body-container .image-single, .article--immersive .article-body .body-container .inset {
    grid-column: 2/span 10;
  }
  .article--immersive .article-body .body-container aside {
    grid-column: 2/span 10;
  }
  .article--immersive .article-body .body-container .article-drawer, .article--immersive .article-body .body-container .article-list {
    grid-column: 2/span 10;
  }
  .article--immersive .article-body .body-container .image-wide {
    grid-column: 1/span 12;
  }
  .article--immersive .article-body .body-container .image-full {
    grid-column: 1/span 12;
  }
  .article--immersive .article-body .body-container .image-double {
    grid-column: 1/span 12;
  }
}
@media (max-width: 720px) {
  .article--immersive .article-body .article-header {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
    padding-top: calc(6rem + 6vw);
    padding-bottom: calc(1.25rem + 1vw);
  }
  .article--immersive .article-body .article-header .article--headline, .article--immersive .article-body .article-header .article--deck, .article--immersive .article-body .article-header .article--issue {
    grid-column: 1/span 6;
  }
  .article--immersive .article-body .article-header .article-header--byline {
    grid-column: 1/span 3;
  }
  .article--immersive .article-body .article-header .article-header--date {
    grid-column: 4/span 3;
  }
  .article--immersive .article-body .article-lead {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .article--immersive .article-body .article-lead .article-lead--lede {
    grid-column: 1/span 6;
  }
  .article--immersive .article-body .body-container {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .article--immersive .article-body .body-container p, .article--immersive .article-body .body-container h1, .article--immersive .article-body .body-container h2, .article--immersive .article-body .body-container h3, .article--immersive .article-body .body-container h4, .article--immersive .article-body .body-container h5, .article--immersive .article-body .body-container h6, .article--immersive .article-body .body-container ol, .article--immersive .article-body .body-container ul, .article--immersive .article-body .body-container blockquote, .article--immersive .article-body .body-container hr, .article--immersive .article-body .body-container .article-lead--lede, .article--immersive .article-body .body-container .article-space {
    grid-column: 1/span 6;
  }
  .article--immersive .article-body .body-container iframe, .article--immersive .article-body .body-container .media-embed {
    grid-column: 1/span 6;
  }
  .article--immersive .article-body .body-container figure, .article--immersive .article-body .body-container .image-single, .article--immersive .article-body .body-container .inset {
    grid-column: 1/span 6;
  }
  .article--immersive .article-body .body-container aside {
    grid-column: 1/span 6;
  }
  .article--immersive .article-body .body-container .article-drawer, .article--immersive .article-body .body-container .article-list {
    grid-column: 1/span 6;
  }
  .article--immersive .article-body .body-container .image-wide {
    grid-column: 1/span 6;
  }
  .article--immersive .article-body .body-container .image-full {
    grid-column: 1/span 6;
  }
  .article--immersive .article-body .body-container .image-double {
    grid-column: 1/span 6;
  }
}
.article--immersive .article-credits {
  background: #fdfdfd;
  border-top: #aaaaaa solid 1px;
}
.article--immersive .article-credits .article-credits--body {
  padding: calc(1.25rem + 1vw) 0;
}
.article--immersive .article-credits .article-credits--body .article-credits--contributor {
  padding: 0;
  border: none;
}

.article--immersive.dark-mode .article-body {
  background-color: #111111;
}
.article--immersive.dark-mode .article-body h1, .article--immersive.dark-mode .article-body h2, .article--immersive.dark-mode .article-body h3, .article--immersive.dark-mode .article-body h4, .article--immersive.dark-mode .article-body p, .article--immersive.dark-mode .article-body li, .article--immersive.dark-mode .article-body blockquote, .article--immersive.dark-mode .article-body figcaption {
  color: #fdfdfd;
}
.article--immersive.dark-mode .article-body hr {
  border-top: #fdfdfd 1px solid;
}
.article--immersive.dark-mode .article-body a:hover {
  color: #fdfdfd;
}
.article--immersive.dark-mode .article-body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
.article--immersive.dark-mode .article-body .article-lead .article-lead--lede {
  border-bottom: #fdfdfd solid 1px;
}
.article--immersive.dark-mode .article-body .body-container p a {
  color: #fdfdfd;
}
.article--immersive.dark-mode .article-body .body-container .inset h1, .article--immersive.dark-mode .article-body .body-container .inset h2, .article--immersive.dark-mode .article-body .body-container .inset h3, .article--immersive.dark-mode .article-body .body-container .inset h4, .article--immersive.dark-mode .article-body .body-container .inset h5, .article--immersive.dark-mode .article-body .body-container .inset p, .article--immersive.dark-mode .article-body .body-container .inset li {
  color: #aaaaaa;
}
.article--immersive.dark-mode .article-body .body-container .article-drawer--panel p a {
  color: #111111;
}
.article--immersive.dark-mode .article-credits {
  background: #111111;
  border-bottom: #aaaaaa solid 1px;
}
.article--immersive.dark-mode .article-credits .article-credits--body p {
  color: #fdfdfd;
}

.article--simple .article-hero {
  padding: calc(1.25rem + 1vw) calc(1.25rem + 1vw) 0 calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
}
@media (max-width: 720px) {
  .article--simple .article-hero {
    padding: 1.75rem 1.75rem 0 1.75rem;
  }
}
.article--simple .article-hero img, .article--simple .article-hero video {
  width: 100%;
  grid-column: span 12;
}
.article--simple .article-hero h4 {
  grid-column: span 12;
}
.article--simple .article-hero .video-embed {
  grid-column: span 12;
}
.article--simple .article-hero .image-source {
  text-align: right;
}
.article--simple .article-body .article-header {
  padding: calc(1.25rem + 1vw) calc(1.25rem + 1vw) 0 calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
}
@media (max-width: 720px) {
  .article--simple .article-body .article-header {
    padding: 1.75rem 1.75rem 0 1.75rem;
  }
}
.article--simple .article-body .article-header .article--issue {
  grid-column: 3/span 8;
  margin-bottom: 1rem;
}
.article--simple .article-body .article-header .article-header--headline {
  grid-column: 3/span 8;
}
.article--simple .article-body .article-header .article-header--headline h1 {
  font-size: calc(1.75rem + 1.75vw);
  margin-bottom: 1rem;
}
.article--simple .article-body .article-header .article-header--meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-column: 3/span 8;
  padding-bottom: calc(1.25rem + 1vw);
  border-bottom: #0054ff solid 1px;
}
.article--simple .article-body .article-header .article-header--meta .article-header--deck {
  margin-bottom: 1.75rem;
  flex-basis: 100%;
}
.article--simple .article-body .article-header .article-header--meta .article-header--byline {
  flex-basis: 50%;
}
.article--simple .article-body .article-header .article-header--meta .article-header--date {
  flex-basis: 50%;
  text-align: right;
}
.article--simple .article-body .article-lead {
  padding: calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: calc(1.25rem + 1vw);
}
@media (max-width: 720px) {
  .article--simple .article-body .article-lead {
    padding: 1.75rem;
  }
}
.article--simple .article-body .article-lead .article-lead--lede {
  grid-column: 3/span 8;
}
.article--simple .article-body .article-lead h2 {
  margin-top: calc(1.25rem + 1vw);
}
.article--simple .article-body .body-container {
  padding: calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding-top: calc(1.25rem + 1vw);
}
@media (max-width: 720px) {
  .article--simple .article-body .body-container {
    padding: 1.75rem;
  }
}
.article--simple .article-body .body-container p:last-child {
  margin-bottom: 0;
}
.article--simple .article-body .body-container p, .article--simple .article-body .body-container h1, .article--simple .article-body .body-container h2, .article--simple .article-body .body-container h3, .article--simple .article-body .body-container h4, .article--simple .article-body .body-container h5, .article--simple .article-body .body-container h6, .article--simple .article-body .body-container ul, .article--simple .article-body .body-container ol, .article--simple .article-body .body-container blockquote, .article--simple .article-body .body-container hr {
  grid-column: 3/span 8;
}
.article--simple .article-body .body-container figure, .article--simple .article-body .body-container .media-embed, .article--simple .article-body .body-container .image-single, .article--simple .article-body .body-container .article-table, .article--simple .article-body .body-container .article-space, .article--simple .article-body .body-container .inset {
  grid-column: 3/span 8;
}
.article--simple .article-body .body-container aside {
  grid-auto-flow: dense;
  grid-column: 9/span 3;
  grid-row: span 3;
}
.article--simple .article-body .body-container .article-drawer {
  grid-column: 3/span 8;
}
.article--simple .article-body .body-container .image-wide {
  grid-column: 2/span 10;
}
.article--simple .article-body .body-container .image-full {
  grid-column: 1/span 12;
}
.article--simple .article-body .body-container .image-double {
  grid-column: 1/span 12;
}
@media (max-width: 1240px) {
  .article--simple .article-body .article-header .article--issue {
    grid-column: 2/span 10;
  }
  .article--simple .article-body .article-header .article-header--headline {
    grid-column: 2/span 10;
  }
  .article--simple .article-body .article-header .article-header--meta {
    grid-column: 2/span 10;
  }
  .article--simple .article-body .article-lead .article-lead--lede {
    grid-column: 2/span 10;
  }
  .article--simple .article-body .body-container p, .article--simple .article-body .body-container h1, .article--simple .article-body .body-container h2, .article--simple .article-body .body-container h3, .article--simple .article-body .body-container h4, .article--simple .article-body .body-container h5, .article--simple .article-body .body-container h6, .article--simple .article-body .body-container ul, .article--simple .article-body .body-container ol, .article--simple .article-body .body-container blockquote, .article--simple .article-body .body-container aside {
    grid-column: 2/span 10;
  }
  .article--simple .article-body .body-container figure, .article--simple .article-body .body-container .media-embed, .article--simple .article-body .body-container hr, .article--simple .article-body .body-container .image-single, .article--simple .article-body .body-container .image-wide, .article--simple .article-body .body-container .image-full, .article--simple .article-body .body-container .image-double, .article--simple .article-body .body-container .article-table, .article--simple .article-body .body-container .article-space, .article--simple .article-body .body-container .inset {
    grid-column: 2/span 10;
  }
  .article--simple .article-body .body-container aside {
    margin: 1.75rem 0;
  }
  .article--simple .article-body .body-container .article-drawer {
    grid-column: 2/span 10;
  }
}
@media (max-width: 720px) {
  .article--simple .article-hero {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
    padding: calc(1.25rem + 1vw) calc(1.25rem + 1vw) 0 calc(1.25rem + 1vw);
    margin-top: 0;
  }
}
@media (max-width: 720px) and (max-width: 720px) {
  .article--simple .article-hero {
    padding: 1.75rem 1.75rem 0 1.75rem;
  }
}
@media (max-width: 720px) {
  .article--simple .article-hero img, .article--simple .article-hero video {
    width: 100%;
    grid-column: span 6;
  }
}
@media (max-width: 720px) {
  .article--simple .article-hero h4 {
    grid-column: span 6;
  }
}
@media (max-width: 720px) {
  .article--simple .article-body .article-header {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .article--simple .article-body .article-header .article--issue {
    grid-column: span 6;
  }
  .article--simple .article-body .article-header .article-header--headline {
    grid-column: span 6;
  }
  .article--simple .article-body .article-header .article-header--meta {
    grid-column: span 6;
  }
  .article--simple .article-body .article-lead {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .article--simple .article-body .article-lead .article-lead--lede {
    grid-column: span 6;
  }
  .article--simple .article-body .body-container {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .article--simple .article-body .body-container p, .article--simple .article-body .body-container h1, .article--simple .article-body .body-container h2, .article--simple .article-body .body-container h3, .article--simple .article-body .body-container h4, .article--simple .article-body .body-container h5, .article--simple .article-body .body-container h6, .article--simple .article-body .body-container ul, .article--simple .article-body .body-container ol, .article--simple .article-body .body-container blockquote, .article--simple .article-body .body-container figure, .article--simple .article-body .body-container hr, .article--simple .article-body .body-container aside,
.article--simple .article-body .body-container .image-single, .article--simple .article-body .body-container .image-wide, .article--simple .article-body .body-container .image-full, .article--simple .article-body .body-container .image-double, .article--simple .article-body .body-container .article-table, .article--simple .article-body .body-container .article-space, .article--simple .article-body .body-container .inset {
    grid-column: span 6;
  }
  .article--simple .article-body .body-container .article-drawer {
    grid-column: span 6;
  }
}

.article--simple.dark-mode .article-hero {
  background: #111111;
}
.article--simple.dark-mode .article-body {
  background-color: #111111;
}
.article--simple.dark-mode .article-body h1, .article--simple.dark-mode .article-body h2, .article--simple.dark-mode .article-body h3, .article--simple.dark-mode .article-body h4, .article--simple.dark-mode .article-body p, .article--simple.dark-mode .article-body li, .article--simple.dark-mode .article-body blockquote, .article--simple.dark-mode .article-body figcaption {
  color: #fdfdfd;
}
.article--simple.dark-mode .article-body hr {
  border-top: #fdfdfd 1px solid;
}
.article--simple.dark-mode .article-body a:hover {
  color: #fdfdfd;
}
.article--simple.dark-mode .article-body .body-container p a {
  color: #fdfdfd;
}
.article--simple.dark-mode .article-body .body-container .inset h1, .article--simple.dark-mode .article-body .body-container .inset h2, .article--simple.dark-mode .article-body .body-container .inset h3, .article--simple.dark-mode .article-body .body-container .inset h4, .article--simple.dark-mode .article-body .body-container .inset h5, .article--simple.dark-mode .article-body .body-container .inset p, .article--simple.dark-mode .article-body .body-container .inset li {
  color: #aaaaaa;
}
.article--simple.dark-mode .article-body .article-header--meta {
  border-bottom: #fdfdfd solid 1px;
}
.article--simple.dark-mode .article-body .article-drawer .article-drawer--header h1, .article--simple.dark-mode .article-body .article-drawer .article-drawer--header h2, .article--simple.dark-mode .article-body .article-drawer .article-drawer--header h3 {
  color: #0054ff;
}
.article--simple.dark-mode .article-credits {
  background: #111111;
  border-bottom: #aaaaaa solid 1px;
}
.article--simple.dark-mode .article-credits .article-credits--body p {
  color: #fdfdfd;
}
.article--simple.dark-mode .article-credits .article-credits--body .article-credits--contributor {
  border-top: none;
}

.dispatch .article-head .header-image {
  width: 100%;
  height: calc(24rem + 18vw);
  max-height: 720px;
  background: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.dispatch .article-head .header-image .image-source {
  padding: 0;
  margin: 0;
  position: absolute;
  color: #fdfdfd;
  font-size: calc(.7rem + .3vw);
  bottom: 0.75rem;
  right: 1rem;
}
.dispatch .article-head .header-info {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding: calc(1.25rem + 1vw);
  border-bottom: #111111 solid 1px;
}
@media (max-width: 720px) {
  .dispatch .article-head .header-info {
    padding: 1.75rem;
  }
}
.dispatch .article-head .header-info .header-info--meta {
  grid-column: 2/span 10;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.dispatch .article-head .header-info .header-info--meta h2 {
  padding: 0;
  margin: 0;
}
.dispatch .article-head .header-info .header-info--meta .sticker {
  top: -6.25rem;
  right: 10vw;
}
@media (max-width: 1240px) {
  .dispatch .article-head .header-info .header-info--meta {
    grid-column: 1/span 12;
  }
}
@media (max-width: 720px) {
  .dispatch .article-head .header-info {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .dispatch .article-head .header-info .header-info--meta {
    grid-column: 1/span 6;
  }
  .dispatch .article-head .header-info .header-info--meta .sticker {
    right: 5rem;
    top: -5rem;
  }
}
.dispatch .article-body .article-lead {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding: calc(1.25rem + 1vw);
}
@media (max-width: 720px) {
  .dispatch .article-body .article-lead {
    padding: 1.75rem;
  }
}
.dispatch .article-body .article-lead .article-lead--heads {
  grid-column: 2/span 10;
}
.dispatch .article-body .article-lead .article-lead--heads h1 {
  font-size: calc(1.75rem + 1.75vw);
  margin-top: calc(0.5rem + .1vw);
  margin-bottom: calc(1.25rem + 1vw);
}
.dispatch .article-body .article-lead .article-lead--deck {
  grid-column: 2/span 7;
}
.dispatch .article-body .article-lead .article-lead--deck h2 {
  margin-bottom: calc(1.25rem + 1vw);
}
.dispatch .article-body .article-lead .article-lead--byline {
  grid-column: 2/span 7;
  border-bottom: #aaaaaa solid 1px;
}
.dispatch .article-body .article-lead .article-lead--byline h2 {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 1920px) {
  .dispatch .article-body .article-lead .article-lead--heads {
    grid-column: 2/span 7;
  }
}
@media (max-width: 1240px) {
  .dispatch .article-body .article-lead .article-lead--heads, .dispatch .article-body .article-lead .article-lead--deck, .dispatch .article-body .article-lead .article-lead--byline {
    grid-column: 1/span 12;
  }
  .dispatch .article-body .article-lead .article-lead--deck {
    margin-bottom: 1rem;
    padding-right: 0;
  }
}
@media (max-width: 720px) {
  .dispatch .article-body .article-lead {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
    padding-top: calc(2rem + 2vw);
  }
  .dispatch .article-body .article-lead .article-lead--heads, .dispatch .article-body .article-lead .article-lead--deck, .dispatch .article-body .article-lead .article-lead--byline {
    grid-column: 1/span 6;
  }
  .dispatch .article-body .article-lead .article-lead--deck h2 {
    margin-bottom: 0;
  }
  .dispatch .article-body .article-lead .article-lead--heads .headline {
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.dispatch .article-body .body-container {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding: calc(0.5rem + .1vw) calc(1.25rem + 1vw) calc(1.25rem + 1vw) calc(1.25rem + 1vw);
  padding-bottom: calc(2rem + 2vw);
  border-bottom: #111111 solid 1px;
}
@media (max-width: 720px) {
  .dispatch .article-body .body-container {
    padding: calc(0.5rem + .1vw) 1.75rem 2.5rem 1.75rem;
  }
}
.dispatch .article-body .body-container p, .dispatch .article-body .body-container h1, .dispatch .article-body .body-container h2, .dispatch .article-body .body-container h3, .dispatch .article-body .body-container h4, .dispatch .article-body .body-container h5, .dispatch .article-body .body-container h6, .dispatch .article-body .body-container blockquote, .dispatch .article-body .body-container .inset {
  grid-column: 2/span 7;
}
.dispatch .article-body .body-container p a, .dispatch .article-body .body-container h1 a, .dispatch .article-body .body-container h2 a, .dispatch .article-body .body-container h3 a, .dispatch .article-body .body-container h4 a, .dispatch .article-body .body-container h5 a, .dispatch .article-body .body-container h6 a, .dispatch .article-body .body-container blockquote a, .dispatch .article-body .body-container .inset a {
  color: #777777;
}
.dispatch .article-body .body-container p a:hover, .dispatch .article-body .body-container h1 a:hover, .dispatch .article-body .body-container h2 a:hover, .dispatch .article-body .body-container h3 a:hover, .dispatch .article-body .body-container h4 a:hover, .dispatch .article-body .body-container h5 a:hover, .dispatch .article-body .body-container h6 a:hover, .dispatch .article-body .body-container blockquote a:hover, .dispatch .article-body .body-container .inset a:hover {
  opacity: 0.6;
}
.dispatch .article-body .body-container p:last-child, .dispatch .article-body .body-container h1:last-child, .dispatch .article-body .body-container h2:last-child, .dispatch .article-body .body-container h3:last-child, .dispatch .article-body .body-container h4:last-child, .dispatch .article-body .body-container h5:last-child, .dispatch .article-body .body-container h6:last-child, .dispatch .article-body .body-container blockquote:last-child, .dispatch .article-body .body-container .inset:last-child {
  margin-bottom: 0;
}
.dispatch .article-body .body-container ul, .dispatch .article-body .body-container ol {
  grid-column: 2/span 7;
  padding-left: calc(2rem + 2vw);
  margin-top: 1rem;
  margin-bottom: calc(2rem + 2vw);
}
.dispatch .article-body .body-container .single-image, .dispatch .article-body .body-container figure, .dispatch .article-body .body-container img, .dispatch .article-body .body-container iframe {
  grid-column: 2/span 7;
}
.dispatch .article-body .body-container .large-image {
  grid-column: 1/span 11;
}
@media (min-width: 1920px) {
  .dispatch .article-body .body-container {
    grid-column: 2/span 6;
  }
}
@media (max-width: 1240px) {
  .dispatch .article-body .body-container p, .dispatch .article-body .body-container h1, .dispatch .article-body .body-container h2, .dispatch .article-body .body-container h3, .dispatch .article-body .body-container h4, .dispatch .article-body .body-container h5, .dispatch .article-body .body-container h6, .dispatch .article-body .body-container blockquote, .dispatch .article-body .body-container .inset {
    grid-column: 1/span 12;
  }
  .dispatch .article-body .body-container iframe {
    height: calc(20rem + 14vw) !important;
  }
  .dispatch .article-body .body-container .single-image, .dispatch .article-body .body-container figure, .dispatch .article-body .body-container img, .dispatch .article-body .body-container iframe {
    grid-column: 1/span 12;
  }
  .dispatch .article-body .body-container .large-image {
    grid-column: 1/span 12;
  }
}
@media (max-width: 720px) {
  .dispatch .article-body .body-container {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .dispatch .article-body .body-container p, .dispatch .article-body .body-container h1, .dispatch .article-body .body-container h2, .dispatch .article-body .body-container h3, .dispatch .article-body .body-container h4, .dispatch .article-body .body-container h5, .dispatch .article-body .body-container h6, .dispatch .article-body .body-container blockquote, .dispatch .article-body .body-container ol, .dispatch .article-body .body-container ul, .dispatch .article-body .body-container .inset {
    grid-column: 1/span 6;
  }
  .dispatch .article-body .body-container iframe {
    height: calc(12rem + 12vw) !important;
  }
  .dispatch .article-body .body-container .single-image, .dispatch .article-body .body-container figure, .dispatch .article-body .body-container img, .dispatch .article-body .body-container iframe {
    grid-column: 1/span 6;
  }
  .dispatch .article-body .body-container .large-image {
    grid-column: 1/span 6;
  }
}

.custom--container {
  padding: calc(2rem + 2vw);
}
.custom--container .text {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  width: 70%;
  max-width: 1240px;
}
@media (max-width: 720px) {
  .custom--container .text {
    width: 100%;
  }
}

.custom--chapters figure.chapter--hero {
  background: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
  margin-bottom: 0;
  height: calc(24rem + 18vw);
  overflow: hidden;
}
.custom--chapters figure.chapter--hero video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.custom--chapters .custom--chapter-cover {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: #0054ff solid 1px;
  border-bottom: #0054ff solid 1px;
}
.custom--chapters .custom--chapter-cover .cover--headline {
  padding: 2.5rem;
  flex-basis: 60%;
}
.custom--chapters .custom--chapter-cover .cover--headline h1, .custom--chapters .custom--chapter-cover .cover--headline h2, .custom--chapters .custom--chapter-cover .cover--headline h3, .custom--chapters .custom--chapter-cover .cover--headline h4 {
  color: #0054ff;
}
.custom--chapters .custom--chapter-cover .cover--headline h2, .custom--chapters .custom--chapter-cover .cover--headline h3 {
  margin-bottom: 0.75rem;
}
.custom--chapters .custom--chapter-cover .cover--byline {
  flex-basis: 30%;
}
.custom--chapters .custom--chapter-cover .cover--byline h3 {
  padding: 2.5rem;
  color: #0054ff;
}
@media (max-width: 1080px) {
  .custom--chapters .custom--chapter-cover .cover--headline, .custom--chapters .custom--chapter-cover .cover--byline {
    flex-basis: 100%;
  }
  .custom--chapters .custom--chapter-cover .cover--headline {
    padding: 1.75rem;
  }
  .custom--chapters .custom--chapter-cover .cover--byline h3 {
    padding: 1.75rem;
    padding-top: 0;
  }
}
.custom--chapters .custom--chapter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: #0054ff solid 1px;
}
.custom--chapters .custom--chapter .chapter--text-container {
  flex-basis: 60%;
}
.custom--chapters .custom--chapter .chapter--text-container .chapter--text {
  padding: 2.5rem;
}
.custom--chapters .custom--chapter .chapter--text-container .chapter--text h1, .custom--chapters .custom--chapter .chapter--text-container .chapter--text h2, .custom--chapters .custom--chapter .chapter--text-container .chapter--text h3, .custom--chapters .custom--chapter .chapter--text-container .chapter--text h4 {
  color: #0054ff;
  margin-bottom: 0.75rem;
}
.custom--chapters .custom--chapter .chapter--text-container .chapter--text p {
  letter-spacing: 0;
}
.custom--chapters .custom--chapter .chapter--index, .custom--chapters .custom--chapter .chapter--side {
  flex-basis: 40%;
}
.custom--chapters .custom--chapter .chapter--index .chapter--index-links {
  padding: 2.5rem;
}
.custom--chapters .custom--chapter .chapter--index .chapter--index-links h4 {
  margin-top: 0;
}
.custom--chapters .custom--chapter .chapter--index .chapter--index-links h4 a {
  color: #0054ff;
  opacity: 1;
}
.custom--chapters .custom--chapter .chapter--side {
  background-color: #111111;
  background: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.custom--chapters .custom--chapter .chapter--side h1, .custom--chapters .custom--chapter .chapter--side h2, .custom--chapters .custom--chapter .chapter--side h3, .custom--chapters .custom--chapter .chapter--side h4, .custom--chapters .custom--chapter .chapter--side p, .custom--chapters .custom--chapter .chapter--side li, .custom--chapters .custom--chapter .chapter--side blockquote, .custom--chapters .custom--chapter .chapter--side figcaption {
  color: #fdfdfd;
}
.custom--chapters .custom--chapter .chapter--side hr {
  border-top: #fdfdfd 1px solid;
}
.custom--chapters .custom--chapter .chapter--side a:hover {
  color: #aaaaaa;
}
.custom--chapters .custom--chapter .chapter--side video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1080px) {
  .custom--chapters .custom--chapter .chapter--text-container {
    flex-basis: 100%;
  }
  .custom--chapters .custom--chapter .chapter--text-container .chapter--text {
    padding: 1.75rem;
  }
  .custom--chapters .custom--chapter .chapter--index, .custom--chapters .custom--chapter .chapter--side {
    flex-basis: 100%;
  }
  .custom--chapters .custom--chapter .chapter--index .chapter--index-links, .custom--chapters .custom--chapter .chapter--side .chapter--index-links {
    padding: 1.75rem;
    padding-top: 0;
  }
}

.home--features {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding: calc(1.25rem + 1vw);
}
@media (max-width: 720px) {
  .home--features {
    padding: 1.75rem;
  }
}
.home--features .home--features-single {
  grid-column: 1/span 8;
  margin-top: calc(-1.25rem - 1vw);
  margin-left: calc(-1.25rem - 1vw);
}
.home--features .home--features-single .teaser--card-l .featured-image {
  min-height: calc(20rem + 14vw);
}
.home--features .home--features-double {
  padding-bottom: 0;
  padding-left: 0;
  grid-column: 9/span 4;
}
.home--features .home--features-double .teaser--thumbnail-xs .image .image-bg {
  padding-top: 56.25%;
}
.home--features .home--features-double .teaser--thumbnail-xs .info {
  border-bottom: none;
  margin-bottom: 0;
}
.home--features .home--features-double .teaser--thumbnail-xs .info .headline {
  min-height: 0;
}
.home--features .home--features-triple {
  grid-column: 1/span 12;
  padding-top: calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
}
.home--features .home--features-triple .teaser--thumbnail-xs {
  grid-column: span 4;
}
@media (max-width: 1240px) {
  .home--features .home--features-single {
    grid-column: 1/span 12;
    margin-right: calc(-1.25rem - 1vw);
  }
  .home--features .home--features-double {
    grid-column: 1/span 12;
    display: grid;
    grid-template-columns: repeat(12, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .home--features .home--features-double .teaser--thumbnail-xs {
    grid-column: span 6;
  }
  .home--features .home--features-triple {
    padding-top: 0;
  }
}
@media (max-width: 720px) {
  .home--features {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .home--features .home--features-single {
    grid-column: 1/span 6;
    margin-top: -1.75rem;
    margin-left: -1.75rem;
    margin-right: -1.75rem;
  }
  .home--features .home--features-single .issue-banner--container {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .home--features .home--features-single .issue-banner--container .issue-banner {
    padding-top: 0.75rem;
    grid-column: 1/span 6;
  }
  .home--features .home--features-double {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
    grid-column: 1/span 6;
  }
  .home--features .home--features-double .teaser--thumbnail-s {
    grid-column: span 6;
  }
  .home--features .home--features-triple {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
    grid-column: 1/span 6;
  }
  .home--features .home--features-triple .teaser--thumbnail-xs {
    grid-column: span 6;
  }
  .home--features .home--features-triple .teaser--thumbnail-xs .image .image-bg {
    padding-top: 56.25%;
  }
  .home--features .home--features-triple .teaser--thumbnail-xs .info {
    border-bottom: none;
    margin-bottom: 0;
  }
  .home--features .home--features-triple .teaser--thumbnail-xs .info .headline {
    min-height: 0;
  }
}

.home--dispatches .home--dispatches-header {
  padding: calc(1.25rem + 1vw);
}
.home--dispatches .home--dispatches-header h4 {
  text-align: center;
}
.home--dispatches .home--dispatches-header h4 a {
  color: #0054ff;
}
.home--dispatches .ticker-container {
  display: grid;
  grid-template-columns: repeat(1, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding: calc(1.25rem + 1vw);
  overflow-x: hidden;
  position: relative;
  border-top: #111111 solid 1px;
  border-bottom: #111111 solid 1px;
  min-height: 8rem;
  padding-left: 0;
  padding-right: 0;
  min-height: 4rem;
}
@media (max-width: 720px) {
  .home--dispatches .ticker-container {
    padding: 1.75rem;
  }
}
.home--dispatches .ticker-container .ticker {
  grid-column: span 1;
  display: flex;
  position: relative;
  overflow-x: auto;
  padding-left: calc(1.25rem + 1vw);
  padding-right: calc(1.25rem + 1vw);
}
.home--dispatches .ticker-container .ticker::-webkit-scrollbar {
  display: none;
}
.home--dispatches .ticker-container .ticker .teaser--ticker-m:last-child {
  padding-right: calc(1.25rem + 1vw);
}

.home--vertical .title-banner--container {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
}
.home--vertical .title-banner--container .title-banner {
  grid-column: 2/span 10;
}
.home--vertical .home--vertical-tabs {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding: calc(1.25rem + 1vw);
}
@media (max-width: 720px) {
  .home--vertical .home--vertical-tabs {
    padding: 1.75rem;
  }
}
.home--vertical .home--vertical-tabs .teaser--tab-m {
  grid-column: 2/span 10;
}
@media (max-width: 1240px) {
  .home--vertical .title-banner--container .title-banner {
    grid-column: span 12;
  }
  .home--vertical .home--vertical-tabs .teaser--tab-m {
    grid-column: span 12;
  }
}
@media (max-width: 720px) {
  .home--vertical .home--vertical-featured {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .home--vertical .home--vertical-featured .teaser--tab-m {
    grid-column: span 6;
  }
}

.home--mix .home--mix-container {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding: calc(1.25rem + 1vw);
}
@media (max-width: 720px) {
  .home--mix .home--mix-container {
    padding: 1.75rem;
  }
}
.home--mix .home--mix-container .teaser--mix {
  grid-column: 2/span 10;
}
@media (max-width: 1240px) {
  .home--mix .home--mix-container .teaser--mix {
    grid-column: span 12;
  }
}
@media (max-width: 720px) {
  .home--mix {
    margin-bottom: calc(1.25rem + 1vw);
  }
  .home--mix .home--mix-container {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .home--mix .home--mix-container .teaser--mix {
    grid-column: span 6;
  }
}

.dispatch-landing .featured-dispatch {
  padding: calc(1.25rem + 1vw) calc(1.25rem + 1vw) 0 calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
}
@media (max-width: 720px) {
  .dispatch-landing .featured-dispatch {
    padding: 1.75rem 1.75rem 0 1.75rem;
  }
}
.dispatch-landing .featured-dispatch .news-title, .dispatch-landing .featured-dispatch .teaser--card-m {
  grid-column: 2/span 10;
}
.dispatch-landing .featured-dispatch .news-title {
  grid-row: 1;
}
.dispatch-landing .featured-dispatch .teaser--card-m {
  grid-row: 2;
}
@media (max-width: 1240px) {
  .dispatch-landing .featured-dispatch .news-title, .dispatch-landing .featured-dispatch .teaser--card-m, .dispatch-landing .featured-dispatch .teaser--tab-s {
    grid-column: 1/span 12;
  }
}
@media (max-width: 720px) {
  .dispatch-landing .featured-dispatch {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .dispatch-landing .featured-dispatch .news-title, .dispatch-landing .featured-dispatch .teaser--card-m, .dispatch-landing .featured-dispatch .teaser--tab-s {
    grid-column: 1/span 6;
  }
  .dispatch-landing .featured-dispatch .dispatch-header {
    margin-bottom: 0.5rem;
  }
}

.dispatch-body {
  padding: calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding-bottom: calc(2rem + 2vw);
}
@media (max-width: 720px) {
  .dispatch-body {
    padding: 1.75rem;
  }
}
.dispatch-body .news-title, .dispatch-body .cards, .dispatch-body .cta-button {
  grid-column: 2/span 10;
}
.dispatch-body .cta-button {
  margin-top: 0;
}
.dispatch-body .cards {
  margin-bottom: calc(1.25rem + 1vw);
}
@media (max-width: 1240px) {
  .dispatch-body .news-title, .dispatch-body .cards, .dispatch-body .cta-button {
    grid-column: 1/span 12;
  }
}
@media (max-width: 720px) {
  .dispatch-body {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .dispatch-body .news-title, .dispatch-body .cards, .dispatch-body .cta-button {
    grid-column: 1/span 6;
  }
}

.vertical--header .issue-banner--container .issue-banner {
  text-align: center;
}

.vertical-landing {
  margin-bottom: calc(1.25rem + 1vw);
}
.vertical-landing .vertical-landing--featured {
  padding: calc(1.25rem + 1vw) calc(1.25rem + 1vw) 0 calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding-top: 0;
}
@media (max-width: 720px) {
  .vertical-landing .vertical-landing--featured {
    padding: 1.75rem 1.75rem 0 1.75rem;
  }
}
.vertical-landing .vertical-landing--featured .teaser--card-m, .vertical-landing .vertical-landing--featured .teaser--card-l {
  grid-column: 2/span 10;
  margin-bottom: calc(1.25rem + 1vw);
}
.vertical-landing .vertical-landing--featured .teaser--card-m {
  grid-row: 2;
}
@media (max-width: 1240px) {
  .vertical-landing .vertical-landing--featured .teaser--card-m, .vertical-landing .vertical-landing--featured .news-list-card, .vertical-landing .vertical-landing--featured .teaser--card-l {
    grid-column: span 12;
  }
}
@media (max-width: 720px) {
  .vertical-landing .vertical-landing--featured {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .vertical-landing .vertical-landing--featured .teaser--card-m, .vertical-landing .vertical-landing--featured .news-list-card, .vertical-landing .vertical-landing--featured .teaser--card-l {
    grid-column: 1/span 6;
  }
  .vertical-landing .vertical-landing--featured .dispatch-header {
    margin-bottom: 0.5rem;
  }
}

.vertical--body {
  padding-top: calc(1.25rem + 1vw);
}
.vertical--body .title-banner--container {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
}
.vertical--body .title-banner--container .title-banner {
  grid-column: 2/span 10;
}
.vertical--body .vertical--body-content {
  padding: calc(0.5rem + .1vw) calc(1.25rem + 1vw) calc(1.25rem + 1vw) calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
}
@media (max-width: 720px) {
  .vertical--body .vertical--body-content {
    padding: calc(0.5rem + .1vw) 1.75rem 2.5rem 1.75rem;
  }
}
.vertical--body .vertical--body-content .tabs, .vertical--body .vertical--body-content .thumbnails, .vertical--body .vertical--body-content .cards, .vertical--body .vertical--body-content .cta-button {
  grid-column: 2/span 10;
}
.vertical--body .vertical--body-content .thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.vertical--body .vertical--body-content .thumbnails .teaser--card-m {
  flex-basis: 100%;
  margin-bottom: calc(2rem + 2vw);
}
.vertical--body .vertical--body-content .thumbnails .teaser--thumbnail-m {
  margin-bottom: 1rem;
  flex-basis: 48.6%;
}
.vertical--body .vertical--body-content .thumbnails .teaser--thumbnail-s {
  flex-basis: 32%;
}
@media (max-width: 1240px) {
  .vertical--body .title-banner--container .title-banner {
    grid-column: span 12;
  }
  .vertical--body .vertical--body-content .tabs, .vertical--body .vertical--body-content .thumbnails, .vertical--body .vertical--body-content .cards, .vertical--body .vertical--body-content .cta-button {
    grid-column: span 12;
  }
}
@media (max-width: 720px) {
  .vertical--body {
    padding-top: 0;
  }
  .vertical--body .title-banner--container {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .vertical--body .title-banner--container .title-banner {
    grid-column: span 6;
  }
  .vertical--body .vertical--body-content {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
    padding-bottom: calc(0.5rem + .1vw);
  }
  .vertical--body .vertical--body-content .tabs, .vertical--body .vertical--body-content .thumbnails, .vertical--body .vertical--body-content .cards, .vertical--body .vertical--body-content .cta-button {
    grid-column: span 6;
  }
  .vertical--body .vertical--body-content .thumbnails .teaser--thumbnail-m {
    flex-basis: 100%;
  }
  .vertical--body .vertical--body-content .thumbnails .teaser--thumbnail-s {
    flex-basis: 100%;
  }
}

.vertical--item .vertical--item-container {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding: calc(1.25rem + 1vw);
}
@media (max-width: 720px) {
  .vertical--item .vertical--item-container {
    padding: 1.75rem;
  }
}
.vertical--item .vertical--item-container .teaser--mix, .vertical--item .vertical--item-container .teaser--letter {
  grid-column: 2/span 10;
}
@media (max-width: 1240px) {
  .vertical--item .vertical--item-container .teaser--mix, .vertical--item .vertical--item-container .teaser--letter {
    grid-column: span 12;
  }
}
@media (max-width: 720px) {
  .vertical--item .vertical--item-container {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .vertical--item .vertical--item-container .teaser--mix, .vertical--item .vertical--item-container .teaser--letter {
    grid-column: span 6;
  }
}

.page--end {
  height: calc(2rem + 2vw);
}

.archive {
  padding: calc(0.5rem + .1vw) calc(1.25rem + 1vw) calc(1.25rem + 1vw) calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  margin-bottom: calc(2rem + 2vw);
}
@media (max-width: 720px) {
  .archive {
    padding: calc(0.5rem + .1vw) 1.75rem 2.5rem 1.75rem;
  }
}
.archive .news-title {
  margin-top: calc(1.25rem + 1vw);
}
.archive .cards, .archive .news-title {
  grid-column: 2/span 10;
}
@media (max-width: 1240px) {
  .archive .cards, .archive .news-title {
    grid-column: 1/span 12;
  }
}
@media (max-width: 720px) {
  .archive {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .archive .cards, .archive .news-title {
    grid-column: 1/span 6;
  }
}

.banner-alert, .footer-alert {
  display: absolute;
  width: auto;
  padding: 1.75rem;
}
@media (max-width: 720px) {
  .banner-alert, .footer-alert {
    padding: 1rem;
  }
}
.banner-alert p, .footer-alert p {
  padding: 0;
  margin: 0;
  font-size: calc(.9rem + .4vw);
}

.banner-alert {
  background-color: #0054ff;
}
.banner-alert h1, .banner-alert h2, .banner-alert h3, .banner-alert h4, .banner-alert p, .banner-alert li, .banner-alert blockquote, .banner-alert figcaption {
  color: #111111;
}
.banner-alert hr {
  border-top: #111111 1px solid;
}
.banner-alert a:hover {
  color: #fdfdfd;
}

.footer-alert {
  background-color: #111111;
}
.footer-alert h1, .footer-alert h2, .footer-alert h3, .footer-alert h4, .footer-alert p, .footer-alert li, .footer-alert blockquote, .footer-alert figcaption {
  color: #aaaaaa;
}
.footer-alert hr {
  border-top: #aaaaaa 1px solid;
}
.footer-alert a:hover {
  color: #fdfdfd;
}
.footer-alert p {
  font-size: calc(.7rem + .3vw);
}

.modal {
  position: fixed;
  bottom: calc(2rem + 2vw);
  right: calc(2rem + 2vw);
  z-index: 11;
  border-radius: 2.5rem;
  animation: modalIn 500ms ease;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
  padding: calc(1.25rem + 1vw);
  background-color: #0054ff;
}
@media (max-width: 720px) {
  .modal {
    padding: 1.75rem;
  }
}
.modal h1, .modal h2, .modal h3, .modal h4, .modal p, .modal li, .modal blockquote, .modal figcaption {
  color: #111111;
}
.modal hr {
  border-top: #111111 1px solid;
}
.modal a:hover {
  color: #fdfdfd;
}
.modal .modal-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal .modal-buttons .modal-button {
  background: #111111;
  color: #fdfdfd;
  display: inline-block;
  border-radius: 1.75rem;
  font-family: "neue-haas-grotesk-text", Helvetica, Arial, sans-serif;
  cursor: pointer;
  padding: 0.875rem 1.75rem 0.875rem 1.75rem;
}
.modal .modal-buttons .modal-button a {
  color: #fdfdfd;
}
.modal .modal-buttons .close {
  width: 1.75rem;
  height: 1.75rem;
  cursor: pointer;
}
.modal h2 {
  max-width: 360px;
  color: #fdfdfd;
  margin-bottom: 1.75rem;
}
@media (max-width: 720px) {
  .modal {
    right: 0.5rem;
    left: 0.5rem;
    display: none;
  }
}

.modal-bg {
  background: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.modal-bg h2 {
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
}

.modal__closed {
  animation: modalOut 500ms ease;
}

.cta-button {
  margin-top: calc(2rem + 2vw);
  padding: 1.75rem;
  color: #0054ff;
  border: #0054ff solid 1px;
  font-family: "antarctican-mono", Helvetica, Arial, sans-serif;
  font-size: calc(.9rem + .4vw);
  text-align: center;
}

.sticker {
  background-color: #111111;
  position: absolute;
  height: calc(4rem + 4vw);
  width: calc(4rem + 4vw);
  border-radius: calc(4rem + 4vw);
  display: flex;
  align-items: center;
  user-select: none;
  justify-content: center;
  transition: transform 200ms ease;
  z-index: 2;
}
.sticker h1, .sticker h2, .sticker h3, .sticker h4, .sticker p, .sticker li, .sticker blockquote, .sticker figcaption {
  color: #fdfdfd;
}
.sticker hr {
  border-top: #fdfdfd 1px solid;
}
.sticker a:hover {
  color: #aaaaaa;
}
.sticker h3 {
  transform: rotate(-45deg) perspective(0);
  padding: 0;
  margin: 0;
  padding-bottom: 0.05rem;
}
.sticker:hover {
  transform: scale(1.05);
}

.teaser--card-l {
  background-color: #111111;
  border-left: none;
  border-right: none;
  position: relative;
}
.teaser--card-l h1, .teaser--card-l h2, .teaser--card-l h3, .teaser--card-l h4, .teaser--card-l p, .teaser--card-l li, .teaser--card-l blockquote, .teaser--card-l figcaption {
  color: #fdfdfd;
}
.teaser--card-l hr {
  border-top: #fdfdfd 1px solid;
}
.teaser--card-l a:hover {
  color: #0054ff;
}
.teaser--card-l .featured-image {
  transition: opacity 300ms ease;
  background: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  min-height: calc(30rem + 20vw);
  display: flex;
}
.teaser--card-l .featured-image:hover {
  opacity: 0.9;
}
@media (max-width: 720px) {
  .teaser--card-l .featured-image {
    min-height: calc(24rem + 18vw);
  }
}
.teaser--card-l .featured-image .featured-info {
  padding: calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  width: 100%;
  position: relative;
  align-self: flex-end;
}
@media (max-width: 720px) {
  .teaser--card-l .featured-image .featured-info {
    padding: 1.75rem;
  }
}
.teaser--card-l .featured-image .featured-info .news-title {
  grid-column: 1/span 3;
}
.teaser--card-l .featured-image .featured-info .headline {
  grid-column: 1/span 6;
}
.teaser--card-l .featured-image .featured-info .deck {
  grid-column: 7/span 6;
}
.teaser--card-l .featured-image .featured-info .headline, .teaser--card-l .featured-image .featured-info .deck {
  margin-bottom: calc(1.25rem + 1vw);
}
.teaser--card-l .featured-image .featured-info .featured-headline {
  font-size: calc(1.75rem + 1.75vw);
  margin-bottom: calc(2rem + 2vw);
  padding-top: 0.5rem;
}
.teaser--card-l .featured-image .featured-info .deck {
  margin-bottom: 1.75rem;
}
.teaser--card-l .featured-image .featured-info .featured-info--meta {
  padding-top: calc(1.25rem + 1vw);
  border-top: #fdfdfd solid 1px;
  grid-column: 1/span 12;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.teaser--card-l .featured-image .featured-info .featured-info--meta h2 {
  margin-bottom: calc(0.5rem + .1vw);
}
@media (max-width: 720px) {
  .teaser--card-l .featured-image .featured-info {
    padding: calc(3rem + 4vw);
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
}
@media (max-width: 720px) and (max-width: 720px) {
  .teaser--card-l .featured-image .featured-info {
    padding: 1.75rem;
  }
}
@media (max-width: 720px) {
  .teaser--card-l .featured-image .featured-info .headline, .teaser--card-l .featured-image .featured-info .deck, .teaser--card-l .featured-image .featured-info .featured-info--meta, .teaser--card-l .featured-image .featured-info .news-title {
    grid-column: 1/span 6;
  }
}
@media (max-width: 720px) {
  .teaser--card-l .featured-image .featured-info .headline {
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 720px) {
  .teaser--card-l .featured-image .featured-info .deck {
    margin-bottom: 1rem;
  }
}
@media (max-width: 720px) {
  .teaser--card-l .featured-image .featured-info .featured-info--meta h2 {
    margin-bottom: 0;
  }
}
.teaser--card-l .featured-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

.teaser--card-m {
  border: #111111 solid 1px;
  box-shadow: 1rem 1rem 4rem rgba(0, 84, 255, 0.8), -1rem -1rem 4rem rgba(253, 253, 253, 0.8);
}
.teaser--card-m .featured-image, .teaser--card-m .teaser-image {
  position: relative;
  height: calc(20rem + 14vw);
  transition: opacity 300ms ease;
}
.teaser--card-m .featured-image:hover, .teaser--card-m .teaser-image:hover {
  opacity: 0.9;
}
.teaser--card-m .featured-image .teaser-image-bg, .teaser--card-m .teaser-image .teaser-image-bg {
  background: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}
.teaser--card-m .teaser-info {
  padding: 1.75rem;
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  position: relative;
}
@media (max-width: 720px) {
  .teaser--card-m .teaser-info {
    padding: 1rem;
  }
}
.teaser--card-m .teaser-info .headline, .teaser--card-m .teaser-info .deck {
  grid-column: 1/span 10;
}
.teaser--card-m .teaser-info .headline {
  margin-bottom: 0.5rem;
}
.teaser--card-m .teaser-info .teaser-headline {
  font-size: calc(1.75rem + 1.75vw);
  margin-bottom: calc(2rem + 2vw);
  padding-top: 0.5rem;
}
.teaser--card-m .teaser-info .deck {
  margin-bottom: 1.75rem;
}
.teaser--card-m .teaser-info .teaser-info--meta {
  grid-column: 1/span 12;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.teaser--card-m .teaser-info .teaser-info--meta h2 {
  margin-bottom: 1rem;
}
.teaser--card-m .teaser-info .sticker {
  top: -5rem;
  right: 4vw;
}
.teaser--card-m:hover {
  border: #0054ff solid 1px;
}
@media (max-width: 720px) {
  .teaser--card-m .teaser-image {
    height: calc(12rem + 12vw);
  }
  .teaser--card-m .teaser-info {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .teaser--card-m .teaser-info .headline, .teaser--card-m .teaser-info .deck, .teaser--card-m .teaser-info .teaser-info--meta {
    grid-column: 1/span 6;
  }
  .teaser--card-m .teaser-info .headline {
    margin-bottom: 1rem;
  }
  .teaser--card-m .teaser-info .deck {
    margin-bottom: 1rem;
  }
  .teaser--card-m .teaser-info .teaser-info--meta h2 {
    margin-bottom: 0;
  }
  .teaser--card-m .teaser-info .sticker {
    top: -3.75rem;
  }
}

.teaser--thumbnail-m .image, .teaser--thumbnail-s .image, .teaser--thumbnail-xs .image {
  margin-bottom: 1rem;
}
.teaser--thumbnail-m .image .image-bg, .teaser--thumbnail-m .image .image-empty, .teaser--thumbnail-s .image .image-bg, .teaser--thumbnail-s .image .image-empty, .teaser--thumbnail-xs .image .image-bg, .teaser--thumbnail-xs .image .image-empty {
  background: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 66%;
  height: 100%;
  width: 100%;
  vertical-align: top;
}
.teaser--thumbnail-m .info, .teaser--thumbnail-s .info, .teaser--thumbnail-xs .info {
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
}
.teaser--thumbnail-m .info .headline, .teaser--thumbnail-s .info .headline, .teaser--thumbnail-xs .info .headline {
  flex-basis: 100%;
  font-size: calc(1.5rem + 1vw);
  margin-bottom: 0.75rem;
}
.teaser--thumbnail-m .info .deck, .teaser--thumbnail-s .info .deck, .teaser--thumbnail-xs .info .deck {
  margin-bottom: 1.75rem;
}
.teaser--thumbnail-m .info .info--meta, .teaser--thumbnail-s .info .info--meta, .teaser--thumbnail-xs .info .info--meta {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.teaser--thumbnail-m .info .info--meta h2, .teaser--thumbnail-s .info .info--meta h2, .teaser--thumbnail-xs .info .info--meta h2 {
  margin-bottom: 1rem;
}
.teaser--thumbnail-m .info .info--meta .date, .teaser--thumbnail-s .info .info--meta .date, .teaser--thumbnail-xs .info .info--meta .date {
  display: none;
}
@media (max-width: 720px) {
  .teaser--thumbnail-m .image .image-bg, .teaser--thumbnail-s .image .image-bg, .teaser--thumbnail-xs .image .image-bg {
    padding-top: 56.25%;
  }
  .teaser--thumbnail-m .info, .teaser--thumbnail-s .info, .teaser--thumbnail-xs .info {
    border-bottom: none;
    margin-bottom: 0;
  }
  .teaser--thumbnail-m .info .headline, .teaser--thumbnail-s .info .headline, .teaser--thumbnail-xs .info .headline {
    min-height: 0;
  }
  .teaser--thumbnail-m:hover .info, .teaser--thumbnail-s:hover .info, .teaser--thumbnail-xs:hover .info {
    border-bottom: none;
  }
}

.teaser--thumbnail-s .image, .teaser--thumbnail-xs .image {
  background: #0054ff;
  position: relative;
}
.teaser--thumbnail-s .image .image-bg, .teaser--thumbnail-s .image .deck, .teaser--thumbnail-xs .image .image-bg, .teaser--thumbnail-xs .image .deck {
  transition: opacity 300ms ease;
}
.teaser--thumbnail-s .image .image-bg, .teaser--thumbnail-s .image .image-empty, .teaser--thumbnail-xs .image .image-bg, .teaser--thumbnail-xs .image .image-empty {
  background: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
}
.teaser--thumbnail-s .image .deck, .teaser--thumbnail-xs .image .deck {
  color: #fdfdfd;
  text-align: center;
  position: absolute;
  opacity: 0;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.teaser--thumbnail-s .image:hover .image-bg, .teaser--thumbnail-xs .image:hover .image-bg {
  opacity: 0.25;
}
.teaser--thumbnail-s .image:hover .deck, .teaser--thumbnail-xs .image:hover .deck {
  opacity: 1;
}
.teaser--thumbnail-s .info .headline, .teaser--thumbnail-xs .info .headline {
  font-size: calc(1rem + .8vw);
}
@media (max-width: 720px) {
  .teaser--thumbnail-s .info .headline, .teaser--thumbnail-xs .info .headline {
    font-size: calc(1.5rem + 1vw);
  }
}

.teaser--tab-l, .teaser--tab-m {
  display: flex;
  position: relative;
}
.teaser--tab-l .sticker, .teaser--tab-m .sticker {
  top: 1.75rem;
  left: -4vw;
}
.teaser--tab-l .image, .teaser--tab-m .image {
  flex-basis: 40%;
  height: auto;
  position: relative;
  transition: opacity 300ms ease;
}
.teaser--tab-l .image .image-bg, .teaser--tab-m .image .image-bg {
  background: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}
.teaser--tab-l .image:hover, .teaser--tab-m .image:hover {
  opacity: 0.9;
}
.teaser--tab-l .image-empty, .teaser--tab-m .image-empty {
  flex-basis: 40%;
}
.teaser--tab-l .info, .teaser--tab-m .info {
  flex-basis: 60%;
  padding: 1.75rem;
}
@media (max-width: 720px) {
  .teaser--tab-l .info, .teaser--tab-m .info {
    padding: 1rem;
  }
}
.teaser--tab-l .info .info--meta, .teaser--tab-m .info .info--meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.teaser--tab-l .info .info--meta h2, .teaser--tab-m .info .info--meta h2 {
  margin-bottom: 1rem;
}
.teaser--tab-l:last-child, .teaser--tab-m:last-child {
  border-bottom: #111111 solid 1px;
}
@media (max-width: 720px) {
  .teaser--tab-l, .teaser--tab-m {
    border-bottom: #111111 solid 1px;
    display: block;
    margin-bottom: 1rem;
  }
  .teaser--tab-l .image, .teaser--tab-m .image {
    width: 100%;
  }
  .teaser--tab-l .image .image-bg, .teaser--tab-m .image .image-bg {
    padding-top: 66%;
  }
  .teaser--tab-l .image-empty, .teaser--tab-m .image-empty {
    height: 1.75rem;
  }
  .teaser--tab-l .info, .teaser--tab-m .info {
    flex-basis: 100%;
  }
  .teaser--tab-l .info .headline, .teaser--tab-m .info .headline {
    min-height: calc(2rem + 2vw);
  }
  .teaser--tab-l .info .info--meta h2, .teaser--tab-m .info .info--meta h2 {
    margin-bottom: 0;
  }
}

.teaser--tab-l {
  margin-bottom: calc(1.25rem + 1vw);
  border: #111111 solid 1px;
}
.teaser--tab-l .info .headline {
  margin-bottom: 0.75rem;
}
.teaser--tab-l .info .deck {
  margin-bottom: 1rem;
  min-height: calc(3rem + 4vw);
}
@media (max-width: 720px) {
  .teaser--tab-l .info .headline {
    min-height: calc(2rem + 2vw);
  }
}

.teaser--tab-m {
  border-top: #111111 solid 1px;
  border-left: #111111 solid 1px;
  border-right: #111111 solid 1px;
}
.teaser--tab-m .image-empty {
  flex-basis: 40%;
}
.teaser--tab-m .info {
  padding: 1.75rem;
  flex-grow: 1;
  flex-basis: 100%;
}
@media (max-width: 720px) {
  .teaser--tab-m .info {
    padding: 1rem;
  }
}
.teaser--tab-m .info .headline {
  margin-bottom: 1.75rem;
  min-height: calc(3rem + 4vw);
}
.teaser--tab-m .info .info--meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.teaser--tab-m .info .info--meta h2 {
  margin-bottom: 1rem;
}
.teaser--tab-m:last-child {
  border-bottom: #111111 solid 1px;
}
@media (max-width: 720px) {
  .teaser--tab-m {
    border-bottom: #111111 solid 1px;
    display: block;
    margin-bottom: 1rem;
  }
  .teaser--tab-m .image {
    width: 100%;
  }
  .teaser--tab-m .image .image-bg {
    padding-top: 66%;
  }
  .teaser--tab-m .image-empty {
    height: 1.75rem;
  }
  .teaser--tab-m .info .headline {
    min-height: calc(2rem + 2vw);
  }
  .teaser--tab-m .info .info--meta h2 {
    margin-bottom: 0;
  }
}

.teaser--tab-s {
  padding: 1.75rem;
  position: relative;
  bottom: 1px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: #111111 solid 1px;
  border-left: #111111 solid 1px;
  border-right: #111111 solid 1px;
}
@media (max-width: 720px) {
  .teaser--tab-s {
    padding: 1rem;
  }
}
.teaser--tab-s h2 {
  padding: 0;
  margin: 0;
}
.teaser--tab-s h2 a {
  transition: opacity 200ms linear;
}
.teaser--tab-s h2 a:hover {
  opacity: 0.6;
}
.teaser--tab-s .date {
  margin-left: 1.75rem;
}
.teaser--tab-s:last-child {
  border-bottom: #111111 solid 1px;
}
@media (max-width: 720px) {
  .teaser--tab-s {
    display: block;
  }
  .teaser--tab-s h2 {
    margin-bottom: 1rem;
  }
  .teaser--tab-s .date {
    margin-left: 0;
    margin-bottom: 0;
  }
}

.teaser--issue-card {
  margin-bottom: calc(2rem + 2vw);
}
.teaser--issue-card .issue-art {
  width: auto;
  padding-top: 100%;
  background: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 300ms ease;
  box-shadow: 1rem 1rem 4rem rgba(0, 84, 255, 0.8), -1rem -1rem 4rem rgba(253, 253, 253, 0.8);
  margin-bottom: 0.75rem;
}
.teaser--issue-card .issue-art:hover {
  opacity: 0.9;
}
.teaser--issue-card .issue-title a {
  transition: opacity 200ms linear;
}
.teaser--issue-card .issue-title a:hover {
  opacity: 0.6;
}
.teaser--issue-card .issue-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.teaser--ticker-m {
  flex-shrink: 0;
  width: 48rem;
  margin-right: calc(2rem + 2vw);
}
.teaser--ticker-m .teaser-ticker--content {
  display: flex;
}
.teaser--ticker-m .teaser-ticker--content .image {
  transition: opacity 300ms ease;
  margin-right: calc(1.25rem + 1vw);
}
.teaser--ticker-m .teaser-ticker--content .image:hover {
  opacity: 0.9;
}
.teaser--ticker-m .teaser-ticker--content .image .image-bg {
  background: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 10rem;
  height: 100%;
}
.teaser--ticker-m .teaser-ticker--content .info {
  width: 100%;
}
.teaser--ticker-m .teaser-ticker--content .info .teaser--ticker-head {
  min-height: 4.5rem;
}
.teaser--ticker-m .teaser-ticker--content .info h2 {
  margin-bottom: 0.75rem;
}
.teaser--ticker-m .teaser-ticker--content .info .info--meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.teaser--ticker-m .teaser-ticker--content .info .info--meta h2 {
  margin-bottom: 0;
}
@media (max-width: 720px) {
  .teaser--ticker-m {
    width: 26rem;
    margin-right: 1.75rem;
  }
  .teaser--ticker-m .teaser-ticker--content .image {
    margin-right: 0.75rem;
  }
  .teaser--ticker-m .teaser-ticker--content .image .image-bg {
    width: 6rem;
  }
  .teaser--ticker-m .teaser-ticker--content .info h2 {
    font-size: calc(.9rem + .4vw);
  }
  .teaser--ticker-m .teaser-ticker--content .info .teaser--ticker-head {
    min-height: 2rem;
  }
}

.teaser--mix {
  background-color: #111111;
  border-left: none;
  border-right: none;
  position: relative;
  box-shadow: 1rem 1rem 4rem rgba(0, 84, 255, 0.8), -1rem -1rem 4rem rgba(253, 253, 253, 0.8);
}
.teaser--mix h1, .teaser--mix h2, .teaser--mix h3, .teaser--mix h4, .teaser--mix p, .teaser--mix li, .teaser--mix blockquote, .teaser--mix figcaption {
  color: #fdfdfd;
}
.teaser--mix hr {
  border-top: #fdfdfd 1px solid;
}
.teaser--mix a:hover {
  color: #0054ff;
}
.teaser--mix .featured-image {
  transition: opacity 300ms ease;
  background: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  min-height: calc(24rem + 18vw);
  display: flex;
}
.teaser--mix .featured-image:hover {
  opacity: 0.9;
}
.teaser--mix .featured-image .featured-info {
  padding: calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  width: 100%;
  position: relative;
  align-self: flex-end;
}
@media (max-width: 720px) {
  .teaser--mix .featured-image .featured-info {
    padding: 1.75rem;
  }
}
.teaser--mix .featured-image .featured-info .audio-icon {
  position: relative;
  grid-column: 1/span 1;
  width: calc(1.25rem + 1vw);
  height: calc(1.25rem + 1vw);
  margin-bottom: 0.75rem;
}
.teaser--mix .featured-image .featured-info .news-title {
  grid-column: 1/span 3;
}
.teaser--mix .featured-image .featured-info .headline {
  grid-column: 1/span 6;
}
.teaser--mix .featured-image .featured-info .deck {
  grid-column: 7/span 6;
}
.teaser--mix .featured-image .featured-info .headline, .teaser--mix .featured-image .featured-info .deck {
  margin-bottom: calc(1.25rem + 1vw);
}
.teaser--mix .featured-image .featured-info .featured-headline {
  font-size: calc(1.75rem + 1.75vw);
  margin-bottom: calc(2rem + 2vw);
  padding-top: 0.5rem;
}
.teaser--mix .featured-image .featured-info .deck {
  margin-bottom: 1.75rem;
}
.teaser--mix .featured-image .featured-info .sticker {
  top: -5rem;
  right: 2vw;
}
.teaser--mix .featured-image .featured-info .featured-info--meta {
  padding-top: calc(1.25rem + 1vw);
  border-top: #fdfdfd solid 1px;
  grid-column: 1/span 12;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.teaser--mix .featured-image .featured-info .featured-info--meta h2 {
  margin-bottom: calc(0.5rem + .1vw);
}
@media (max-width: 720px) {
  .teaser--mix .featured-image .featured-info {
    padding: calc(3rem + 4vw);
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
}
@media (max-width: 720px) and (max-width: 720px) {
  .teaser--mix .featured-image .featured-info {
    padding: 1.75rem;
  }
}
@media (max-width: 720px) {
  .teaser--mix .featured-image .featured-info .headline, .teaser--mix .featured-image .featured-info .deck, .teaser--mix .featured-image .featured-info .featured-info--meta, .teaser--mix .featured-image .featured-info .news-title {
    grid-column: 1/span 6;
  }
}
@media (max-width: 720px) {
  .teaser--mix .featured-image .featured-info .headline {
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 720px) {
  .teaser--mix .featured-image .featured-info .deck {
    margin-bottom: 1rem;
  }
}
@media (max-width: 720px) {
  .teaser--mix .featured-image .featured-info .featured-info--meta h2 {
    margin-bottom: 0;
  }
}
.teaser--mix .featured-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}

.teaser--letter {
  padding: 1.75rem;
  box-shadow: 1rem 1rem 4rem rgba(0, 84, 255, 0.8), -1rem -1rem 4rem rgba(253, 253, 253, 0.8);
  position: relative;
  bottom: 1px;
  border: #0054ff solid 1px;
}
@media (max-width: 720px) {
  .teaser--letter {
    padding: 1rem;
  }
}
.teaser--letter h2, .teaser--letter h3 {
  color: #0054ff;
}
.teaser--letter h3 {
  margin-bottom: 0.75rem;
}
.teaser--letter h2 {
  padding: 0;
  margin: 0;
}
.teaser--letter h2 a {
  transition: opacity 200ms linear;
}
.teaser--letter h2 a:hover {
  opacity: 0.6;
}
@media (max-width: 720px) {
  .teaser--letter {
    display: block;
  }
  .teaser--letter h2 {
    margin-bottom: 1rem;
  }
}

.page-banner--container .page-banner {
  padding: calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  padding-top: calc(2rem + 2vw);
  padding-bottom: calc(1.25rem + 1vw);
}
@media (max-width: 720px) {
  .page-banner--container .page-banner {
    padding: 1.75rem;
  }
}
.page-banner--container .page-banner .page-banner--header {
  padding: 0;
  margin: 0;
  grid-column: 2/span 4;
}
.page-banner--container .page-banner .page-banner--header h1 {
  color: #0054ff;
}
.page-banner--container .page-banner .page-banner--description {
  padding: 0;
  margin: 0;
  grid-column: 6/span 6;
}
@media (min-width: 1920px) {
  .page-banner--container .page-banner .page-banner--header {
    grid-column: 2/span 3;
  }
  .page-banner--container .page-banner .page-banner--description {
    grid-column: 5/span 7;
  }
}
@media (max-width: 1240px) {
  .page-banner--container .page-banner .page-banner--header {
    grid-column: 1/span 5;
  }
  .page-banner--container .page-banner .page-banner--description {
    grid-column: 6/span 7;
  }
}
@media (max-width: 720px) {
  .page-banner--container .page-banner .page-banner--header {
    grid-column: 1/span 12;
  }
  .page-banner--container .page-banner .page-banner--description {
    margin-top: 1rem;
    grid-column: 1/span 12;
  }
}

.title-banner--container .title-banner {
  padding: calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 720px) {
  .title-banner--container .title-banner {
    padding: 1.75rem;
  }
}
.title-banner--container .title-banner .title-banner--header {
  grid-column: span 6;
  text-transform: capitalize;
}
.title-banner--container .title-banner .title-banner--header h1 {
  color: #0054ff;
}
.title-banner--container .title-banner .title-banner--description {
  grid-column: span 6;
  text-align: right;
}
@media (max-width: 720px) {
  .title-banner--container .title-banner {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .title-banner--container .title-banner .title-banner--header {
    grid-column: span 4;
  }
  .title-banner--container .title-banner .title-banner--description {
    grid-column: span 2;
  }
}

.issue-banner--container {
  padding: calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  background: linear-gradient(0deg, #fdfdfd 0%, #0054ff 100%);
}
@media (max-width: 720px) {
  .issue-banner--container {
    padding: 1.75rem;
  }
}
.issue-banner--container .issue-banner {
  padding-top: calc(1.25rem + 1vw);
  padding-bottom: calc(1.25rem + 1vw);
  grid-column: 2/span 10;
}
.issue-banner--container .issue-banner .issue-banner--eyebrow {
  margin-bottom: 0.75rem;
}
.issue-banner--container .issue-banner .issue-banner--header {
  margin-bottom: 0.75rem;
}

.syndication-banner--container {
  padding: calc(1.25rem + 1vw);
  background-color: #111111;
  background: #111111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(20rem + 14vw);
}
@media (max-width: 720px) {
  .syndication-banner--container {
    padding: 1.75rem;
  }
}
.syndication-banner--container h1, .syndication-banner--container h2, .syndication-banner--container h3, .syndication-banner--container h4, .syndication-banner--container p, .syndication-banner--container li, .syndication-banner--container blockquote, .syndication-banner--container figcaption {
  color: #fdfdfd;
}
.syndication-banner--container hr {
  border-top: #fdfdfd 1px solid;
}
.syndication-banner--container a:hover {
  color: #fdfdfd;
}
.syndication-banner--container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
}
.syndication-banner--container .syndication-banner--info {
  position: relative;
  padding: calc(3rem + 4vw);
  align-self: center;
  text-align: center;
  height: 100%;
  box-shadow: 0rem 0rem 0rem #111111, 0rem 0rem 0rem #111111;
  transition: box-shadow 300ms ease;
}
.syndication-banner--container .syndication-banner--info .page-headline {
  margin-top: 0.75rem;
}
.syndication-banner--container .syndication-banner--info h1 {
  margin-bottom: 0.75rem;
}
.syndication-banner--container .syndication-banner--info h2 {
  margin-bottom: 0.75rem;
}
.syndication-banner--container .syndication-banner--info h3 {
  margin-bottom: 0.75rem;
}
.syndication-banner--container .syndication-banner--info .info-meta {
  margin-top: 1rem;
}
.syndication-banner--container .syndication-banner--info:hover {
  box-shadow: 1rem 1rem 4rem rgba(0, 84, 255, 0.8), -1rem -1rem 4rem rgba(253, 253, 253, 0.8);
}

.more-issues-banner--container {
  padding: calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
  background-color: #111111;
}
@media (max-width: 720px) {
  .more-issues-banner--container {
    padding: 1.75rem;
  }
}
.more-issues-banner--container h1, .more-issues-banner--container h2, .more-issues-banner--container h3, .more-issues-banner--container h4, .more-issues-banner--container p, .more-issues-banner--container li, .more-issues-banner--container blockquote, .more-issues-banner--container figcaption {
  color: #fdfdfd;
}
.more-issues-banner--container hr {
  border-top: #fdfdfd 1px solid;
}
.more-issues-banner--container a:hover {
  color: #fdfdfd;
}
.more-issues-banner--container .title-banner--container {
  grid-column: 2/span 10;
}
.more-issues-banner--container .title-banner--container .title-banner {
  padding-left: 0;
  padding-right: 0;
}
.more-issues-banner--container .title-banner--container .title-banner .title-banner--description a {
  color: #aaaaaa;
}
.more-issues-banner--container .title-banner--container .title-banner h1 {
  color: #fdfdfd;
}
.more-issues-banner--container .more-issues-banner {
  grid-column: 2/span 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.more-issues-banner--container .more-issues-banner .teaser--issue-card {
  flex-basis: 30%;
}
.more-issues-banner--container .more-issues-banner .teaser--issue-card .issue-art {
  box-shadow: none;
}
@media (max-width: 720px) {
  .more-issues-banner--container {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .more-issues-banner--container .title-banner--container {
    grid-column: span 6;
  }
  .more-issues-banner--container .more-issues-banner {
    grid-column: span 6;
  }
  .more-issues-banner--container .more-issues-banner .teaser--issue-card {
    flex-basis: 100%;
  }
}

.article-space {
  height: calc(2rem + 2vw);
  width: 100%;
}
@media (max-width: 720px) {
  .article-space {
    height: calc(1.25rem + 1vw);
  }
}
.article-space.large {
  height: calc(3rem + 4vw);
}
@media (max-width: 720px) {
  .article-space.large {
    height: calc(2rem + 2vw);
  }
}
.article-space.medium {
  height: calc(2rem + 2vw);
}
@media (max-width: 720px) {
  .article-space.medium {
    height: calc(1.25rem + 1vw);
  }
}
.article-space.small {
  height: calc(1.25rem + 1vw);
}
@media (max-width: 720px) {
  .article-space.small {
    height: calc(0.5rem + .1vw);
  }
}

.article-drawer {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}
.article-drawer .article-drawer--header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 1.75rem;
  border: #0054ff solid 1px;
  width: 100%;
  text-align: left;
  transition: 0.4s;
}
.article-drawer .article-drawer--header h1, .article-drawer .article-drawer--header h2, .article-drawer .article-drawer--header h3, .article-drawer .article-drawer--header h4 {
  display: inline-block;
  color: #0054ff;
  margin: 0;
}
.article-drawer .article-drawer--header h2 {
  font-size: calc(1rem + .5vw);
  font-family: "neue-haas-grotesk-text", Helvetica, Arial, sans-serif;
  font-weight: 400;
}
.article-drawer .article-drawer--header .article-drawer--icon {
  align-self: center;
  width: 1.75rem;
  cursor: pointer;
  color: #0054ff;
}
.article-drawer .article-drawer--header .article-drawer--icon figure {
  margin-top: 0;
  margin-bottom: 0;
}
.article-drawer .article-drawer--header:hover {
  background-color: #dddddd;
}
.article-drawer .active {
  background-color: #dddddd;
}
.article-drawer .panel .article-drawer--panel {
  padding: calc(1.25rem + 1vw);
  background-color: #dddddd;
}
.article-drawer .panel .article-drawer--panel h1, .article-drawer .panel .article-drawer--panel h2 {
  font-size: calc(1rem + .6vw);
  color: #777777;
}
.article-drawer .panel .article-drawer--panel h1, .article-drawer .panel .article-drawer--panel h2, .article-drawer .panel .article-drawer--panel h3, .article-drawer .panel .article-drawer--panel h4 {
  margin-bottom: 1rem;
}
.article-drawer .panel .article-drawer--panel h1, .article-drawer .panel .article-drawer--panel h2, .article-drawer .panel .article-drawer--panel h3, .article-drawer .panel .article-drawer--panel h4, .article-drawer .panel .article-drawer--panel p {
  color: #111111;
}
.article-drawer .panel .article-drawer--panel figure {
  text-align: center;
}
.article-drawer .panel .article-drawer--panel figure img {
  cursor: pointer;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.75rem;
  border: #111111 solid 1em;
  transform: rotate(-1deg);
  transition: transform 300ms;
}
.article-drawer .panel .article-drawer--panel figure img:hover {
  transform: rotate(0deg);
}
.article-drawer .panel .article-drawer--panel .q {
  font-weight: 600;
}
.article-drawer .panel .article-drawer--panel .a {
  border-left: #aaaaaa solid 2px;
  padding-left: 0.75rem;
}

.article-list {
  border-bottom: #0054ff solid 1px;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}
.article-list .article-list--image figcaption {
  text-align: right;
}
.article-list .article-list--image figcaption a {
  color: #0054ff;
}
.article-list .article-list--embed iframe {
  margin-left: auto !important;
  margin-right: auto !important;
}
.article-list .article-list--header {
  margin-bottom: calc(2rem + 2vw);
  text-align: center;
}
.article-list .article-list--header .number {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  width: 5em;
  height: 5em;
  border-radius: 50%;
  color: #0054ff;
  border: #0054ff solid 1px;
  margin-bottom: 1rem;
}
.article-list .article-list--header .number h1 {
  align-self: center;
  margin-bottom: 0;
  margin-top: 0;
}
.article-list .article-list--header h1 {
  margin-bottom: 1rem;
}
.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.article-table .table--body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.article-table .table--body h1, .article-table .table--body h2, .article-table .table--body h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.article-table .table--body h3 {
  color: #0054ff;
}
.article-table .table--body p {
  font-size: calc(.9rem + .4vw);
  margin-bottom: 0.5rem;
}
.article-table .triple .table--column {
  width: 30%;
}
@media (max-width: 720px) {
  .article-table .table--body {
    text-align: center;
  }
  .article-table .triple .table--column {
    width: 100%;
  }
}

.redacted {
  color: #777777;
  background: #777777;
}

.inset {
  padding: calc(2rem + 2vw);
}
.inset h1, .inset h2, .inset h3, .inset h4, .inset h5, .inset p, .inset li {
  color: #0054ff;
  font-family: "antarctican-mono", Helvetica, Arial, sans-serif;
}
@media (max-width: 720px) {
  .inset {
    padding: 0 calc(1.25rem + 1vw) calc(1.25rem + 1vw) calc(1.25rem + 1vw);
  }
}

.unit {
  cursor: pointer;
  position: relative;
}
.unit .conversion {
  position: fixed;
  visibility: hidden;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 0.5rem 0.75rem;
  user-select: none;
  min-width: 8rem;
  opacity: 0;
  bottom: 0.5rem;
  right: 1.75rem;
  border-radius: 1rem;
  background: #dddddd;
  color: #0054ff;
  transition: ease 300ms;
}
.unit:hover .conversion {
  visibility: visible;
  opacity: 1;
  transform: translateY(-1.8rem);
}

.issues-body {
  padding: calc(1.25rem + 1vw);
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-column-gap: calc(1.25rem + 1vw);
  align-content: start;
  justify-content: space-around;
}
@media (max-width: 720px) {
  .issues-body {
    padding: 1.75rem;
  }
}
.issues-body .issues {
  grid-column: 2/span 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.issues-body .issues .teaser--issue-card {
  flex-basis: 32%;
}
@media (max-width: 1240px) {
  .issues-body .issues {
    grid-column: 1/span 12;
  }
  .issues-body .issues .teaser--issue-card {
    flex-basis: 48%;
  }
}
@media (max-width: 720px) {
  .issues-body {
    display: grid;
    grid-template-columns: repeat(6, [col] 1fr);
    grid-column-gap: calc(1.25rem + 1vw);
    align-content: start;
    justify-content: space-around;
  }
  .issues-body .issues {
    grid-column: 1/span 6;
  }
  .issues-body .issues .teaser--issue-card {
    flex-basis: 100%;
  }
}

@keyframes quickFade {
  from {
    opacity: 0;
    top: -1.75rem;
  }
  to {
    opacity: 1;
    top: 0;
  }
}
@keyframes dissolveIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(calc(12rem + 12vw));
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes modalOut {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(calc(12rem + 12vw));
  }
}

/*# sourceMappingURL=main.css.map */
