    :root {
  --bg-color: #fafafa;
  --fg-color: #222831;
  --highlight: #777;
  --lowlight: #bbb;
}

body {
  background: var(--bg-color);
  margin: 0;
  padding: 0;
}

.bold {
  font-family: "CTVSans-Bold", "CTV Sans", Arial;
}

.content {
  background-color: var(--bg-color);
  max-width: 100%;
}

.content-primary {
  font-family: "CTVSans-Regular", "CTV Sans", Arial;
  position: relative;
  overflow: visible;
  width: 100%;
  float: none;
  line-height: 1.25;
}

.content-footer {
  margin-top: 0;
}

div.election-follow-cta {
  padding-right: 0;
}

/* HEADER AND FOOTER */
.issues-header {
  width: 100%;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 10;

  overflow: hidden;
  transition-duration: 0.3s;

  background: var(--lowlight);
}

.issues-footer {
  width: 100%;
  margin-top: 100px;
  position: sticky;
  position: -webkit-sticky;
  bottom: -40px;
  z-index: 10;
  overflow: hidden;
  transition-duration: 0.3s;
  background: var(--lowlight);
}

.issues-footer .issues-header-nav {
  grid-template-columns: 0 1fr 100px;
}

.issues-footer .issues-header-middle {
  text-align: left;
}

.issues-header-nav {
  --height: 40px;
  height: var(--height);
  line-height: var(--height);
  max-width: 1020px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 100px 1fr 100px;

  font-size: 15px;
}

.issues-header-nav > a:hover {
  background: var(--highlight);
  color: var(--lowlight);
}

.nav {
  padding: 0 20px;
  color: var(--highlight);
  text-decoration: none;
}

.issues-header-prev {
  text-align: left;
}

.issues-header-middle {
  color: var(--highlight);
  background: var(--lowlight);
  text-align: center;
}

.issues-header-next {
  text-align: right;
}

/* INFO DIV */

.issues-info {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 25px;
}

.issues-summary {
  font-size: 28px;
  color: var(--highlight);

  line-height: 34px;
  margin: 50px auto 60px;
}

.issues-author {
  font-size: 20px;
  margin-bottom: 15px;
}

.issues-editor {
  font-size: 14px;
  margin-bottom: 60px;
}

.issues-part {
  background: var(--highlight);
  color: var(--bg-color);
  font-size: 18px;
  text-transform: uppercase;

  display: inline-block;

  padding: 3px 10px;
  margin: 0 auto 50px;
}

/* WYSIWYG */

.WYSIWYGPageEditor {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;

  line-height: 28px;
  font-size: 18px;
  color: var(--fg-color);
}

.WYSIWYGPageEditor > h1 {
  font-size: 50px;
  text-align: center;
  margin: 70px auto;
  max-width: 800px;

  padding: 0 20px;
  line-height: 60px;
  font-family: "CTVSans-Bold", "CTV Sans", Arial, Helvetica, sans-serif;
}

.WYSIWYGPageEditor > h3 {
  font-size: 32px;
  text-align: center;
  margin: 50px auto 30px;
}

.h3-word {
  color: var(--highlight);
  display: inline-block;
  margin: 10px 0 0px;
  padding: 5px 9px;
  box-shadow: inset 0 -2px 0 0px var(--highlight), 0 2px 0 0px var(--highlight);
}

.h3-word.highlight {
  background: var(--highlight);
  color: var(--bg-color);
}

.WYSIWYGPageEditor > p {
  margin: 0 auto;
  margin-bottom: 18px;
  max-width: 700px;
  padding: 0 45px;
}

.WYSIWYGPageEditor a {
  transition-property: box-shadow;
  transition-duration: 0.15s;
  text-decoration: none;
  color: var(--fg-color);
  box-shadow: inset 0 -2px 0 0px var(--highlight), 0 1px 0 0px var(--highlight);
}

.WYSIWYGPageEditor a:hover {
  text-decoration: none;
  box-shadow: inset 0 -21px 0 0px var(--lowlight), 0 0px 0 0px var(--lowlight);
}

.top-img-div,
.body-img-div {
  position: relative;
  background: var(--lowlight);
  display: block;
  width: 100%;
  max-width: 1020px;
  height: 600px;
  margin: 60px auto;
  overflow: hidden;
}

.header-img,
.body-img-div > img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: 50% 100%;
  filter: saturate(0%);
  mix-blend-mode: multiply;
  transition-duration: 1s;
}

.body-img-div > img.natural {
  filter: none !important;
  mix-blend-mode: normal;
}

.big-letter {
  min-width: 40px;
  text-align: center;
  float: left;
  font-size: 60px;
  top: 0;
  padding: 20px 14px;
  background: var(--highlight);
  color: var(--bg-color);
  margin: 8px 10px 0 0;
}

.header-img,
.WYSIWYGPageEditor img {
  filter: saturate(0) blur(10px);
}

@media only screen and (max-width: 600px) {
  .issues-header-nav {
    grid-template-columns: 0px 1fr 60px;
    font-size: 13px;
  }
  .issues-header-middle {
    text-align: left;
    padding-left: 20px;
  }

  .WYSIWYGPageEditor > h1 {
    font-size: 32px;
    margin: 20px auto;
    line-height: 38px;
    padding: 15px 15px 10px;
  }

  .issues-summary {
    font-size: 22px;

    line-height: 28px;
    margin: 40px auto 50px;
    padding: 0 10px;
  }

  .WYSIWYGPageEditor > h3 {
    font-size: 22px;
    margin: 30px auto 15px;
  }

  .WYSIWYGPageEditor > p {
    padding: 0 15px;
  }

  .top-img-div,
  .body-img-div {
    height: auto;
    margin: 40px auto;
  }

  .top-img-div img,
  .body-img-div img {
    display: block;
    height: auto;
  }
}

