.column-content h1 {
  position: relative;
  margin-top: 28px;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #00053a;
}

@media (min-width: 1024px) {
  .column-content h1 {
    font-size: 20px;
  }
}

.column-content h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #e7e6e6;
}

.column-content h1::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: #00053a;
}

.column-content h2 {
  position: relative;
  margin-top: 50px;
  margin-bottom: 26px;
  display: flex;
  width: 100%;
  max-width: 750px;
  min-height: 92px;
  align-items: center;
  background-color: #f3f8fc;
  padding-right: 16px;
  padding-left: 26px;
  font-size: 20px;
  font-weight: 700;
  line-height: 29px;
  color: #00053a;
}

@media (min-width: 768px) {
  .column-content h2 {
    margin-top: 60px;
    margin-bottom: 32px;
    min-height: 64px;
    padding-left: 31px;
    line-height: 1.5;
  }
}

@media (min-width: 1024px) {
  .column-content h2 {
    font-size: 24px;
  }
}

.column-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background: #00053a;
}

.column-content h3 {
  position: relative;
  margin-top: 60px;
  margin-bottom: 40px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #00053a;
}

@media (min-width: 768px) {
  .column-content h3 {
    font-size: 24px;
  }
}

.column-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #e7e6e6;
  z-index: 0;
}

.column-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: #00053a;
  z-index: 1;
}

.column-content p {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 2em;
}

.column-content h4 {
  margin-top: 45px;
  font-size: 18px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .column-content h4 {
    font-size: 20px;
  }
}

.column-content ul {
  margin-top: 16px;
  padding-left: 20px;
  list-style-type: disc;
}

.column-content ul > :not([hidden]) ~ :not([hidden]) {
  margin-top: 24px;
}

.column-content ol {
  margin-top: 16px;
  padding-left: 20px;
  list-style-type: decimal;
  font-size: 16px;
}

.column-content ol > :not([hidden]) ~ :not([hidden]) {
  margin-top: 24px;
}

.column-content img {
  display: block;
  max-width: 333px;
  height: auto;
  margin: 24px auto;
}

.column-content img.size-large,
.column-content img.size-full {
  width: 100%;
  max-width: 333px;
  aspect-ratio: 5 / 3;
  object-fit: contain;
}

@media (min-width: 768px) {
  .column-content img {
    max-width: 750px;
  }

  .column-content img.size-large,
  .column-content img.size-full {
    max-width: 750px;
    aspect-ratio: 15 / 8;
    object-fit: cover;
  }
}

.column-content span.marker-yellow {
  padding: 0 0.2em;
  background-color: #fdfd77;
}

.column-content span.marker-yellow.is-bold {
  font-weight: 700;
}

.column-content a {
  color: #006fcf;
  text-decoration: underline;
}

.column-content a:hover {
  opacity: 0.8;
}

.logo-marquee {
  overflow: hidden;
}

.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: logo-marquee 40s linear infinite;
}

.logo-marquee__list {
  display: flex;
  align-items: center;
  padding: 16px 0;
  list-style: none;
  margin: 0;
  flex-wrap: nowrap;
}

.logo-marquee__item {
  flex: 0 0 auto;
}

.logo-marquee__item img {
  display: block;
  height: 150px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-marquee__item img {
    height: 240px;
  }
}

@keyframes logo-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.column-toc > ol {
  counter-reset: toc;
}

.column-toc > ol > li {
  counter-increment: toc;
}

.column-toc > ol > li > a::before {
  content: counter(toc) '. ';
}

.column-toc > ol > li > ol {
  counter-reset: toc-sub;
}

.column-toc > ol > li > ol > li {
  counter-increment: toc-sub;
}

.column-toc > ol > li > ol > li > a::before {
  content: counter(toc-sub) '. ';
}
