.article-heading {
  font-size: 20px;
  line-height: 120%;
  background: url(../images/h1_line.gif) repeat-y;
  background-position: left top;
  border-bottom: #2ebfef solid 3px;
  height: auto;
  padding: 13px 0 13px 28px;

  @media (min-width: 768px) {
    font-size: 26px;
  }
}

.EE-header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12vw;
}
.EE-heading {
  max-width: 20em;
  margin: 0 auto;
  font-size: var(--fontSize-4xl);
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.77);
}

.page-navi {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    margin-bottom: var(--gap-5xl);
    
    &:nth-child(n+2) {
        margin-top: var(--gap-5xl);
    }
}
.page-navi-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  padding: var(--gap-sm) var(--gap-md);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-primary) !important;
  font-size: var(--fontSize-sm, 14px);
  /* font-weight: bold; */

  img {
    transform: rotate(90deg)
  }
}

.wp-editor {
  h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-sm);
    margin-top: var(--gap-7xl);
    margin-bottom: var(--gap-3xl);
    font-size: var(--fontSize-3xl);
    font-weight: bold;
    text-align: center;
    line-height: 1.4;

    &::after {
      content: "";
      display: block;
      width: 2em;
      height: 0.15em;
      background: var(--color-primary);
    }
  }
  h3 {
    display: flex;
    align-items: center;
    margin-top: var(--gap-5xl);
    margin-bottom: var(--gap-2xl);
    padding-bottom: var(--gap-sm);
    border-bottom: 1px solid var(--color-border);
    font-size: var(--fontSize-2xl);
    font-weight: bold;
    line-height: 1.4;
  }
  p,
  ul,
  ol {
    margin-block: var(--gap-lg);
    font-size: var(--fontSize-md);
  }
  p {
    line-height: 1.8;
  }
  ul,ol {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
    line-height: 1.6;

    ul,ol {
        margin-top: var(--gap-xs);
        margin-bottom: 0;
    }
  }
  ul {
    margin-left: 1.5em;
    list-style: disc;
  }
  ol {
    margin-left: 1.5em;
    list-style: decimal;

    li {
        margin-bottom: 0;
    }
  }
  strong {
    font-weight: bold;
  }
}

.EE-images-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: auto;
  /* aspect-ratio: 357/268; */
}
