@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Open Sans"), local("OpenSans"), url("open-sans-regular.woff") format("woff");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("open-sans-bold.woff") format("woff");
}

@font-face {
  font-family: "TTNorms Bold";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("TTNorms Bold"), url("ttnorms-bold.woff2") format("woff2");
}

:root {
  --blue: rgb(22, 102, 241);
  --blue-hover: rgb(13, 90, 223);
  --red: rgb(241, 22, 22);
  --red-hover: rgb(223, 13, 13);
  --ink: #333;
  --muted: rgba(51, 51, 51, 0.68);
  --dark: rgb(31, 34, 38);
  --light: rgb(225, 230, 237);
  --white: #fff;
  --shadow: 0 6px 20px rgba(28, 92, 120, 0.21);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--white);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.6;
}

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

a:hover {
  color: rgb(12, 80, 198);
}

.site-header {
  min-height: 70px;
  display: flex;
  align-items: center;
}

.site-header-inner,
.site-footer-inner,
.page-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.site-header-inner {
  display: flex;
  justify-content: flex-end;
}

.language-switcher {
  width: 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.language-switcher a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 5px;
  font-size: 18px;
  line-height: 1.2;
  color: var(--blue);
  text-decoration: underline;
}

.language-switcher a[aria-current="page"] {
  color: var(--ink);
}

.poster-hero {
  padding-top: 48px;
  padding-bottom: 90px;
}

.poster-layout {
  display: grid;
  grid-template-columns: minmax(0, 725px) minmax(280px, 1fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-family: "TTNorms Bold", sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.lead {
  max-width: 725px;
  margin: 28px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 25px;
  color: var(--white) !important;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.button-blue {
  background: var(--blue);
}

.button-blue:hover {
  background: var(--blue-hover);
}

.button-red {
  background: var(--red);
}

.button-red:hover {
  background: var(--red-hover);
}

.poster-preview {
  margin: 0;
}

.poster-preview img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow);
}

.site-footer {
  background: var(--light);
  padding-top: 30px;
  padding-bottom: 38px;
}

.site-footer-inner {
  font-size: 18px;
}

.not-found-page {
  background: var(--light);
}

.not-found-main {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}

.not-found-shell {
  padding-top: 52px;
  padding-bottom: 80px;
}

.error-code {
  margin: 0 0 18px;
  color: var(--red);
  font-family: "TTNorms Bold", sans-serif;
  font-size: 120px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.not-found-copy {
  max-width: 725px;
}

.not-found-actions {
  margin-top: 32px;
}

@media (max-width: 880px) {
  .poster-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .poster-preview {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 19px;
  }

  .site-header-inner,
  .site-footer-inner,
  .page-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-header-inner {
    justify-content: center;
  }

  .poster-hero {
    padding-top: 28px;
    padding-bottom: 52px;
  }

  h1 {
    font-size: 38px;
  }

  .lead {
    margin-top: 24px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    font-size: 19px;
  }

  .error-code {
    font-size: 76px;
  }
}
