:root {
  color-scheme: light;
  --link: #0077dd;
  --line: #dddddd;
  --text: #444444;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  padding: 15px 0;
  background: #ffffff;
  color: var(--text);
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

a:hover,
a:focus-visible {
  color: #005599;
  text-decoration: underline;
}

:focus-visible {
  outline: 3px solid #66afe9;
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
ul,
figure,
table {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  color: #333333;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
}

h2 {
  margin-bottom: 15px;
  color: #333333;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

h3 {
  font-size: 16px;
}

p,
ul,
table {
  margin-bottom: 20px;
}

ul {
  padding-left: 30px;
}

hr {
  height: 0;
  margin: 20px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10;
  padding: 8px 12px;
  background: #ffffff;
  box-shadow: 0 1px 8px rgb(0 0 0 / 25%);
}

.press-container {
  width: min(100%, 1050px);
  padding: 0 25px;
  margin: 0 auto;
}

.press-layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 25px;
}

.press-nav h1 {
  padding: 0 15px;
}

.press-home {
  display: block;
  padding: 5px 15px;
  font-weight: 700;
}

.press-nav ul {
  padding: 15px 0;
  margin: 0;
  list-style: none;
}

.press-nav li a {
  display: block;
  padding: 5px 15px;
  color: #444444;
}

.press-nav li a:hover,
.press-nav li a:focus-visible {
  background: #eeeeee;
  color: #444444;
  text-decoration: none;
}

.press-header {
  width: 100%;
  margin-bottom: 20px;
}

.press-columns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 25px;
}

.press-columns.equal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.press-content ul {
  list-style-type: square;
}

.price-table td + td {
  padding-left: 16px;
}

.download {
  display: block;
  padding: 10px 35px 10px 14px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #f5f5f5;
  color: #444444;
  text-shadow: 0 1px 0 #ffffff;
}

.download:hover,
.download:focus-visible {
  background: #eeeeee;
  color: #444444;
  text-decoration: none;
}

.press-images {
  columns: 2;
  column-gap: 25px;
}

.press-images figure {
  break-inside: avoid;
  padding-bottom: 25px;
  margin: 0;
}

.press-images a {
  display: block;
}

.press-images img {
  width: 100%;
}

.images-text {
  margin-top: -15px;
}

.video-title {
  margin-bottom: 8px;
}

.iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000000;
}

.iframe-container iframe {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  border: 0;
}

.iframe-container.is-embedded iframe {
  display: block;
}

.video-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  text-decoration: none;
}

.video-fallback::after {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 30%);
  content: "";
}

.video-fallback > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-fallback-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 1px 5px #000000;
}

.video-play {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #ff0000;
  box-shadow: 0 2px 12px rgb(0 0 0 / 45%);
}

.video-play::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid #ffffff;
  content: "";
}

.iframe-container.is-embedded .video-fallback {
  display: none;
}

.press-credit {
  margin-bottom: 0;
}

@media (min-width: 1220px) {
  .press-container {
    width: min(100%, 1200px);
    padding-right: 35px;
    padding-left: 35px;
  }

  .press-layout,
  .press-columns {
    gap: 35px;
  }

  .press-images {
    column-gap: 35px;
  }
}

@media (max-width: 767px) {
  .press-container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .press-layout,
  .press-columns,
  .press-columns.equal {
    grid-template-columns: 1fr;
  }

  .press-nav h1,
  .press-home,
  .press-nav li a {
    padding-right: 0;
    padding-left: 0;
  }

  .press-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--line);
  }

  .press-nav li a {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .press-nav li a:hover,
  .press-nav li a:focus-visible {
    background: transparent;
    color: var(--link);
    text-decoration: underline;
  }

  h2 {
    margin-top: 25px;
  }

  .press-header + .press-columns h2:first-child {
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .press-images {
    columns: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
