:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #4b5563;
  --rule: #d4d4d8;
  --page: #ffffff;
  --shell: #eef1f5;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

.header-1 {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(76px, 11vh, 104px);
  background-color: #ffffff;
}

.logo {
  display: block;
  width: clamp(132px, 15vw, 184px);
  height: auto;
  max-height: calc(100% - 12px);
  object-fit: contain;

}

body {
  margin: 0;
  min-height: 100%;
  background: var(--page);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    sans-serif;
}

body.cover-active {
  overflow: hidden;
  position: fixed;
  inset: 0;
  width: 100%;
}

body.article-active {
  overflow: auto;
  position: static;
}

body.article-active .header-1 {
  display: none;
}

.release-cover {
  position: relative;
  width: 100%;
  height: calc(100dvh - clamp(76px, 11vh, 104px));
  min-height: 0;
  overflow: hidden;
  background: #05070a;
}

.release-cover picture,
.release-cover img {
  display: block;
  width: 100%;
  height: 100%;
}

.release-cover img {
  object-fit: cover;
  object-position: center top;
}

.read-button {
    margin-left: 40px;
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3vh, 34px);
  transform: translateX(-50%);
  min-width: 168px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #101827;
  font: inherit;
  font-size: 17px;
  font-weight: 800
;
  cursor: pointer;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.38);
}

.read-button:hover {
  background: #ffffff;
}

.is-hidden {
  display: none;
}

.phone-page {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--page);
  box-shadow: none;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(84px, 1fr) auto minmax(84px, 1fr);
  align-items: center;
  min-height: 88px;
  padding: 0 28px;
  border-bottom: 1px solid var(--rule);
  background: #ffffff;
}

.article-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 70px;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 750;
  cursor: pointer;
}

.article-back:hover {
  background: #f3f4f6;
}

.logo-link {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 136px;
  min-height: 56px;
}

.logo-link img {
  display: block;
  max-width: 100%;
  height: auto;
}

.article {
  width: min(100% - 48px, 820px);
  margin: 0 auto;
  padding: 34px 0 72px;
  font-size: 24px;
  line-height: 1.42;
}

.article p {
  margin: 0 0 30px;
}

.article strong {
  font-weight: 800;
}

.text-page {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: 48px 0 72px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.55;
}

.text-page h1 {
  margin: 28px 0 24px;
  font-size: 38px;
  line-height: 1.1;
}

.text-page p {
  margin: 0 0 24px;
}

.back-link {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.back-link:hover,
.logo-link:hover {
  opacity: 0.72;
}

@media (max-width: 520px) {
  .site-header {
    min-height: 74px;
    padding: 0 18px;
    grid-template-columns: minmax(70px, 1fr) auto minmax(70px, 1fr);
  }

  .article-back {
    min-width: 58px;
    min-height: 36px;
    padding: 0 8px;
    font-size: 15px;
  }

  .logo-link {
    width: 112px;
  }

  .article {
    padding: 10px 39px 42px;
    font-size: 23px;
    line-height: 1.46;
  }

  .article p {
    margin-bottom: 29px;
  }

  .release-cover {
    height: calc(100dvh - clamp(76px, 11vh, 104px));
  }

  .release-cover picture,
  .release-cover img {
    height: 100%;
    min-height: 0;
  }

  .release-cover img {
    object-position: center top;
  }

  .read-button {
    bottom: 22px;
    min-width: 154px;
    min-height: 46px;
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .article {
    width: min(100% - 36px, 820px);
    font-size: 21px;
  }
}
