﻿*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background: none;
  text-decoration: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "onum", "kern", "liga", "clig", "calt";
}

@font-face {
  font-family: "HelveticaNowDisplay";
  font-weight: var(--f-weight);
  font-style: normal;
  src: url("\blog\assets\HelveticaNowDisplay-Regular.woff2") format("woff2");
}

:root {
  --c-bg: hsl(0, 0%, 100%);
  --c-text: hsla(110, 0%, 10%, 1);
  --c-black: hsla(110, 0%, 10%, 1);
  --c-gray: hsla(0, 0%, 45%, 1);
  --c-gray-light: hsla(0, 0%, 90%, 1);
  --f-family: "HelveticaNowDisplay", sans-serif;
  --f-size: 19px;
  --f-size-sm: 16px;
  --f-height: 26px;
  --f-weight: 400;
  --f-spacing: 0.008rem;
  --f-scale-s: 0.727273;
  --f-scale-m: 1.363636;
  --f-scale-l: 1.818182;
  --f-scale-xl: 1.953;
  --f-scale-xxl: 2.441;
  --column-text: 20rem;
  --column-picture: 30rem;
  font-size: var(--f-height);
  font-family: var(--f-family);
  font-weight: var(--f-weight);
  letter-spacing: var(--f-spacing);
  background: var(--c-bg);
  color: var(--c-text);
}

@media (max-width: 599px) {
  :root {
    --f-size: 16px;
    --f-height: 22px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --c-text: hsl(0, 0%, 100%);
    --c-bg: hsla(110, 0%, 10%, 1);
    --c-black: hsla(110, 0%, 10%, 1);
    --c-gray: hsla(0, 0%, 50%, 1);
    --c-gray-light: hsla(0, 0%, 50%, 1);
    background: var(--c-bg);
    color: var(--c-text);
  }
}

body {
  font-size: var(--f-size);
  line-height: var(--f-height);
}

body,
html {
  width: 100%;
  height: 100%;
  position: relative;
}

body {
  padding-left: 7.5rem;
  padding-right: 3rem;
}

@media (max-width: 999px) {
  body {
    padding-left: 5.5rem;
  }
}

@media (max-width: 899px) {
  body {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2.5rem;
  }
}

main {
  padding-left: 3rem;
  overflow: auto;
}

@media (max-width: 899px) {
  main {
    padding-left: 0;
  }
}

.editor p,
.editor ul,
.editor ol,
.editor h2,
.editor h3,
.editor blockquote {
  max-width: var(--column-text);
}

.editor p:not(:last-child),
.editor ul:not(:last-child),
.editor ol:not(:last-child),
.editor h2:not(:last-child),
.editor h3:not(:last-child),
.editor blockquote:not(:last-child) {
  margin-bottom: 1rem;
}

.editor h2,
.editor h3 {
  font-size: 28px;
  line-height: 32px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-weight: var(--f-weight);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.editor h3 {
  font-size: 28px;
  line-height: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: var(--f-weight);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.editor strong {
  font-weight: var(--f-weight);
}

.editor ul {
  list-style: circle;
}

.editor li {
  position: relative;
}

.editor li:not(:last-child) {
  margin-bottom: 0.25rem;
}

.editor hr {
  border: none;
  height: 1px;
  background: var(--c-gray-light);
  margin: 2rem 0;
  display: block;
  max-width: var(--column-text);
}

.editor blockquote {
  font-size: 22px;
  line-height: 28px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: var(--f-weight);
  font-style: italic;
  color: var(--c-gray);
}

.editor a {
  border-bottom: 1px solid var(--c-gray);
  transition: border 250ms, color 250ms;
}

.editor a:hover {
  border-bottom-color: transparent;
  color: var(--c-gray);
}

.editor .img-figure {
  margin: 2rem 0;
  position: relative;
}

.editor .img-figure:first-child {
  margin-top: 0;
}

.editor .img-figure figcaption {
  font-size: 16px;
  line-height: 22px;
  padding-top: 3px;
  padding-bottom: 3px;
  position: absolute;
  right: 0;
  margin-top: 2rem;
  max-width: 10rem;
  color: var(--c-gray);
  padding-top: 5px;
  padding-left: 2rem;
}

@media (max-width: 1249px) {
  .editor .img-figure figcaption {
    position: static;
    text-align: left;
    padding-left: 0;
    margin-top: 1rem;
    max-width: 15rem;
  }
}

.editor .img-wrapper {
  display: block;
  width: 100%;
  position: relative;
}

.editor .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 0.75rem;
}

.text-sm {
  font-size: var(--f-size-sm);
}

.spacer-none {
  margin: 0;
}

.spacer-l {
  margin-left: 1rem;
}

.spacer-r {
  margin-right: 1rem;
}

.spacer-t {
  margin-top: 1rem;
}

.spacer-b {
  margin-bottom: 1rem;
}

.spacer-sm {
  margin: 0.25rem;
}

.spacer-md {
  margin: 0.5rem;
}

.flex {
  display: flex;
}

.flex-none {
  display: block;
}

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

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.5rem;
}

.gap-6 {
  gap: 2rem;
}

.button {
  border-radius: 0.5rem;
  padding: 0.65rem 1rem;
  box-shadow: inset 0px 0px 0px 1px var(--c-text);
  transition: color 250ms, background 250ms, box-shadow 250ms;
  text-align: center;
  font-weight: var(--f-weight);
}

.button:hover {
  background: var(--c-text);
  color: var(--c-bg);
}

.button-solid {
  background: var(--c-text);
  color: var(--c-bg);
}

.button-solid-gray {
  background: var(--c-gray);
  color: var(--c-bg);
  box-shadow: inset 0px 0px 0px 1px var(--c-gray);
}

.button-solid:hover,
.button-solid-gray:hover {
  background: var(--c-bg);
  color: var(--c-text);
}

.buttons {
  display: inline-flex;
}

.cover-container {
  margin: 0 auto;
  max-width: var(--column-picture);
}

.cover-wrapper {
  position: relative;
}

.cover-image {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cover-caption {
  font-size: 16px;
  line-height: 22px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding: 0.5rem 0;
  color: var(--c-gray);
}

.page-intro {
  margin: 3rem 0;
  max-width: var(--column-text);
}

.page-title {
  font-size: 32px;
  line-height: 42px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-weight: var(--f-weight);
}

.page-wordsby {
  font-size: 16px;
  line-height: 22px;
  padding-top: 3px;
  padding-bottom: 3px;
  margin-top: 0.5rem;
  color: var(--c-gray);
}

.page-subtitle {
  font-size: 22px;
  line-height: 28px;
  padding-top: 12px;
  padding-bottom: 12px;
  color: var(--c-gray);
  font-weight: var(--f-weight);
}

.text-content {
  margin: 3rem 0;
  max-width: var(--column-picture);
}

.im-promo {
  margin: 3rem 0;
  max-width: var(--column-text);
}

.im-promo-title {
  font-size: 28px;
  line-height: 32px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-weight: var(--f-weight);
  margin-bottom: 0.5rem;
}

.im-promo-buttons {
  display: flex;
  align-items: baseline;
}

.im-promo-buttons:not(:first-child) {
  margin-top: 1.5rem;
}

@media (max-width: 649px) {
  .im-promo-buttons {
    flex-wrap: wrap;
  }
}

.im-promo-button {
  margin-right: 0.5rem;
  display: inline-block;
}

.im-promo-info {
  font-size: 16px;
  line-height: 22px;
  padding-top: 3px;
  padding-bottom: 3px;
  margin-left: 1rem;
  color: var(--c-gray);
}

table {
  margin: 2rem 0;
}

thead th {
  text-align: left;
  color: var(--c-gray);
  padding-bottom: 0.5rem;
}

tbody td:first-of-type {
  width: 200px;
}

@media (max-width: 649px) {
  .im-promo-info {
    display: block;
    margin-left: 0rem;
    margin-top: 1rem;
    width: 100%;
  }
}

.article .im-promo {
  padding-top: 3rem;
  border-top: 1px solid var(--c-gray-light);
}

.j-thumb {
  margin: 0 0 1.5rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-gray-light);
  max-width: 30rem;
}

.j-thumb:last-child {
  margin-bottom: 0;
}

@media (max-width: 1099px) {
  .j-thumb:first-child {
    padding-top: 1.5rem;
    border-top: 1px solid var(--c-gray-light);
  }
}

.j-link {
  display: block;
}

.j-title {
  font-size: 22px;
  line-height: 28px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: var(--f-weight);
}

.j-author {
  font-size: 14px;
  line-height: 19px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.j-subtitle,
.j-author {
  display: inline-block;
  color: var(--c-gray);
}

.j-subtitle,
.j-author {
  transition: color 250ms ease-out;
}

.j-subtitle {
  font-size: 19px;
  line-height: 26px;
}

.j-link:hover .j-subtitle,
.j-link:hover .j-author {
  color: var(--c-text);
}

.co-text {
  font-size: 16px;
  line-height: 22px;
  padding-top: 3px;
  padding-bottom: 3px;
  color: var(--c-gray);
}

.co-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 1rem;
  font-size: 16px;
}

.header {
  height: 100%;
  width: 7.5rem;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--c-bg);
  padding: 3rem;
  display: grid;
  grid-template-rows: 1.5rem 1fr 1.5rem;
  grid-template-areas: "logo" "menu" "subscribe";
  border-right: 1px solid var(--c-gray-light);
  overflow: hidden;
  transition: width 150ms 250ms ease-out;
  z-index: 9999;
}

@media (max-width: 999px) {
  .header {
    padding: 3rem 2rem;
    width: 5.5rem;
  }
}

@media (max-width: 899px) {
  .header {
    padding: 1rem;
    grid-template-rows: 1.5rem auto;
    grid-template-columns: auto 1fr;
    width: 100%;
    grid-template-areas: "logo button" "menu menu";
    bottom: initial;
    height: 3.5rem;
    transition: height 150ms 250ms ease-out, border 150ms 250ms ease-out;
    border-bottom: 1px solid transparent;
    border-right: 0;
  }
}

.header-home-link {
  display: block;
  overflow: hidden;
}

.logo {
  height: 1.5rem;
  width: auto;
  display: block;
}

.logotype {
  opacity: 0;
  transition: opacity 300ms;
}

@media (max-width: 899px) {
  .logotype {
    opacity: 1;
  }
}

.sub {
  transition: opacity 400ms, transform 400ms;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
}

.sub-text {
  font-size: 16px;
  line-height: 22px;
  padding-top: 3px;
  padding-bottom: 3px;
  color: var(--c-gray);
  display: block;
  margin-bottom: 1rem;
}

.sub-button {
  display: inline-block;
}

.menu {
  align-self: center;
  display: flex;
  flex-direction: column;
  grid-area: menu;
  pointer-events: none;
}

@media (max-width: 899px) {
  .menu {
    align-self: start;
    align-items: flex-end;
    padding-top: 0.5rem;
  }
}

.menu-link {
  margin: 0.25rem 0;
  transition: opacity 250ms, color 150ms;
  opacity: 0;
  cursor: pointer;
}

@media (max-width: 899px) {
  .menu-link {
    margin: 0;
    padding: 0.35rem;
  }
}

.menu-link:hover {
  color: var(--c-gray);
}

.menu-button {
  grid-area: menu;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  outline: none;
  appearance: none;
  width: 1.5rem;
  height: 3rem;
  border: none;
  align-self: center;
  z-index: 5;
  transition: opacity 250ms linear;
  cursor: pointer;
}

@media (max-width: 899px) {
  .menu-button {
    grid-area: button;
    height: 1.5rem;
    justify-self: end;
    align-items: flex-end;
  }
}

.menu-line {
  display: block;
  height: 2px;
  background: var(--c-text);
  width: 1rem;
  margin: 0.15rem 0;
  transition: background 350ms ease-out, transform 350ms ease-out, width 350ms ease-out;
  cursor: pointer;
}

.menu-button:hover .menu-line {
  background: var(--c-gray);
}

.menu-line:last-child {
  width: 0.75rem;
}

.sns {
  position: absolute;
  top: 3rem;
  right: 1rem;
  writing-mode: tb;
  writing-mode: sideways-lr;
  opacity: 0.50;
}

.sn {
  margin-bottom: 1rem;
}

.b-links {
  display: flex;
  color: var(--c-gray);
  transition: color 250ms;
}

.b-links:hover {
  color: var(--c-text);
}

audio {
  width: 100%;
  max-width: 520px;
  border-radius: 9999px;
}

@media (max-width: 899px) {
  .b-links {
    padding: 0 0 1rem;
    margin: 0 auto;
  }
}

@media (min-width: 900px) {
  .b-links {
    position: fixed;
    writing-mode: tb;
    writing-mode: sideways-lr;
    right: 0;
    bottom: 0;
    top: 0;
    padding: 3rem 0 1.5rem;
    height: 100%;
    font-size: 16px;
    line-height: 22px;
  }

  @supports not (writing-mode: sideways-lr) {
    .b-links {
      direction: rtl;
    }
  }
}

.b-link {
  margin-right: 1rem;
}

@media (min-width: 900px) {
  .b-link {
    margin-right: 0;
    margin-top: 1rem;
    padding: 0 1rem;
  }
}

.b-link+.s-link {
  margin-left: auto;
}

@media (min-width: 900px) {
  .b-link+.s-link {
    margin-left: 0;
    margin-bottom: auto;
  }
}

.s-link {
  margin-left: 1rem;
}

@media (min-width: 900px) {
  .s-link {
    margin-left: 0;
    margin-bottom: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 399px) {
  .s-link {
    margin-left: 0.5rem;
  }
}

.b-link,
.s-link {
  transition: color 250ms ease-out;
  cursor: pointer;
}

.b-link:hover,
.s-link:hover {
  color: var(--c-gray);
}

@media (max-width: 399px) {

  .b-link,
  .s-link {
    font-size: 14px;
    line-height: 19px;
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

.header-open {
  width: 14rem;
  transition-delay: 0ms;
}

@media (max-width: 999px) {
  .header-open {
    width: 12rem;
  }
}

@media (max-width: 899px) {
  .header-open {
    width: 100%;
    height: 18rem;
    border-bottom-color: var(--c-gray-light);
  }
}

.header-open .logotype {
  transition-delay: 120ms;
  opacity: 1;
}

.header-open .menu-button {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 899px) {
  .header-open .menu-button {
    opacity: 1;
    pointer-events: all;
  }

  .header-open .menu-line:last-child {
    width: 1rem;
    transform: translateY(-5px) rotate(45deg);
  }

  .header-open .menu-line:first-child {
    transform: translateY(4px) rotate(-45deg);
  }

  .s-link.fb,
  .s-link.tg {
    display: none;
  }
}

.header-open .menu {
  pointer-events: all;
}

.header-open .menu-link {
  opacity: 1;
  transition-delay: 100ms;
}

.header-open .sub {
  transition-delay: 350ms;
  opacity: 1;
  transform: initial;
  pointer-events: all;
}

.j-list {
  padding: 3rem;
  border-left: 1px solid var(--c-gray-light);
  overflow: auto;
}

@media (max-width: 1199px) {
  .j-list {
    padding: 3rem 2rem;
  }
}

@media (max-width: 1099px) {
  .j-list {
    padding: 0 2rem 0 3rem;
    border-left: none;
  }
}

@media (max-width: 999px) {
  .j-list {
    padding: 0 1rem 3rem 2rem;
  }
}

@media (max-width: 899px) {
  .j-list {
    padding: 0 0 3rem;
  }
}

.home main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 2rem;
  grid-template-rows: 75vh auto auto auto;
  padding-bottom: 1rem;
}

@media (orientation: portrait) {
  .home main {
    grid-template-rows: 50vh auto auto auto;
  }
}

@media (max-width: 1349px) {
  .home main {
    padding-left: 2rem;
  }
}

@media (max-width: 899px) {
  .home main {
    padding-left: 0;
  }
}

.h-title {
  font-size: 119px;
  line-height: 1.05;
  font-weight: var(--f-weight);
}

/* header, .content, footer {
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  opacity: 0;
}

header, .content, footer {
  -webkit-animation-name: content,opacityandblur;
  animation-name: content,opacityandblur;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

header {
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
}

.content {
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}

footer {
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
} */

@media (max-width: 1099px) {
  .h-title {
    font-size: 10vw;
  }
}

@media (max-width: 899px) {
  .h-title {
    font-size: 10vw;
  }

  .h-subquote {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (max-width: 599px) {
  .h-title {
    font-size: 10vw;
  }
}

.h-subquote {
  font-size: 19px;
  line-height: 26px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: var(--f-weight);
  color: var(--c-gray);
  max-width: 52ch;
  margin-top: 1rem;
}

.h-text {
  align-self: center;
  grid-column: span 2;
  padding-top: 2.5rem;
}

.h-button {
  margin-top: 1rem;
  display: inline-block;
}

.h-section {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 2rem;
}

@media (max-width: 1349px) {
  .h-section {
    grid-column-gap: 1rem;
  }
}

@media (max-width: 1199px) {
  .h-section {
    grid-template-columns: 2fr 3fr;
  }
}

@media (max-width: 1099px) {
  .h-section {
    grid-template-columns: 1fr;
  }
}

.h-l {
  border-top: 1px solid var(--c-gray-light);
  padding: 2rem 0;
}

.h-r {
  border-top: 1px solid var(--c-gray-light);
  padding: 2rem 0 0;
}

@media (max-width: 1099px) {
  .h-r {
    border-top: none;
    padding-top: 0;
  }
}

@media (max-width: 1999px) {
  .h-r .editor .img-figure figcaption {
    position: static;
    text-align: left;
    padding-left: 0;
    margin-top: 1rem;
    max-width: 15rem;
  }
}

.h-r-va {
  padding-top: 1.83rem;
}

.h-subtitle {
  font-size: 60px;
  line-height: 72px;
  font-weight: var(--f-weight);
}

@media (max-width: 1199px) {
  .h-subtitle {
    font-size: 50px;
  }
}

@media (max-width: 1099px) {
  .h-subtitle {
    font-size: 36px;
    line-height: 42px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
}

@media (max-width: 599px) {
  .h-subtitle {
    font-size: 9.5vw;
    line-height: 1.2;
  }
}

.h-subtitle a {
  color: inherit;
  transition: color 250ms;
}

@media (max-width: 1199px) {
  .h-subtitle a {
    display: inline-block;
    margin-top: 4px;
  }
}

@media (max-width: 1099px) {
  .h-subtitle a {
    margin-top: 0;
  }
}

.h-subtitle a:hover {
  color: var(--c-gray);
}

.h-tagline {
  color: var(--c-gray);
}

@media (max-width: 1199px) {
  .h-tagline {
    margin-top: -6px;
  }
}

@media (max-width: 1099px) {
  .h-tagline {
    margin-top: 0;
  }
}

.h-section .j-thumb:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.h-section .j-thumb:first-child {
  border-top: none;
  padding-top: 0;
}

.h-section-small {
  margin-top: 2rem;
}

.h-credits {
  font-size: 14px;
  line-height: 19px;
  padding-top: 3px;
  padding-bottom: 3px;
  border-top: 1px solid var(--c-gray-light);
  padding: 1rem 0 0;
  display: block;
  color: var(--c-gray);
  grid-column: 2/-1;
}

.h-credits a {
  white-space: nowrap;
}

@media (max-width: 1099px) {
  .h-credits {
    grid-column: span 1;
  }
}

.h-credits a {
  border-bottom-width: 1px;
}

.journal {
  height: 100%;
}

.journal main {
  padding: 0;
  position: relative;
  margin-left: 17rem;
}

@media (max-width: 1399px) {
  .journal main {
    margin-left: 13rem;
  }
}

@media (max-width: 1199px) {
  .journal main {
    margin-left: 12rem;
  }
}

@media (max-width: 1099px) {
  .journal main {
    display: block;
    margin-left: 0;
  }
}

.journal .page-intro {
  position: fixed;
  top: 0;
  left: 7.5rem;
  bottom: 0;
  height: 100%;
  display: block;
  margin: 0;
  padding: 3rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

@media (max-width: 1399px) {
  .journal .page-intro {
    padding: 2rem;
  }
}

@media (max-width: 1199px) {
  .journal .page-intro {
    padding: 1.5rem;
  }
}

@media (max-width: 1099px) {
  .journal .page-intro {
    padding: 3rem;
    position: static;
  }
}

@media (max-width: 999px) {
  .journal .page-intro {
    padding: 3rem 2rem;
  }
}

@media (max-width: 899px) {
  .journal .page-intro {
    padding: 3rem 0;
  }
}

@media (max-width: 1399px) {
  .journal .page-title {
    font-size: 32px;
    line-height: 42px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-weight: var(--f-weight);
  }
}

@media (max-width: 1099px) {
  .journal .page-title {
    font-size: 28px;
    line-height: 32px;
    padding-top: 2px;
    padding-bottom: 2px;
    font-weight: var(--f-weight);
  }
}

@media (max-width: 1399px) {
  .journal .page-subtitle {
    font-size: 19px;
    line-height: 26px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 1099px) {
  .journal .page-subtitle {
    font-size: 16px;
    line-height: 22px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-weight: var(--f-weight);
  }
}

.section {
  margin: 3rem 0;
  padding-top: 3rem;
  border-top: 1px solid var(--c-gray-light);
  max-width: var(--column-text);
}

.section-title {
  font-size: 28px;
  line-height: 32px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-weight: var(--f-weight);
  margin-bottom: 0.5rem;
}

.section-list {
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 0.5rem;
}

.section-item-title {
  font-weight: var(--f-weight);
}

.section-item-text a {
  transition: color 250ms;
  color: var(--c-gray);
  text-transform: lowercase;
}

.section-item-text a:hover {
  color: var(--c-text);
}

.i-preview .j-thumb {
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-gray-light);
}

.i-preview .j-thumb:not(:last-child) {
  padding-bottom: 0;
  border-bottom: none;
}

.ws {
  margin: 4rem 0 4rem;
  max-width: var(--column-text);
}

.ws-title {
  font-size: 32px;
  line-height: 42px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-weight: var(--f-weight);
}

.w {
  margin-top: 2rem;
  border-top: 1px solid var(--c-gray-light);
  padding-top: 2rem;
}

.w:last-child {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--c-gray-light);
  padding-bottom: 2rem;
}

.w hr {
  display: none;
}

.w-name {
  font-size: 28px;
  line-height: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: var(--f-weight);
}

.w-link {
  display: inline-block;
  transition: color 250ms;
  color: var(--c-gray);
}

.w-link:hover {
  color: var(--c-text);
}

.w-bio {
  margin-top: 1rem;
}

.i-cover {
  margin: 0 auto;
  max-width: var(--column-picture);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--c-gray-light);
}

.i-cover .button {
  display: inline-block;
}

.i-c-image {
  display: block;
  width: 100%;
  height: auto;
  grid-column: span 2;
}

.i-c-text {
  grid-column: span 1;
  text-align: center;
  align-self: center;
}

.i-c-price {
  font-size: 28px;
  line-height: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: var(--f-weight);
  margin-bottom: 1rem;
}

.i-c-info {
  margin-top: 1rem;
  font-size: 16px;
  line-height: 22px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.i-sub {
  max-width: var(--column-text);
  margin: 3rem auto;
  display: flex;
  align-items: baseline;
}

.i-button {
  display: inline-block;
}

.i-sub-info {
  font-size: 16px;
  line-height: 22px;
  padding-top: 3px;
  padding-bottom: 3px;
  margin-left: 1rem;
}

.question {
  height: 100%;
}

.question main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1rem;
}

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

.q-content p {
  font-size: 42px;
  line-height: 52px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-weight: var(--f-weight);
}

.q-content p:first-of-type::before {
  content: "“";
  color: var(--c-gray);
}

.q-content p:last-of-type::after {
  content: "”";
  color: var(--c-gray);
}

.q-footer {
  margin-top: 2rem;
}

.q-button {
  display: inline-block;
  border: none;
  margin-top: 0;
}

.q-icon {
  display: block;
  width: 22px;
  height: 22px;
  fill: var(--c-text);
  stroke: var(--c-gray);
}

.error {
  height: 100%;
}

.error main {
  display: flex;
  align-items: center;
  height: 100%;
}

.error-msg-title {
  font-size: 32px;
  line-height: 42px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-weight: var(--f-weight);
}

.error-msg-text {
  max-width: 22rem;
}

.video-wrapper {
  margin: inherit 0;
}

.video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.ping {
  background: var(--c-text);
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  margin: 0 0 7px 7px;
  height: 8px;
  width: 8px;
  transform: scale(1);
  animation: pulse-black 3s infinite;
}

td {
  vertical-align: top;
  padding: 0.25rem 0;
}

@keyframes pulse-black {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@media (prefers-color-scheme: dark) {
  .ping {
    background: white;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
    animation: pulse-white 3s infinite;
  }

  @keyframes pulse-white {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
      transform: scale(1);
      box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
}