@font-face {
  font-display: swap;
  font-family: "Gotham";
  font-style: normal;
  font-weight: normal;
  src: local("Gotham-Book"), local("Gotham Book"), url("../fonts/Gotham-Book.eot%EF%B9%96.html#iefix") format("embedded-opentype"), url("../fonts/Gotham-Book.otf") format("opentype"), url("../fonts/Gotham-Book.woff") format("woff"), url("../fonts/Gotham-Book.ttf") format("truetype"), url("../fonts/Gotham-Book.svg#Gotham-Book") format("svg");
}

@font-face {
  font-display: swap;
  font-family: "Gotham";
  font-style: normal;
  font-weight: bold;
  src: local("Gotham-Bold"), local("Gotham Bold"), url("../fonts/Gotham-Bold.eot%EF%B9%96.html#iefix") format("embedded-opentype"), url("../fonts/Gotham-Bold.otf") format("opentype"), url("../fonts/Gotham-Bold.woff") format("woff"), url("../fonts/Gotham-Bold.ttf") format("truetype"), url("../fonts/Gotham-Bold.svg#Gotham-Bold") format("svg");
}

:root {
  --black: #2b2e34;
  --white: #f7f3f5;
  --plum: #6d3c5e;
  --plum-light: #bc85ac;
  --plum-xlight: #e0c7d9;
  --plum-dark: #4c2a41;
  --turquoise: #65c5b4;
  --turquoise-light: #aee0d7;
  --turquoise-dark: #358d7d;
  --lime: #83bd41;
  --lime-light: #badb95;
  --lime-dark: #699834;
  --gold: #faa21b;
  --gold-light: #fcbd5f;
  --strawberry: #d22532;
  --strawberry-light: #e7747e;
  --primary: var(--plum);
  --secondary: var(--turquoise);
  --tint: rgba(255, 255, 255, 0.5);
  --tint-light: rgba(255, 255, 255, 0.75);
  --shade: rgba(0, 0, 0, 0.5);
  --shade-light: rgba(0, 0, 0, 0.2);
  --shade-xlight: rgba(0, 0, 0, 0.1);
  --shade-dark: rgba(0, 0, 0, 0.8);
  --shadow: 0 0 0.2em var(--shade-dark), 0 0 2em var(--shade-dark), 0 0 5rem var(--shade-light);
  --shadow-mid: 0 0 2em var(--shade);
  --shadow-light: 1px 1px 2px var(--shade-light);
  --text-max-width: 50rem;
  --footer-width: 69rem;
  font-size: 100%;
  line-height: 1.5;
  scroll-padding-top: 3em;
}

::-webkit-input-placeholder {
  color: transparent;
}

::-moz-placeholder {
  color: transparent;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

#scroll-watch {
  height: 10px;
  pointer-events: none;
  position: absolute;
  top: 13rem;
  width: 10px;
  z-index: 9999;
}

body {
  background-color: #6d3c5e;
  background-color: var(--white);
  color: var(--black);
  display: flex;
  flex-direction: column;
  font-family: "Gotham", "Helvetica", sans-serif;
  height: 100%;
  min-height: 100vh;
  --main-padding: 2vw;
  }

h1, h2, h3, h4 {
  line-height: 1;
  opacity: 0.85;
}

h1, h2 {
  font-size: clamp(1.75rem, 7vw, 3rem);
  position: relative;
  text-align: center;
}

.un-list, .image-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.image-list li {
  margin: 0;
}

.image-list li > * {
  color: #2b2e34;
  display: block;
  padding: 0.5rem;
  text-align: center;
  text-decoration: none;
}

.image-list img {
  display: block;
  margin: auto;
}

figure {
  margin: 0;
}

figcaption {
  font-size: 0.9rem;
  font-style: italic;
  padding-right: 1rem;
  text-align: right;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

h1, h2, h3, h4, p, ul:not(.un-list), ol:not(.un-list), summary, details, blockquote {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--text-max-width);
}

a {
  color: var(--primary);
  outline: 0.25em solid transparent;
  outline-offset: 0;
  word-wrap: break-word;
  --current-color: var(--black); }

a:focus:not(:hover), button:focus:not(:hover), button.plain-link:focus:not(:hover) {
  background-color: var(--black);
  color: var(--white);
  outline-color: var(--black);
  transition: background-color 0.2s, color 0.2s, outline-color 0.2s;
}

a:focus:not(:hover) h2, a:focus:not(:hover) h3 {
  color: var(--white);
}

blockquote {
  margin: 3em auto;
}

.blog-page blockquote::before, .supporter-endorsement::before {
  content: "“";
  font-size: 4.5em;
  font-style: normal;
  left: -0.5em;
  opacity: 0.5;
  position: absolute;
  top: -0.35em;
}

button, .buttony {
  background-color: var(--tint-light);
  border: 2px solid var(--shade);
  border-radius: 0;
  box-shadow: var(--shadow-light);
  color: var(--shade-dark);
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  line-height: 1;
  max-width: 20rem;
  padding: 0.75em;
  padding-bottom: 0.65em;
  position: relative;
}

button:focus:not(:hover), .buttony:focus:not(:hover) {
  background-color: var(--black);
  outline: none;
}

button.disabled,
button[disabled] {
  opacity: 0.7;
  pointer-events: none;
}

.buttony {
  display: block;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
}

.button-prev, .button-next {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.button-prev::before, .button-next::after {
  border-bottom: 0.75em solid transparent;
  border-top: 0.75em solid transparent;
  content: "";
  height: 0;
  line-height: 0;
  margin: 0 0.5em 0 0;
  opacity: 0.7;
  transform: translateY(-0.05em) scaleY(0.6);
  width: 0;
}

.button-prev::before {
  border-right: 0.75em solid var(--shade-dark);
}

.button-next::after {
  border-left: 0.75em solid var(--shade-dark);
  margin: 0 0 0 0.5em;
}

button.plain-link {
  background-color: transparent;
  border: 0;
  box-shadow: none;
  font-weight: 400;
  max-width: none;
  text-decoration: underline;
}

input, select, textarea {
  background-color: white;
  border: 2px solid var(--turquoise-dark);
  border-radius: 0;
  padding: 1.5em 0.5em 0.5em;
  width: 100%;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
  background-size: 8px 10px;
  color: inherit;
  padding: 0.7em 1.75em 0.7em 0.5em;
}

input:not([type="radio"]) + span {
  left: 0.65em;
  position: absolute;
}

input:not(:placeholder-shown) + span, input:focus + span {
  font-size: 0.8em;
  top: 0.2em;
}

[type="radio"] {
  bottom: 0;
  left: -1em;
  margin: auto;
  position: absolute;
  top: 0;
  width: auto;
}

input[type="radio"] + span {
  font-size: 1em;
  margin-left: 0.5em;
  top: 0;
}

[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: auto;
  z-index: -1;
}

input[type="checkbox"] + span {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.9;
  position: relative;
}

.checkbox-label {
  padding-left: 1.75em;
}

.checkbox-label::before {
  background-color: white;
  border: 2px solid var(--turquoise-dark);
  bottom: 0;
  content: "";
  display: block;
  height: 1rem;
  left: 0;
  margin: auto;
  pointer-events: none;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 1rem;
}

.checkbox-label::after {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  bottom: 0;
  content: "";
  display: block;
  height: 1rem;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 1rem;
}

[type="checkbox"]:checked + span::before {
  background-color: var(--turquoise-dark);
}

[type="checkbox"]:checked + span::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

input:focus, select:focus, textarea:focus {
  outline: 5px solid var(--shade);
}

[type="checkbox"]:focus + span::before {
  outline: 5px solid var(--shade-dark);
}

[type="radio"]:focus {
  outline: 0;
}

/*[type="radio"]:focus + span, [type="radio"]:checked + span {*/
/*  font-weight: 700;*/
/*}*/

label {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 0;
}

.select-label {
  flex-wrap: nowrap;
}

form .outer-label {
  font-weight: 700;
  margin-bottom: 0.5em;
  width: 100%;
}

.outer-label + input[type="checkbox"] + span {
  font-weight: 400;
}

.input-help-text {
  font-style: italic;
  line-height: 1.2;
  padding: 0 1rem;
  position: relative;
  top: -0.5em;
}

button[type="submit"] {
  background-color: var(--gold);
}

summary {
  display: grid;
  justify-items: start;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary:focus {
  outline: 0;
}

summary::after {
  cursor: pointer;
  display: inline-block;
  font-size: 0.8em;
  font-weight: 700;
  margin-top: 1em;
  min-width: 12em;
  outline: 1px solid var(--shade);
  padding: 0.5em 0.75em;
  text-align: center;
}

summary:focus::after {
  background-color: var(--black);
  color: var(--white);
}

details[open] summary:focus::after {
  background-color: var(--shade-light);
  color: unset;
}

.pagination-nav {
  margin: 1rem auto;
  width: 100%;
}

.pagination-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pagination-nav li {
  margin: 0.2em;
}

.pagination-nav a {
  border-color: var(--shade-light);
  box-shadow: none;
  display: flex;
  font-size: 1rem;
  min-width: 0;
}

hr {
  border: 1px solid var(--plum-light);
  border-bottom: 0;
  margin: 2rem auto;
  max-width: var(--text-max-width);
}

/* Modals */
.modal {
  background-color: var(--shade);
  display: grid;
  height: 100%;
  left: 0;
  place-items: center;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 1000;
}

.modal.shown {
  visibility: visible;
}

.modal-content {
  background-color: var(--white);
  box-shadow: var(--shadow-mid);
  margin-top: 3rem;
  max-width: min(90%, 50rem);
  position: relative;
}

.modal img {
  max-height: 35vh;
  object-fit: cover;
  object-position: top;
}

.modal-close {
  background-color: transparent;
  border: none;
  box-shadow: none;
  display: grid;
  font-size: 4rem;
  height: 4rem;
  padding: 0;
  position: absolute;
  right: 0;
  top: -4rem;
  width: 4rem;
  z-index: 10;
}

.exit-modal .modal-close {
  color: var(--strawberry);
}

.exit-modal h2 {
  margin-bottom: 0;
}

.exit-modal .signup-form {
  max-height: 44vh;
  overflow: auto;
  padding: 1rem;
}

.exit-modal .resident-check {
  margin-bottom: 1rem;
}

/* Lang switch */
.lang-switch-wrap {
  background-color: var(--plum);
  padding: 0.5em max(4vw, calc((100% - 58rem) / 2)) 0 0;
  text-align: right;
}

.lang-switcher {
  color: var(--white);
  font-size: 0.8rem;
  text-decoration: none;
}

/* Header */
header {
  align-items: center;
  background-color: var(--primary);
  display: grid;
  grid-gap: 1rem 2rem;
  grid-template-areas: "logo buttons" "slogan slogan";
  position: relative;
  width: 100%;
  z-index: 10;
}

.logo-link {
  grid-area: logo;
  justify-self: end;
  margin-left: min(1rem, 2vw);
  margin-top: -1rem;
}

.logo-link:focus:not(:hover) {
  background-color: var(--shade);
  outline-color: var(--shade);
  outline-width: 0.5rem;
}

.logo {
  display: block;
  margin: auto;
  max-width: min(100px, 35vw);
  width: 100%;
}

.header-nav-wrap {
  display: flex;
  grid-area: buttons;
  justify-self: end;
}

.header-button {
  line-height: 1.5;
  margin: 0 1vw;
  padding: 0.5em;
}

.header-button.donate {
  border-color: transparent;
}

.primary-nav {
  justify-self: end;
  margin-right: 2vw;
  z-index: 100;
}

.primary-nav > button {
  min-width: 5em;
}

[aria-expanded="false"] {
  background-color: var(--shade-light);
  border-color: var(--tint);
  color: var(--tint-light);
}

.primary-nav [aria-expanded="true"] {
  background-color: var(--shade);
  color: var(--white);
}

.primary-nav ul {
  background-color: var(--white);
  border-bottom: 2px solid var(--shade-light);
  font-size: 1.5rem;
  left: 0;
  opacity: 0;
  padding: 1rem 0 3rem;
  position: absolute;
  text-align: center;
  top: 100%;
  transition: visibility 0s 0.3s, opacity 0.3s 0s;
  visibility: hidden;
  width: 100%;
}

.primary-nav [aria-expanded="true"] + ul {
  opacity: 1;
  transition: visibility 0s 0s, opacity 0.3s 0s;
  visibility: visible;
}

.primary-nav a {
  color: var(--shade-dark);
  display: inline-block;
  font-weight: 700;
  padding: 1.5em 0.75em;
  position: relative;
  text-decoration: none;
}

.primary-nav a:focus:not(:hover) {
  background-color: var(--white);
  color: var(--black);
  outline-color: var(--white);
}

.primary-nav .donate {
  display: none;
}

.primary-nav .donate a {
  color: var(--gold);
  text-transform: uppercase;
}

.primary-nav .current {
  color: var(--current-color);
}

.primary-nav [href="#main"] {
  pointer-events: none;
}

.primary-nav .current::after {
  background: var(--current-color);
  bottom: 0.55em;
  content: "";
  display: block;
  height: 0.2em;
  left: 0;
  position: absolute;
  width: 100%;
}

@keyframes fadeInUp {
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
}

.slogan {
  background-color: var(--shade);
  font-size: 5.45vw;
  font-weight: 700;
  grid-area: slogan;
  line-height: 1;
  margin: 0;
  max-width: none;
  padding: 0.75em 2vw;
  text-align: center;
}

.slogan-line {
  color: var(--turquoise);
  display: inline-block;
  text-align: right;
}

@supports (animation-delay: 1s) {
  h1 .slogan-line {
    animation: 0.75s ease-out 0s 1 forwards fadeInUp;
    opacity: 0;
    transform: translate3d(0, 0.2em, 0) scale3d(0.9, 0.9, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  h1 .slogan-line {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

.slogan-line:nth-of-type(2) {
  animation-delay: 0.3s;
  color: var(--lime);
}

.slogan-line:nth-of-type(3) {
  animation-delay: 0.6s;
  color: var(--gold);
}

.slogan-line .period {
  opacity: 0;
  position: absolute;
}

main {
  flex-grow: 1;
  max-width: 73em;
/*   overflow-x: hidden; */
  padding: var(--main-padding);
  width: 100%;
}

main:not(.home-page) {
  padding-top: 0;
}

.vid-block {
  align-items: center;
  display: grid;
  overflow: hidden;
  padding: 0;
}

.vid-wrap {
  background-color: var(--black);
  position: relative;
}

.youtube-wrap {
  height: 100%;
  padding-top: 52.65%;
}

.talk-page .youtube-wrap {
  padding-top: 56.25%;
}

.twitch-wrap {
  padding-top: 56.25%;
}

.vid-wrap iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.action {
  margin: 2% auto 0;
}

.signup {
  background-color: var(--secondary);
}

.signup-form {
  display: grid;
  grid-auto-flow: dense;
  grid-gap: 0.55em;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 40ch;
  padding: 1.5rem;
  position: relative;
}

.signup-form > * {
  grid-column: span 3;
}

.signup h2 {
  background-color: var(--shade-light);
  color: white;
  font-size: 2em;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
  padding: 0.25em;
  text-align: center;
}

.signup-form .zip {
  grid-column: 1;
}

.zip input {
  height: 100%;
}

.signup-form button {
  grid-column: 2 / -1;
}

.signup-form button + label {
  margin-left: 0.25em;
  margin-top: 0.5rem;
}

.resident-check {
  margin-top: 0.5em;
}

.social {
  background-color: var(--primary);
}

.social ul {
  display: flex;
  height: 100%;
}

.social li {
  flex-grow: 1;
}

.social a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  transition: background-color 0.3s;
}

.social a:hover, .social a:focus {
  background-color: var(--lime);
  outline: 0;
}

.social a:focus:not(:hover) {
  outline: 3px solid var(--plum);
}

.social img {
  height: 2rem;
}

.more-action {
  margin: 3rem auto;
  max-width: 25rem;
  text-align: center;
}

.more-action h2 {
  text-align: center;
}

.more-action > * + * {
  margin-top: 1rem;
  width: 100%;
}

.mail-link {
  display: block;
  margin: auto;
}

.connect {
  background-color: var(--tint);
  border: 2px solid var(--shade-light);
  font-size: 1.2em;
  margin-top: 3em;
  padding: 1em 1em 0.5em;
  position: relative;
  text-align: center;
}

.connect::before {
  background-image: url(../img/email.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 1.65em;
  left: 0;
  position: absolute;
  top: -1em;
  width: 100%;
}

.next-event::before {
  background-image: url(../img/icons/icon-calendar.svg);
}

.secondary-nav ul {
  display: grid;
  font-size: 1rem;
  grid-gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(12ch, 1fr));
}

.button-gold {
  background-color: var(--gold);
}

.button-turquoise {
  background-color: var(--turquoise);
}

.button-lime {
  background-color: var(--lime);
}

.button-plum {
  background-color: var(--plum);
  color: var(--white);
}

.button-white {
  background-color: white;
}

.button-strawberry {
  background-color: var(--strawberry);
  color: var(--white);
}

.latest-podcast {
  margin-top: 2rem;
}

.latest-podcast a {
  font-size: 1.1em;
  font-weight: 700;
}

.latest-podcast-subtitle {
  font-style: italic;
  margin-top: 0.25em;
}

main > article, main > section {
  margin-left: auto;
  margin-right: auto;
  padding: var(--main-padding);
}

.home-page .page-header {
  margin-bottom: 0;
}


.home-page .page-header h1 {
  max-width: 90%;
  text-align: left;
}

.home-page .page-header img {
  object-position: 0 30%;
}

.home-copy {
  margin-top: 3rem;
}

.home-copy h2 {
  color: var(--plum);
}

.home-page ~ footer {
  margin-bottom: 2vw;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1em var(--main-padding);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8rem;
  margin: auto;
}

.breadcrumbs li::after {
  content: "›";
}

.breadcrumbs li:last-child::after {
  content: "";
}

.breadcrumbs a {
  display: inline-block;
  padding: 0.25em 0.5em;
}

.breadcrumbs a:focus {
  outline: none;
}

[aria-current="page"] {
  color: unset;
  pointer-events: none;
  text-decoration: none;
}

/* Policy Nav */
.policy-nav {
  margin: auto;
  width: 100%;
}

.home-page .policy-nav {
  max-width: none;
}

.policy-top-nav, body > .policy-nav {
  padding: var(--main-padding);
  padding-bottom: 0;
}

.breadcrumbs ~ .policy-nav {
  padding-top: 0;
}

.policy-list {
  display: grid;
  font-size: 0.8rem;
  grid-gap: 5px;
  grid-template-columns: repeat(6, 1fr);
}

.policy-page .policy-item {
  grid-column: span 3;
}

/* .policy-page .policy-item:nth-child(n+5) {
  grid-column: span 2;
} */

.home-page .policy-list {
  grid-template-columns: 1fr;
}

.policy-item {
  background-color: white;
  border: 3px solid white;
  box-shadow: 1px 1px 5px var(--shade-light);
  display: grid;
  position: relative;
  transform: scale3d(1, 1, 1);
  transition: box-shadow 0.3s, transform 0.3s;
  width: 100%;
  z-index: 0;
}

.home-page .policy-item {
  display: none;
}

.home-page .policy-item.featured {
  display: block;
}

.policy-nav li > * {
  padding: 0;
}

.policy-nav .policy-item::before,
.policy-index-page .policy::before {
  background-color: var(--policy-color);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.2;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.policy-list a {
  align-items: center;
  display: grid;
  grid-template-columns: 25% 1fr;
  text-align: left;
}

.policy-page .policy-list a {
  min-height: 2.5rem;
}

.policy-list a.current {
  outline-color: var(--policy-color);
  outline-width: 5px;
}

.policy-list a:focus {
  background-color: transparent;
  color: unset;
  outline: 5px solid var(--black);
}

.policy-nav .policy-icon {
  margin: 0;
  max-height: 3rem;
  padding: 0.5em;
  width: 100%;
}

.policy-icon[src$="government.svg"] {
  transform: translateY(-10%);
}

.home-page .policy-nav .policy-icon {
  max-height: 4rem;
}

.policy-titles {
  padding: 1em 0.2em 1em 0.5em;
}

.policy-title {
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
}

.policy-subtitle {
  align-self: start;
  display: none;
  line-height: 1.1;
  margin-bottom: 0.5em;
  padding: 0.5em;
}

.home-page .policy-icon {
  grid-row: span 2;
}

.home-page .policy-title {
  align-self: end;
  font-size: 1.2em;
  padding: 1em 0.5em 0;
}

.home-page .policy-subtitle {
  display: block;
}

.policy-nav .policy-item:after {
  border-radius: 1px;
  color: white;
  font-size: 0.7em;
  font-weight: 700;
  padding: 0.2em 0.5em;
  position: absolute;
  right: -7px;
  top: -7px;
}

.policy-nav .policy-item.new::after {
  background-color: var(--black);
}

.policy-nav .policy-item::after {
  right: 0.2em;
  top: 0.2em;
}

.policy-lime {
  --policy-color: var(--lime);
}

.policy-gold {
  --policy-color: var(--gold);
}

.policy-turquoise {
  --policy-color: var(--turquoise);
}

.policy-plum {
  --policy-color: var(--plum);
}

.policy-black {
  --policy-color: var(--shade);
}

.policy-strawberry {
  --policy-color: var(--strawberry);
}

.more-policies {
  color: var(--plum);
  display: none;
  font-style: italic;
  margin-bottom: 0.75em;
  margin-top: 0.5em;
  max-width: none;
  text-align: center;
}

.home-page .more-policies {
  display: block;
}

.policy-disability-justice ol ol ol {
  list-style-type: lower-roman;
  padding-left: 1em;
}

/* Pages General */
.page-header {
  margin-bottom: 2rem;
  padding: 0;
  position: relative;
}

.page-header .full-w-img {
  max-height: 100vh;
  object-fit: cover;
}

.page-header h1 {
  bottom: 1em;
  color: var(--white);
  left: 0;
  margin: 0 auto;
  opacity: 1;
  position: absolute;
  right: 0;
  text-shadow: var(--shadow);
  width: 100%;
}

.articles-list {
  overflow: hidden;
  padding: 0;
}

.articles-list li {
  border: 1px solid var(--shade-light);
  margin-top: 1rem;
  padding: 0.5em 0.25em;
}

.articles-list a {
  color: var(--black);
  display: block;
  margin: 3px;
  padding: 0.5em 0.75em;
  text-decoration: none;
}

.articles-list a:focus {
  background-color: unset;
}

.articles-list .podcast-date {
  font-size: 0.9em;
}

.articles-list .podcast-title {
  color: var(--plum);
  font-size: 1.2em;
  font-weight: 700;
  margin-top: 0.5em;
  text-decoration: underline;
}

/* Policy Pages */
.policy {
  margin-top: 1rem;
  padding-bottom: 15px;
}

.policy h1, .policy h2 {
  color: var(--plum);
}

.policy h2 {
  text-align: left;
}

.policy-page h1, .policy-page .proposal-details {
  text-align: center;
}

.policy-page .twitter-tweet {
  margin: auto;
}

.policy-page .proposal-details {
  font-size: 1.5em;
  line-height: 1.2;
}

.policy-page h2 {
  font-size: 2rem;
}

.policy-gnd ol {
  color: var(--plum-dark);
  font-size: 1.2rem;
  font-weight: 700;
}

.policy ul, .policy ol {
  padding-left: 1.5em;
}

.policy > ol > li + li {
  margin-top: 2em;
}

.policy ol ol {
  color: black;
  font-size: 1rem;
  font-weight: 400;
  list-style-type: lower-alpha;
  padding: 0 3em 0 0.5em;
}

main.policy-page ul:not(.policy-list) li,
main.policy-page ol li {
  margin-top: 0.75em;
}

main.policy-page.basic-income-case-studies ul:not(.policy-list) li,
main.policy-page.basic-income-case-studies ol li {
  margin-top: 0;
}

.basic-income-case-studies blockquote {
  margin-left: 4rem;
  margin-right: 4rem;
}

.policy-podcast {
  align-items: center;
  background-color: var(--shade-xlight);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  left: calc(var(--main-padding) * -1);
  margin-bottom: 3rem;
  margin-top: 3rem;
  padding: 0.5em max(calc((100% - var(--text-max-width) + 3rem) / 2), var(--main-padding));
  position: relative;
  width: calc(100% + (var(--main-padding) * 2));
}

.policy-podcast > div {
  margin: 0 0.5rem;
  text-align: center;
}

.policy-podcast .podcast-player {
  color: var(--shade);
  flex-basis: 5rem;
  flex-grow: 1;
}

.policy-podcast .plyr {
  border-radius: 0;
}

.policy-podcast .plyr--audio .plyr__controls {
  background-color: transparent;
  padding: 0;
}

.policy .news-banner {
  margin: auto;
  max-width: var(--text-max-width);
}

.policy details {
  margin-bottom: 3rem;
}

/* POLICY INDEX */
.policy-index-intro {
  padding-top: 1rem;
}

.policy-index-page .policy {
  border: 1px solid var(--shade-light);
  margin-top: 1rem;
  padding: 0;
  position: relative;
  z-index: 0;
}

.policy-index-page .policy > a {
  align-items: center;
  color: var(--black);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.policy-index-page .policy-icon {
  height: 4rem;
  width: 5rem;
}

.policy-index-page h2 {
  color: var(--black);
  font-size: 1.5em;
  margin-bottom: 0;
  text-align: center;
}

.policy-index-page .policy-abstract {
  background-color: var(--tint);
  padding: 1rem;
}

.policy-index-page .policy-abstract *:first-child {
  margin-top: 0;
}

.policy-index-page .policy-abstract *:last-child {
  margin-bottom: 0;
}

.policy-index-page .policy-podcast-link {
  font-style: italic;
  padding: 0.5em 1em;
}

.policy-podcast-link a {
  color: inherit;
}

/* Banners */
.green-banner {
  --banner-bg-color: var(--lime);
  --banner-text-color: var(--black);
}

.gold-banner {
  --banner-bg-color: var(--gold);
  --banner-text-color: var(--black);
}

.blue-banner {
  --banner-bg-color: var(--turquoise);
  --banner-text-color: var(--black);
}

.plum-banner {
  --banner-bg-color: var(--plum);
  --banner-text-color: var(--white);
}

.black-banner {
  --banner-bg-color: var(--black);
  --banner-text-color: var(--tint);
}

.news-banner a {
  align-items: center;
  background-color: var(--banner-bg-color);
  color: var(--banner-text-color);
  display: flex;
  flex-wrap: wrap;
  font-size: 1.25em;
  font-weight: 700;
  justify-content: center;
  padding: 0.4em 0.5em;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.news-banner a:hover, .news-banner a:focus {
  background-color: var(--banner-text-color);
  color: var(--banner-bg-color);
}

.slide-banner {
  bottom: 0;
  padding: 1rem;
  position: fixed;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.3s;
  width: 100%;
  z-index: 100;
}

.slide-banner a {
  max-width: none;
}

.scrolled .slide-banner {
  transform: none;
}

.next-event {
  line-height: 1.2;
}

.next-event a {
  display: block;
  font-weight: 700;
  margin-bottom: 0.25em;
  margin-top: 0.5em;
}

.next-event-when {
  font-size: .9em;
  font-style: italic;
}

.policy-nav + .next-event {
  margin-bottom: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.25em;
}

.more-action .next-event {
  display: none;
}

.thank-you {
  background-color: var(--gold);
  padding: 0 5%;
  text-align: center;
}

.thank-you h2 {
  color: var(--black);
  font-size: 3em;
  margin-bottom: 0;
  margin-top: 0.5em;
  text-align: center;
}

/* Volunteer / Endorse */
.volunteer {
  background-color: var(--turquoise);
  display: block;
  margin: auto;
  padding: 0;
}

.volunteer > * {
  padding: 2em 4vw;
}

.volunteer h1 {
  background-color: var(--shade-light);
  color: white;
  margin: 0;
  padding: 0.5em;
  position: relative;
  text-align: center;
}

.volunteer p {
  background-color: var(--tint);
  margin: 0;
  text-align: center;
}

.volunteer p.endorse-fine-print {
  font-size: 12px;
  text-align: left;
}

.volunteer p a {
  color: inherit;
}

.volunteer p a:focus:not(:hover) {
  color: white;
}

.volunteer .list-errors {
  background-color: var(--gold);
  font-weight: bold;
  list-style: none;
  margin: 0;
  padding: 1em;
}

.endorse form {
  margin-top: 1rem;
}

.volunteer-form {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr;
}

.volunteer-form > * {
  grid-column: span 12;
}

.volunteer-checkboxes {
  padding: 0 1em 1em;
}

.volunteer-checkboxes label {
  border: 4px solid transparent;
  justify-self: start;
  padding: 0.5em;
}

.endorse .comments {
  margin-top: 1rem;
}

.endorse .comments + .input-help-text {
  font-size: 0.8em;
}

.volunteer-form .photo input {
  margin-bottom: 0.25rem;
  padding-top: 0.5em;
}

.volunteer-form textarea {
  max-width: 100%;
  min-height: inherit;
  padding: 1em;
  width: 100%;
}

.volunteer-form .comments span, .volunteer-checkboxes input + span {
  font-size: 1rem;
  position: static;
}

[type="checkbox"] + span, .select-label span {
  font-weight: 700;
  opacity: 0.9;
}

.volunteer-form .select-label span {
  flex-basis: 35ch;
}

.volunteer-form button {
  justify-self: center;
}

main.endorse-share {
  margin-left: auto;
  margin-right: auto;
  max-width: 60ch;
  text-align: center;
}

.endorse-share h1 {
  text-align: center;
}

.endorse-share h2 {
  color: black;
  font-size: 2em;
  margin-top: 0.75rem;
  text-align: center;
}

.share-img {
  border: 1rem solid white;
  box-shadow: 2px 2px 15px var(--shade-light);
}

.sharing {
  margin-top: 2rem;
  padding: 1rem;
}

.endorse-share-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.25em;
  width: calc(100% + 0.5rem);
}

.endorse-share-buttons li {
  flex-grow: 1;
  margin: 0.25rem;
}

.endorse-share-buttons a {
  align-items: center;
  background-color: var(--tint);
  display: flex;
  height: 100%;
  justify-content: center;
  max-width: none;
  padding: 0.75em;
}

.endorse-share-buttons img {
  filter: invert(1);
  margin-left: 0;
  margin-right: 1em;
}

.endorse-share-buttons a:focus img {
  filter: none;
}

/* YARDSIGNS */
.yardsign noscript {
  background-color: var(--shade);
  color: white;
  padding: 1rem;
}

[data-selected-reason="permit"] [data-condition*="permit"], [data-selected-reason="already"] [data-condition*="already"], [data-selected-reason="reject"] [data-condition*="reject"], [data-selected-reason="other"] [data-condition*="other"] {
  display: block;
}

.yardsign p {
  color: black;
  font-size: 1rem;
  text-align: left;
}

.yardsign p + p {
  padding-top: 0;
}

.yardsign-reason {
  border: 3px solid var(--tint);
  margin: 2rem 0;
  padding: 0 2rem 1rem;
}

.yardsign-reason legend {
  font-size: 1.1em;
  font-weight: 700;
  padding: 0 0.5rem;
}

.yardsign-reason label {
  margin-top: 1rem;
}

.yardsign-reason-other {
  margin-top: 0.5em;
}

form.yardsign-form .phone {
  grid-column: span 12;
}

.yardsign-confirms {
  background-color: var(--tint);
  margin-top: 1.5rem;
  padding: 1rem;
}

.yardsign-confirms .outer-label {
  color: black;
}

.yardsign-confirms .checkbox-label {
  display: block;
  font-weight: 400;
  position: static;
}

.yardsign-comments {
  margin-top: 1rem;
}

.yardsign-form .yardsign-checkboxes {
  display: block;
  padding-left: 0;
  padding-right: 0;
}

.yardsign-comments [data-condition] {
  font-style: italic;
  margin-bottom: 0.5rem;
}

/* SUPPORTERS */
.supporters-carousel {
  background-color: var(--turquoise-light);
  transition: background-color 1s;
  width: 100%;
}

.supporters-carousel .supporter:nth-child(n + 2) {
  display: none;
}

.supporters-carousel .siema {
  color: inherit;
  display: block;
  text-decoration: none;
  transition: all 1s;
}

.supporters-carousel .siema:focus * {
  color: white;
}

.supporter {
  padding: 2.5rem;
  padding-left: 3rem;
}

.supporter-endorsement {
  padding: var(--padding);
  position: relative;
}

.supporter blockquote, .supporter-endorsement {
  margin: 0 auto;
  max-width: 40rem;
}

.supporter footer {
  margin-top: 1rem;
}

.supporter-name {
  font-style: normal;
  font-weight: 700;
}

.supporter-titles {
  display: block;
  font-style: italic;
  padding-left: 1.2rem;
  padding-right: 0.5rem;
}

.supporters-page {
  max-width: 90rem;
}

.supporters-page > img:first-child {
  max-height: 35vh;
  min-height: 300px;
  object-fit: cover;
  width: 100%;
}

.supporters-header {
  align-items: center;
  background-color: var(--turquoise);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.5rem;
}

.supporters-page h1 {
  display: inline-block;
  font-size: 2rem;
  margin: 0.5rem;
  text-align: center;
}

.supporters-header .buttony {
  display: inline-block;
  margin: 0.5rem 1rem;
}

.supporters-list {
  display: grid;
  grid-gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(25ch, 1fr));
  margin-top: 1rem;
}

.supporters-page .supporter {
  background-color: var(--turquoise-light);
  border: 1px solid var(--shade-xlight);
  box-shadow: var(--shadow-light);
  display: grid;
  padding: 0;
  place-items: center;
}

.supporters-page .supporter:nth-child(2n) {
  background-color: var(--tint);
}

.supporters-page .supporter:nth-child(3n) {
  background-color: var(--strawberry-light);
}

.supporters-page .supporter:nth-child(4n) {
  background-color: var(--lime-light);
}

.supporters-page .supporter:nth-child(5n) {
  background-color: var(--gold-light);
}

.supporters-page .supporter:nth-child(6n) {
  background-color: var(--plum-light);
}

.supporters-page blockquote {
  display: flex;
  flex-direction: column;
}

.supporters-page .supporter-endorsement, .supporters-page .supporter footer {
  margin: 0;
  padding: 1rem;
  padding-left: 2.5rem;
  padding-top: 1.5rem;
}

.supporters-page .supporter-endorsement::before {
  font-size: 8em;
  left: 0.02em;
  line-height: 1;
  opacity: 0.08;
  top: -0.025em;
}

.supporters-page .supporter-endorsement {
  font-weight: 700;
}

.supporters-page .supporter-name {
  color: var(--shade-dark);
}

/* Blog */

.blog-list {
  margin-top: 3rem;
}

.blog-page .blog-date {
  margin: 1rem;
  text-align: center;
}

.blog-page h1 {
  font-size: 2rem;
}

.policy-disability-justice > ol {
  padding-left: 2rem;
  padding-right: 0;
}

.policy-disability-justice > ol > li {
  color: var(--plum);
  font-size: 2rem;
  font-weight: bold;
}

.policy-disability-justice > ol > li span {
  color: var(--black);
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
}

.policy-disability-justice > ol > li > ol > li {}
.policy-disability-justice > ol > li > ol > li > ol > li {}
.policy-disability-justice > ol > li > ol > li > ol > li > ol > li {}

.policy-disability-justice blockquote,
.blog-page blockquote {
  font-style: italic;
  margin-bottom: 2rem;
  max-width: min(calc(var(--text-max-width) - 4rem), 85%);
  position: relative;
}

/* Footer */
.supporters-carousel, body > footer {
  margin: 0 auto;
}

.home-page ~ .supporters-carousel, .home-page ~ footer {
  max-width: var(--footer-width);
  width: 96%;
}

body > footer {
  background-color: var(--shade-light);
  padding: 2rem 1rem;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 0;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-row > * {
  margin: 0.5em;
}

.footer-row:nth-of-type(1) > * {
  margin-left: 0.75em;
  margin-right: 0.75em;
}

body > footer a {
  color: var(--black);
  outline-width: 0.5em;
}

.supporters-page ~ footer {
  max-width: 86rem;
}

/* Podcast */
.podcast-nav {
  margin-top: 1rem;
  width: 100%;
}

.podcast-nav ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8em;
  justify-content: center;
}

.podcast-nav li {
  margin: 0 0.1em;
}

.podcast-nav a {
  background-color: white;
  border: 1px solid var(--shade-xlight);
  color: var(--black);
  padding: 0.5em 0.75em 0.4em;
  text-align: center;
  text-decoration: none;
}

.podcast-nav a:focus {
  background-color: black;
  color: white;
  outline: none;
}

.podcast-graphic {
  border: 1px solid var(--shade-light);
  display: block;
  margin: auto;
}

.podcast-subscribes {
  align-items: center;
  border-top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0.5rem;
}

.podcast-subscribes span {
  margin-right: 0.5em;
}

.podcast-subscribes li {
  display: inline;
}

.podcast-nav ul, .podcast-subscribes ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.podcast-subscribes a {
  display: inline-grid;
  opacity: 0.7;
  padding: 6px;
  position: relative;
}

.podcast-subscribes a:hover {
  background-color: var(--gold);
  opacity: 1;
}

.podcast-subscribes a:focus {
  background-color: var(--gold);
  outline: 0;
}

.podcast-subscribes img {
  height: 20px;
  vertical-align: middle;
  width: auto;
}

.podcast-questions {
  border-top: 1px solid var(--shade-light);
  max-width: none;
  padding: 1rem;
  text-align: center;
  width: 100%;
}

.podcasts-page > section {
  padding: 0;
}

.podcasts-page .podcast-questions {
  border-bottom: 1px solid var(--shade-light);
}

.podcasts-page h2 {
  margin-bottom: 0;
}

.podcast-summary {
  margin-top: 0.5rem;
}

.podcast .podcast-date {
  font-style: italic;
}

.podcast-transcript {
  margin-left: calc(var(--main-padding) * -1);
  padding: var(--main-padding);
  width: calc(100% + (var(--main-padding) * 2));
  word-break: break-word;
}

.podcast-transcript dt {
  font-weight: bold;
  margin-top: 1em;
}

.podcast-transcript dd {
  margin-left: 0;
}

.podcast-player audio {
  width: 100%;
}

/* EVENTS */
.events-page {
  max-width: 60rem;
}

.events-page .buttony {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  padding: 0.5em 0.7em 0.4em;
}

.events-controls {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9em;
}

.events-list + .events-controls {
  margin-top: 1rem;
}

.event-type-filter {
  flex-grow: 1;
  margin: 0.25rem;
}

.event-type-filter select {
  border-color: var(--shade);
  color: var(--black);
  font-weight: 700;
  line-height: 1;
}

.event-type-filter select:focus {
  background-color: black;
  color: white;
  outline: none;
}

.events-nav-button {
  width: 100%;
}

.events-subscribe {
  background-color: var(--gold);
  flex-grow: 1;
  line-height: 1.5;
  margin: 0.25rem;
  max-width: none;
}

.events-nav {
  margin: 0.25em;
  ; }

.events-nav ul {
  display: flex;
  flex-wrap: wrap;
  font-size: unset;
}

.events-nav li {
  flex-grow: 1;
  margin: 0 0.25rem;
}

.events-nav ul li:nth-child(2) {
  margin-left: -0.05em;
}

.events-list li {
  background-color: white;
  border: 1px solid var(--shade-light);
  margin-top: 0.5rem;
  padding: var(--event-padding);
  position: relative;
  --event-padding: 1rem; }

.events-list .minor-event {
  padding: 0;
}

.minor-event .minor-event-inner {
  color: inherit;
  display: block;
  font-size: 1.2rem;
  padding: var(--event-padding);
  padding-bottom: calc(var(--event-padding) - 0.15em);
  text-decoration: none;
}

.minor-event a:focus {
  color: white;
}

.events-list li + li {
  margin-top: 1.5rem;
}

.events-list .minor-event + .minor-event {
  margin-top: 1rem;
}

.event > * + * {
  margin-top: 0.5rem;
}

.event-date {
  background-color: var(--shade-light);
  background-color: var(--turquoise);
  font-weight: 700;
  margin-left: calc(var(--event-padding) * -1);
  margin-top: calc(var(--event-padding) * -1);
  padding: var(--event-padding);
  width: calc(100% + (var(--event-padding) * 2));
}

.minor-event-date {
  font-weight: bold;
}

.minor-event-time {
  font-style: italic;
}

.event-name {
  font-size: 1.5em;
  font-weight: 700;
  margin-top: 1rem;
}

a .minor-event-name {
  text-decoration: underline;
}

.event-time {
  font-style: italic;
  margin-top: 1rem;
}

.event-venue-name {
  color: var(--shade-dark);
  font-size: 1.1em;
  font-weight: 700;
}

.event-summary {
  margin-left: 0;
  margin-right: 0;
}

.event-rsvp {
  background-color: var(--turquoise);
  background-color: var(--lime);
  font-size: 0.8em;
  margin-left: 0;
  margin-top: 0;
}

.no-events {
  background-color: var(--tint);
  border: 1px solid var(--shade-light);
  font-size: 1.5em;
  padding: 1em;
  text-align: center;
}

/* LIVE */
.live-page {
  flex-grow: 0;
}

.live-page section, .live-page {
  max-width: 80rem;
}

.live-page h2 {
  font-size: 1.7rem;
  text-align: center;
}

.watch-links ul {
  display: grid;
}

.watch-links li {
  flex-shrink: 1;
}

.watch-links a.watch-link {
  align-items: stretch;
  background-color: var(--bg);
  box-shadow: var(--shadow-light);
  display: flex;
  margin: 0.5rem;
  padding: 0;
}

.watch-link.fb {
  --bg:#3b5998; }

.watch-link.twitter {
  --bg: #1DA1F2; }

.watch-link.periscope {
  --bg: #40a4c4; }

.watch-link.yt {
  --bg: #f00; }

.watch-link.twitch {
  --bg: #643da7; }

.watch-link:focus {
  color: var(--black);
  --bg: var(--black); }

.watch-links img {
  margin: 0.5em;
}

.watch-platform, .watch-name {
  display: inline-grid;
  font-weight: 700;
  line-height: 1;
  place-items: center;
}

.watch-platform {
  color: var(--white);
  justify-content: start;
  padding: 0.5rem 1em 0.35em 0;
}

.watch-name {
  background-color: var(--white);
  border: 2px solid var(--bg);
  flex-grow: 1;
  padding: 0.5em 0.75em 0.4em;
}

.live-page .previous-episodes {
  grid-column: span 2;
  padding: 0;
  width: 100%;
}

.live-page .previous-episodes h2 {
  font-size: 2rem;
}

.previous-episodes ul {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.previous-episodes a {
  color: unset;
  display: block;
  height: 100%;
  text-decoration: none;
}

.previous-episodes figure {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  position: relative;
}

.previous-episodes figcaption {
  flex-grow: 1;
  line-height: 1;
  margin-top: 0;
  padding: 0.5em;
}

.previous-episodes .episode-date {
  background-color: var(--plum);
  color: var(--white);
  font-size: 0.7em;
  padding: 0.5em;
  position: absolute;
  right: 0;
  top: 0;
}

.live-page + footer {
  max-width: 76rem;
  width: calc(100% - 4vw);
}

/* VOTE */
.vote-form button {
  max-width: none;
  width: 100%;
}

.vote-form button:nth-of-type(1) {
  margin-top: 2rem;
}

.vote-form [value="A"] {
  background-color: var(--white);
}

.vote-form fieldset {
  background-color: var(--tint);
  border: none;
  grid-column: span 12;
  padding: 4rem 1rem 1.5rem;
}

.vote-form legend {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  /*text-align: center;*/
  transform: translateY(2.5rem);
}

.vote-form .radios label {
  line-height: 1;
  margin-left: 1.5rem;
  /*margin: auto;*/
  /*max-width: 20ch;*/
  padding-left: 0.5em;
}

.vote-form .radios label + label {
  margin-top: 0.75em;
}

.post-vote {
  display: flex;
  margin: 1rem auto;
  max-width: var(--footer-width);
  padding: 0;
  width: 96%;
}

.post-vote-wrap {
  /*background-color: var(--turquoise-light);*/
  border: 3px solid var(--turquoise);
  display: grid;
  flex-grow: 1;
  justify-items: center;
  margin-bottom: 5rem;
  padding: 2rem;
  text-align: center;
}

.post-vote h1 {
  align-self: end;
  margin-bottom: 0;
}

.post-vote .share-message {
  align-self: start;
  font-size: 1.2em;
  margin: 0;
  padding: 1rem;
}

.post-vote a {
  color: inherit;
}

.post-vote h2 {
  font-size: 1.1rem;
}

.post-vote #map {
  background-color: var(--shade);
  border: 2px solid var(--shade-xlight);
  max-width: 640px;
  width: 100%;
}

.post-vote #map::before {
  content: "";
  display: block;
  padding-top: 75%;
}

.post-vote button.plain-link {
  margin-top: 2rem;
}

.ballot-form {
  display: none;
  margin-top: 2rem;
  max-width: 40ch;
  width: 100%;
}

main.post-vote .ballot-form > * {
  grid-column: 1 / -1;
}

.ballot-form-message {
  background-color: var(--white);
  font-size: 1.1em;
  font-weight: 700;
  margin-top: 2rem;
  max-width: 40ch;
  padding: 0.5em;
  width: 100%;
}

/* ABOUT */
.about-page {
  max-width: none;
}

.about-page .page-header {
  max-width: calc(var(--block-max-w) - (var(--main-padding) * 2));
}

.about-page h1 {
  font-size: min(10vw, 3rem);
}

.about-page section:not(.bg-white) {
  padding: 0;
}

.about-page section:not(.page-header),
.about-page section:not(.bg-white) h2 {
  margin-top: 4rem;
}

.about-page .section-nav:first-of-type {
  margin-top: 3.5rem;
}

.about-page cite {
  display: block;
  margin-top: 0.5rem;
}

.endorsements {
  padding: 0;
  text-align: center;
}

.endorsements h1,
.endorsements h2 {
  text-align: center;
}

.endorsements .subtext {
  font-style: italic;
  margin-top: 1rem;
}

.endorsements ul.people {
  display: grid;
  grid-gap: 4rem 2rem;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  margin: auto;
}

.endorsements ul.people,
.about-page .endorsements ul.orgs {
  max-width: 1150px;
  padding: 1em;
 }

.endorser.person img {
  background-color: var(--tint-light);
  border: 5px solid var(--plum);
  border-radius: 50%;
  display: inline-block;
  object-fit: cover;
  width: 250px;
}

.endorser.person .endorser-name {
  font-size: 1.2em;
  font-weight: 700;
  margin-top: 1rem;
}

.endorser.person endorser-title {
  font-style: italic;
  line-height: 1.2;
  max-width: 80vw;
  text-align: center;
}

.endorsements ul.orgs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 5rem auto 2rem;
  max-width: 1500px;
}

.about-page ul.orgs {
  margin-top: 2rem;
}

.endorsements ul.orgs li {
  margin: 2rem;
}

.endorser.organization img {
  display: block;
  margin: auto;
  max-height: 170px;
  max-width: 300px;
  width: auto;
}

.endorser .org-title {
  margin-top: 1rem;
}

.speaks-out-entry {
  background-color: white;
  border: 1px solid var(--shade-light);
  display: grid;
  margin: 2rem auto 0;
  padding: 1em;
  position: relative;
}

.speaks-out-entry::before {
  background: right/contain no-repeat;
  content: "";
  display: block;
  height: 80%;
  max-height: 10rem;
  opacity: 0.04;
  position: absolute;
  right: 1rem;
  top: 10%;
  width: 50%;
}

.speaks-out [data-type="podcast"]::before {
  background-image: url(../img/icons/icon-itunes.svg);
}

.speaks-out [data-type="statement"]::before {
  background-image: url(../img/icons/icon-rss.svg);
}

.speaks-out [data-type="dear-portland"]::before {
  background-image: url(../img/icons/icon-blog.svg);
}

.speaks-out-entry h3 {
  margin-bottom: 0;
  margin-left: 0;
}

.speaks-out-entry .date {
  font-size: 0.9em;
  order: -1;
}

.speaks-out-entry p {
  margin-bottom: 0;
  max-width: none;
}

.endorsements-page {
  max-width: none;
}

.section-nav {
  margin: 2rem auto 0;
}

.section-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.next-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}

.section-link,
.section-nav a,
.next-section a {
  font-size: 1.2rem;
  line-height: 1.2;
 }

.section-nav a,
.next-section a {
  display: grid;
  margin: 0.5rem;
  max-width: none;
  min-width: 10em;
  place-items: center;
}

.next-section a {
  border: 0;
  box-shadow: none;
  -webkit-clip-path: var(--clip);
  clip-path: var(--clip);
  grid-template-columns: 1fr auto;
  padding-left: 2em;
  padding-right: 2em;
  --clip: polygon(0% 0%, calc(100% - var(--arrow-w)) 0%, 100% 50%, calc(100% - var(--arrow-w)) 100%, 0% 100%, var(--arrow-w) 50%); --arrow-w: 1em; }

/* STATE */
.state-summary {
  padding-top: 0;
}

.state-page .vid-block {
  margin: 3rem;
}

/* TALK */
.talk-page h2 ~ h2 {
  font-size: 2rem;
  margin-top: 4rem;
}

/* MINIVAN */
.minivan-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 3rem;
}

.minivan-page h1 {
  text-align: center;
}

.minivan-downloads {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.minivan-downloads a {
  margin: 0.5em;
}

/* ACCESSIBILITY */
.accessibility-page h1,
.accessibility-page p:last-child a {
  display: block;
  margin-top: 1rem;
  text-align: center;
}

@media (min-height: 500px) {
  .page-header .full-w-img {
    max-height: 65vh;
  }
}

@media (max-width: 575.98px) {
  body > .news-banner:not(.slide-banner) a {
    padding-bottom: 0.3em;
  }

  .mail-link {
    font-size: 5.5vw;
  }

  .select-label {
    display: block;
  }

  .select-label select {
    margin: 1em 0;
  }

/*   .policy-page .policy-item:nth-child(n+5) a {
    align-content: center;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0.2em 0.5em;
    text-align: center;
  }

  .policy-page .policy-item:nth-child(n+5) img {
    max-width: 3rem;
  } */

  .policy ul ul, .policy ol ol {
    padding-left: 0;
    padding-right: 1em;
  }

  .podcast-player {
    margin-top: 1rem;
  }

  .events-nav {
    flex-grow: 1;
  }

  .event-rsvp {
    max-width: none;
    width: 100%;
  }

  .yardsign-reason {
    border: 0;
    padding-left: 1rem;
  }

  .yardsign-reason legend {
    display: block;
    margin-left: -1em;
    margin-right: 0;
    max-width: none;
    width: calc(100% + 2rem);
  }

  .watch-platform {
    min-width: 10vh;
  }

  .ballot-form button {
    max-width: none;
    width: 100%;
  }

  .exit-modal .modal-close {
    color: white;
    -webkit-text-fill-color: var(--strawberry);
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 2px;
  }

  .blog-page blockquote::before {
    font-size: 3.4rem;
  }

  .bottom-links a, .section-nav li {
    flex-grow: 1;
  }

  .section-link {
    max-width: none;
  }

  .pagination-nav li {
    flex-grow: 1;
  }

  body > footer {
    padding-bottom: 5.5rem;
  }
}

@media (min-width: 576px) {
  h1, h2 {
    font-size: 2.5em;
    text-align: left;
  }

  h1 {
    font-size: 3em;
  }

  h3, h4 {
    font-size: 1.5em;
  }

  .breadcrumbs ol {
    margin-left: -0.5em;
  }

  .action {
    display: grid;
    grid-gap: 0 2vw;
    grid-template-columns: 1fr 0.35fr;
  }

  .social ul {
    display: grid;
  }

  .volunteer-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .volunteer-form .phone {
    grid-column: span 8;
  }

  .volunteer-form .zip {
    grid-column: span 4;
  }

  .events-page h1 {
    font-size: 2.75rem;
  }

  .events-page h1, .events-controls {
    margin: 0.5rem 0;
  }

  .events-controls {
    font-size: 1em;
  }

  .events-page-topbar {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  .supporters-list {
    background-color: white;
    border: 1px solid var(--turquoise);
    margin-top: 0;
    padding: 2rem;
  }

  .supporters-page .supporter {
    padding: 0.2em;
  }

  .watch-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .vote {
    margin-bottom: 5rem;
    margin-left: auto;
    margin-right: auto;
    min-width: 0;
  }

  .vote h1 {
    text-align: center;
  }

  .vote .vote-form {
    grid-template-columns: repeat(12, 1fr);
    padding: 2rem;
  }

  .vote-form > * {
    grid-column: span 6;
  }

  .vote-form .street-label {
    grid-column: span 8;
  }

  .vote-form .zip-label {
    grid-column: span 4;
  }

  .vote-form .g-recaptcha {
    grid-column: span 12;
  }

  .vote-form button {
    grid-column: 4 / span 6;
    margin-top: 2rem;
  }

  .ballot-form button {
    justify-self: start;
  }

  .policy-index-page .policy > a {
    flex-direction: row;
    padding: 1rem;
    padding-left: 2rem;
  }

  .policy-index-page h2 {
    font-size: 1.75em;
    margin: 0;
    margin-left: 1em;
    text-align: left;
  }

  .policy-index-page .policy-abstract {
    padding: 2rem;
  }

  .policy-index-page .policy-podcast-link {
    padding-right: 2rem;
    text-align: right;
  }

  .slide-banner {
    display: none;
  }

  a {
    --current-color: var(--tint-light);
  }

  header {
    grid-gap: 1.5rem min(4vw, 3.5rem);
    grid-template-areas: "logo slogan" "nav nav";
    grid-template-columns: minmax(100px, 23%) 1fr;
  }

  .header-button.donate, .primary-nav > button {
    display: none;
  }

  .logo-link {
    max-width: 150px;
  }

  .slogan {
    background-color: transparent;
    font-size: 4vw;
    padding: 0;
    padding-right: 0.5em;
    text-align: left;
  }

  .header-nav-wrap {
    grid-area: nav;
    width: 100%;
  }

  .primary-nav {
    background-color: var(--shade);
    margin: 0;
    width: 100%;
  }

  .primary-nav ul {
    background-color: transparent;
    border: 0;
    display: flex;
    font-size: 1rem;
    justify-content: space-between;
    margin: auto;
    opacity: 1;
    padding: 0 var(--main-padding);
    position: relative;
    top: 0;
    visibility: visible;
  }

  .primary-nav li {
    display: grid;
    place-items: center;
  }

  .primary-nav .donate {
    display: grid;
  }

  .primary-nav a {
    color: var(--white);
    line-height: 1;
    padding: 1em 0.2em;
  }

  .current-gold {
    --current-color: var(--gold); }

  .current-turquoise {
    --current-color: var(--turquoise); }

  .current-lime {
    --current-color: var(--lime); }

  .current-strawberry {
    --current-color: var(--strawberry); }

  .current-plum {
    --current-color: var(--plum-light); }

  .primary-nav .current::after, .primary-nav [href="#main"]::after {
    bottom: 0;
    height: 0.3em;
  }

  .home-page .policy-item.homepage {
    display: block;
  }

  .more-policies {
    margin-bottom: 0;
  }

  .podcasts-page h1, .podcast h1 {
    font-size: 2.2rem;
  }

  .podcast h2 {
    font-size: 1.9rem;
  }

  .policy-list {
    grid-template-columns: repeat(12, 1fr);
  }

  .policy-page .policy-item {
    grid-column: span 3;
    min-height: 3.5rem;
  }

  .policy-page .policy-title {
    padding-right: 0.5em;
  }

  .home-page .policy-list {
    grid-template-columns: 1fr 1fr;
  }

  .about-page section.endorsements {
    margin-top: 0;
    padding-top: 2rem;
  }

  .endorsements ul.people {
    font-size: 1.35em;
  }

  .event {
    display: grid;
    grid-auto-flow: dense;
    grid-gap: 0 1rem;
    grid-template-columns: minmax(auto, 20ch) auto;
    justify-items: start;
  }

  .event > * {
    grid-column: 1;
  }

  .event-date, .event-name {
    grid-column: 1 / -1;
  }

  .event-summary {
    grid-column: 2;
    grid-row: span 4;
    margin-bottom: 0;
    margin-top: 1rem;
  }

  .event-rsvp {
    margin-top: 1.5rem;
  }

  .supporters-header .buttony {
    margin-left: 2rem;
  }

  .modal-content {
    display: grid;
    grid-gap: 1.5em 2em;
    grid-template-areas: "img close" "img header" "img form";
    margin: 0;
    max-height: 26rem;
  }

  .modal-close {
    filter: none;
    grid-area: close;
    justify-self: end;
    margin-bottom: -2rem;
    position: relative;
    right: 0;
    top: 0;
  }

  .modal img {
    align-self: stretch;
    grid-area: img;
    margin: 0;
    max-height: 26rem;
    max-width: min(25vw, 300px);
    object-position: center;
  }

  .modal h2 {
    align-self: end;
    grid-area: header;
    margin: 0;
    margin-right: 1.5rem;
  }

  .modal .signup-form {
    align-self: start;
    grid-area: form;
    margin-bottom: 2rem;
    margin-right: 2rem;
    max-width: 24em;
    padding: 5px;
  }

  .pagination-nav ul {
    justify-content: flex-end;
  }

  .pagination-nav li {
    margin: 0 0 0 0.2em;
  }

  .next-section a {
    min-width: 20rem;
  }
}

@media (max-width: 767.98px) {
  .home-page .policy-nav {
    margin-bottom: 2vw;
    margin-top: 2vw;
  }
}

@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }

  body {
    --main-padding: 1.5rem;
    }

  p, ul, ol, summary {
    font-size: 1.2rem;
  }

  .logo {
    max-width: 150px;
  }

  .slogan {
    font-size: min(4vw, 2.8rem);
  }

  [lang="es"] .slogan {
    font-size: min(4vw, 2rem);
  }

  header {
    grid-template-columns: auto;
  }

  .primary-nav a {
    padding-left: 0;
    padding-right: 0;
  }

  main {
    margin: auto;
  }

  .home-page .page-header h1 {
    left: auto;
    right: 3rem;
    width: auto;
  }

  .home-page .home-copy {
    margin-top: 2.4rem;
  }

  .podcast-nav + main {
    padding-top: 0;
  }

  .home-page {
    align-content: start;
    display: grid;
    grid-gap: 1.25rem;
    grid-template-columns: 1fr 1fr minmax(29ch, min-content);
    padding-top: 1rem;
  }

  .home-page > * {
    grid-column: 1 / -1;
  }

  .home-page .page-header {
    width: 100%;
  }

  .home-page .vid-block {
    margin: 0;
    max-width: none;
  }

  .action {
    margin: 0;
  }

  .more-action {
    align-self: start;
    grid-column: 1;
    margin: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }

  .connect, .secondary-nav {
    margin-left: auto;
    margin-right: auto;
    max-width: 18rem;
  }

  .connect {
    margin-top: 2em;
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .connect a {
    font-size: 2vw;
  }

  .policy-nav + .next-event,
  .next-event + .latest-podcast {
    display: none;
  }

  .more-action .next-event {
    display: block;
    font-size: 1.2em;
    margin-top: 2rem;
  }

  .secondary-nav ul {
    grid-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .home-copy {
    grid-column: 2 / -1;
    grid-row: span 2;
    margin: 0;
    padding-top: 0;
  }

  .policy {
    padding-bottom: var(--main-padding);
  }

  .policy .image-list {
    left: 0;
    width: 100%;
  }

  .policy-gnd ol {
    font-size: 1.5rem;
  }

  .policy ol ol {
    font-size: 1.2rem;
  }

  section.volunteer {
    margin: 2rem auto;
    max-width: 55ch;
  }

  section.volunteer > * {
    padding: 1em;
  }

  .vote h1 {
    padding: 0.5em;
  }

  .podcasts-page > section {
    display: grid;
    grid-auto-flow: dense;
    grid-gap: 1rem 2rem;
    grid-template-areas: "logo desc" "subscribe questions";
    grid-template-columns: min(35vw, 300px) 1fr;
  }

  .podcasts-page .podcast-graphic {
    align-self: start;
    grid-area: logo;
    margin: 0;
  }

  .podcasts-page .podcast-subscribes {
    align-items: flex-start;
    align-self: start;
    grid-area: subscribe;
    margin: 0;
  }

  .podcasts-page-description {
    align-self: center;
    grid-area: desc;
  }

  .podcasts-page-description p {
    margin-bottom: 0;
  }

  .podcasts-page h1 {
    margin-top: 0;
  }

  .podcasts-page .podcast-questions {
    border-bottom: 0;
    font-size: 0.95em;
    grid-area: questions;
    margin: 0;
    margin-top: -1rem;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }

  .podcasts-page h2, .podcasts-page .articles-list {
    grid-column: 1 / span 2;
  }

  .podcast {
    display: grid;
    grid-gap: 0.5rem 2rem;
    grid-template-areas: "graphic ." "graphic title" "graphic player" "graphic subscribe" "graphic . " "description description" "questions questions" "transcript transcript";
    grid-template-columns: clamp(100px, 25vw, 18rem) 1fr;
    margin-top: 0;
  }

  .podcast .podcast-graphic {
    display: block;
    grid-area: graphic;
    justify-self: center;
    margin: 0;
    min-width: 150px;
  }

  .podcast-nav {
    margin-bottom: 1rem;
    margin-top: 0;
  }

  .pagination-nav {
    grid-column: 1 / -1;
  }

  .podcast-nav ul {
    font-size: 0.9em;
    justify-content: flex-start;
  }

  .podcast .podcast-subscribes {
    grid-area: subscribe;
    justify-self: start;
  }

  .podcast .podcast-questions {
    grid-area: questions;
    margin-top: 0;
    padding-top: 1.5rem;
  }

  .podcast h1 {
    grid-area: title;
    margin: 0;
  }

  .podcast .podcast-player {
    align-self: start;
    grid-area: player;
    margin-top: 1rem;
  }

  .podcast .podcast-desc {
    font-size: 1rem;
    grid-area: description;
  }

  .podcast-transcript {
    grid-area: transcript;
  }

  .home-page ~ .supporters-carousel, .home-page ~ footer {
    width: calc(100% - 4rem);
  }

  .post-vote {
    margin-top: 2rem;
  }

  .live-page + footer {
    width: calc(100% - 4rem);
  }

  .policy-index-page h2 {
    font-size: 2em;
  }

  .live-page {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 2fr minmax(25ch, 1fr);
    justify-content: stretch;
  }

  .live-page .vid-wrap {
    width: 100%;
  }

  .live-page h2 {
    align-self: end;
    font-size: 1.2rem;
  }

  .live-page .watch-links {
    border: 1px solid var(--shade-light);
    display: grid;
    padding: 1em;
  }

  .watch-links ul {
    align-self: start;
    display: grid;
    font-size: 0.9rem;
  }

  .watch-platform {
    padding-bottom: 0.5em;
  }

  .supporters-carousel blockquote {
    width: max-content;
  }

  .speaks-out-entry {
    padding: 2rem;
  }

  .page-header .full-w-img {
    min-height: 350px;
  }

  .blog-page .blog-date {
    margin: auto;
    padding-right: 0.5em;
    text-align: left;
  }

  .pagination-nav {
    margin-bottom: 0;
  }

  .next-section a + a {
    margin-left: -1em;
  }

  .endorsements ul.people {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .about-page .endorsements ul.orgs {
    display: grid;
    grid-gap: 4rem;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    margin: 5rem auto;
    max-width: 90vw;
  }

  .about-page .endorser.organization {
    margin: 0;
  }

  .about-page .endorser.organization img {
    max-width: 100%;
  }

  .policy-disability-justice ol ol {
    padding-left: 1.5em;
  }

  .policy-disability-justice ol ol ol {
    list-style-type: lower-roman;
  }
}

@media (min-width: 992px) {
  body {
    --block-max-w: 64rem;
  }

  .breadcrumbs {
    margin: auto;
    max-width: var(--block-max-w);
    width: 100%;
  }

  .primary-nav ul {
    justify-content: space-between;
    max-width: var(--block-max-w);
  }

  .breadcrumbs ~ .policy-nav {
    padding: 0 var(--main-padding);
  }

  main, .breadcrumbs ~ .policy-nav {
    max-width: var(--block-max-w);
  }

  .home main {
    max-width: 71rem;
    padding-top: var(--main-padding);
  }

  .home-page .page-header {
    margin-top: 0;
  }

  section:not(.page-header):not(.volunteer):not(.wide) {
    max-width: calc(var(--text-max-width) + (var(--main-padding) * 2));
  }

  .page-header img {
    left: 0;
    width: 100%;
  }

  .home-page .vid-block {
    grid-column: 1 / span 2;
  }

  .action {
    grid-column: 3;
    grid-template-columns: 1fr;
    margin: 0;
  }

  .signup {
    align-items: center;
    display: grid;
  }

  [lang="es"] .signup-form {
    grid-template-columns: 10ch 1fr 1fr;
  }

  .social ul {
    display: flex;
  }

  .connect a {
    font-size: 1em;
  }

  section.policy {
    padding-bottom: 5rem;
  }

  .policy + .policy {
    margin-top: 3rem;
  }

  .podcasts-page > section {
    grid-template-areas: "logo desc" "logo subscribe" "logo questions";
  }

  .podcasts-page .podcast-subscribes {
    align-items: center;
    justify-content: flex-start;
    margin-top: 2rem;
  }

  .blog-page .blog-date {
    margin: 2rem auto 0;
  }

  .events-page-topbar {
    justify-content: space-between;
  }

  .policy-page {
    align-content: start;
    align-items: start;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 12rem 1fr;
  }

  .policy-page > * {
    grid-column: 2;
  }

  .policy-page .policy-nav {
    grid-column: 1;
    margin: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 1rem;
  }

  .home-page .policy-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .policy-page .policy-list {
    grid-gap: 0.5rem;
    grid-template-columns: 1fr;
  }

  .policy-page .policy-list .policy-item {
    grid-column: 1 / -1;
  }

  .policy-page .policy-list .policy-title {
    padding-left: 0.5rem;
  }

  .policy-page .policy {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .logo, [lang="es"] .logo {
    max-width: 200px;
  }
}

/* utilities */
.d-block {
  display: block;
}

.mt-3 {
  margin-top: .75em;
}

.no-break {
  white-space: nowrap;
}

.bg-white {
  background-color: white;
}

.bg-turquoise {
  background-color: var(--turquoise);
}

.js-only {
  display: none;
}

.js .js-only {
  display: block;
}

.full-w-img {
  background-color: var(--shade);
  display: block;
  left: calc(var(--main-padding) * -1);
  max-width: none;
  position: relative;
  width: calc(100% + (var(--main-padding) * 2));
}

section p .full-w-img {
  margin-top: 3rem;
}

:not(.bg-white) .full-w-img {
  box-shadow: var(--shadow-light);
}

.bg-white .full-w-img {
  margin-bottom: 2em;
  margin-top: 2em;
}

.bg-white .full-w-img:first-child, .bg-white .full-w-img:last-child, .bg-white p:first-child .full-w-img, .bg-white p:last-child .full-w-img {
  margin-bottom: -1em;
  margin-top: -1em;
}

.bg-white .full-w-img:first-child, .bg-white .full-w-img:last-child, .bg-white p:first-child .full-w-img {
  top: calc(var(--main-padding) * -1);
}

.bg-white .full-w-img:last-child, .bg-white p:last-child .full-w-img {
  bottom: calc(var(--main-padding) * -1);
}

.fit-top {
  object-position: top;
}

.fit-bottom {
  object-position: bottom;
}

.fit-left {
  object-position: left;
}

.fit-right {
  object-position: right;
}

.horiz-centered {
  margin: auto;
  padding-bottom: 1rem;
}
