body {
  background-image: url(/assets/common/viwa/blog.png);
  background-position: right bottom;
  background-repeat: no-repeat;
}

section {
  position: relative;
  margin: 0 auto;
  border-radius: 4px;
  width: 600px;
  margin-bottom: 96px;
  backdrop-filter: blur(4px);
}

@media (prefers-color-scheme: light) {
  section {
    box-shadow: 2px 2px 8px var(--gray-a8);
  }
}

@media (prefers-color-scheme: dark) {
  section {
    border: 1px solid var(--gray-a4);
  }
}

section img {
  margin: 0 auto;
  max-width: 80%;
  max-height: none;
}

section figure {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}

@media not print {
  h1 {
    line-height: 1.4em;
    font-size: var(--font-size-6);
  }
}

p {
  text-indent: 0;
  margin-bottom: 14px;
}

li {
  margin-bottom: 24px;
}

#section-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - var(--site-navigation-height));
  background: linear-gradient(135deg, var(--accent-a2), transparent);
}

#post-date {
  text-align: right;
  font-size: var(--font-size-2);
  color: var(--gray-a11);
}

#site-navigation ul {
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  section {
    width: 90%;
  }
}

@media print {
  #section-container {
    background: none;
  }
  section {
    box-shadow: none;
    backdrop-filter: blur(36px);
  }
  section figure {
    display: block;
  }
  section img {
    max-height: 256px;
    max-width: 256px;
  }
}