body > header {
  position: relative;
  background-image: linear-gradient(to bottom, #1E2544, #0D364F);
}
body > header::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  background-image: linear-gradient(to right, #00bafd, #8845af);
}
.content > header {
  padding: 20px 8px;
  background-color: #fafafa;
}
.content > section {
  padding: 20px 8px;
  background-color: #fff;
}
.content h3 {
  font-size: 20px;
  color: #343f8f;
  font-weight: 900;
}
.content__breadcrumb {
  display: none;
  list-style: none;
  align-items: center;
  padding: 0;
  font-size: 14px;
  margin-bottom: 20px;
  color: #6a6a6a;
}
.content__breadcrumb span {
  margin: 0 4px;
  color: #6a6a6a;
}
.content__title h1 {
  margin-bottom: 6px;
  color: #343f8f;
  font-size: 8vw;
  font-weight: 900;
  padding-right: 10px;
}
.content__title span {
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #6a6a6a;
}
.content__subtitle h2 {
  color: #313131;
  font-size: 22px;
  font-weight: 400;
}
.content__subtitle span {
  font-size: 15px;
  font-weight: 400;
}
.content--text p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}
.content--image figure {
  margin-bottom: 10px;
}
.content--image figure img {
  width: 100%;
  height: auto;
}
.content__pagination {
  display: flex;
}
.content__pagination-previous, .content__pagination-next {
  line-height: 21px;
  font-size: 16px;
  margin: 0 18px;
}
.content__pagination-page {
  line-height: 20px;
  font-size: 18px;
  margin: 0 18px;
}
.content__pagination-page--selected {
  color: #9d9d9d;
  font-weight: 900;
}
.content__pagination-previous {
  margin-left: 0;
}
.content__pagination-next {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  body > header {
    background-image: url("/assets/images/common/header-short.jpg");
    background-position: center;
  }
  .content h3 {
    font-size: 22px;
  }
  .content__breadcrumb {
    display: flex;
  }
  .content__title {
    margin-bottom: 10px;
  }
  .content__title h1 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .content__title span {
    font-size: 20px;
    line-height: 24px;
  }
  .content__subtitle h2 {
    font-size: 26px;
  }
  .content--image figure img {
    max-width: 400px;
  }
  .content--image figure.align--left {
    float: left;
    margin-right: 25px;
  }
  .content--image figure.align--right {
    float: right;
    margin-left: 25px;
  }
}