/* simple page */
.simple-page {
  max-width: var(--max-width);
  margin: 0 auto;
}
.simple-page p a,
.simple-page li a {
  position: relative;
  display: inline-block;
  text-decoration: underline;
  color: var(--text-color-black-light);
  transition: color 0.3s ease;
}
.simple-page p a,
.simple-page li a {
  position: relative;
  display: inline-block;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-color: var(--gn-secondary-color);
  text-underline-position: under;
  text-decoration-thickness: 0.1rem;
  color: var(--ce-primary-color-dark);
  transition: all 2s lineal;
}
.simple-page p a:hover,
.simple-page li a:hover {
  color: var(--ce-quaternary-color);
  text-decoration: none;
}
.simple-page__content {
  background-color: var(--body-background-white);
  line-height: var(--body-line-height);
  font-size: var(--normal-font-size);
  padding: 1rem 0 1.5rem;
}
.simple-page__header {
  width: var(--post-content-width);
  margin: 0 auto;
  margin-top: 1.4rem;
}
.simple-page__title {
  font-size: var(--h3-font-size);
  font-weight: var(--bold-font-weight);
  font-family: var(--heading-font);
  line-height: var(--heading-line-height);
  color: var(--text-color-black-light);
  text-transform: uppercase;
}
.simple-page__title-border {
  width: 1.875rem;
  height: 0.25rem;
  margin-top: 0.3rem;
  background-color: var(--gn-secondary-color);
}
.simple-page__img {
  margin: 0 auto;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.simple-page__text {
  width: var(--post-content-width);
  margin: 0 auto;
}
.simple-page__text h2,
.simple-page__text h3 {
  margin: 1.875rem 0 0.938rem;
  line-height: var(--heading-line-height);
  font-size: var(--h3-font-size);
  font-weight: var(--bold-font-weight);
  font-family: var(--heading-font);
  color: var(--text-color-black-light);
  text-transform: uppercase;
}
.simple-page__text p,
.simple-page__text h4 {
  margin: 0.938rem 0;
}
.simple-page__text ul,
.simple-page__text ol {
  margin: 0.938rem 0 0.938rem 1.25rem;
}
.simple-page__sidebar {
  background-color: var(--body-background-white);
  border-radius: 0rem;
  min-height: 9.375rem;
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding: 1.8rem 0;
}
/* grid */
.simple-page {
  display: grid;
  grid-gap: 0.063rem;
}
.simple-page__content {
  grid-area: content;
}
.simple-page__sidebar {
  grid-area: sidebar;
}
@media screen and (min-width: 768px) {
  body {
    background-color: var(--body-background-grey);
  }
  .simple-page {
    grid-template-columns: 3fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "content sidebar";
    grid-template-areas: "content sidebar"
  }
  .simple-page__sidebar {
    display: flex;
    display: block;
    padding: 1.8rem;
    position: sticky;
    align-self: start;
    top: 0rem;
    height: 590px;
    z-index: -1;
  }
}
.simple-page__sidebar-widget {
  width: 90%;
  height: 90%;
}
/* /simple page */