/* 

Theme Name: UCS WP
Theme URI: http://blog.ucsusa.com/
Author: Union of Concerned Scientists
Description: A wordpress theme for UCS websites

*/
:root {
  --text-color: #000;
  --muted-color: #666;
  --bg-color: #fff;
  --border-color: #ccc;
}
* {
  border: 0;
  font: inherit;
  margin: 0;
  padding: 0;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
:root {
  font-size: 125%;
  --duration: 0.3s;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  :root {
    --duration: 0;
    scroll-behavior: auto;
  }
}
body {
  box-sizing: border-box;
  position: relative;
  min-height: 100vh;
  background-color: #fff;
  background-color: var(--bg-color);
  color: #000;
  color: var(--text-color);
  font-family: UCSMercury, "Mercury SSm A", "Mercury SSm B", Georgia, serif;
  line-height: 1.6;
  font-size: 1rem;
}
details > * {
  box-sizing: border-box;
}
p {
  margin-bottom: 1.6rem;
  letter-spacing: -0.001em;
}
small,
sub,
sup {
  font-size: 80%;
  line-height: 1;
}
em,
cite,
i {
  font-style: italic;
}
strong,
var,
b {
  font-weight: 700;
}
q:before {
  content: "'";
}
q:after {
  content: "'";
}
q > q {
  font-style: italic;
}
dfn,
abbr {
  border-bottom: 1px dotted #666;
  cursor: default;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  margin-top: 1rem;
  margin-bottom: 1.6rem;
  font-weight: 700;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}
h1,
h2,
h3,
h4 {
  letter-spacing: -0.002em;
}
h1 sup,
h2 sup,
h3 sup,
h4 sup,
h1 sub,
h2 sub,
h3 sub,
h4 sub,
h1 small,
h2 small,
h3 small,
h4 small {
  font-size: 50%;
}
h1 {
  font-size: 1.8rem;
  line-height: 1.16666667;
}
@media screen and (min-width: 1000px) {
  h1 {
    font-size: 2.6rem;
    line-height: 1.07692308;
    letter-spacing: -0.005em;
  }
}
@media screen and (min-width: 1000px) {
  h1.page-header {
    font-size: 3.5rem;
    line-height: 1;
  }
}
h2.section-header {
  margin-bottom: 2rem;
  margin-top: 1rem;
  text-align: center;
  max-width: calc(32rem - 1rem*2);
  margin-left: auto;
  margin-right: auto;
}
h2.section-header::after {
  content: " ";
  display: block;
  width: 4rem;
  height: 0.5rem;
  margin: 1rem auto;
  background-color: #ff522b;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.2;
}
@media screen and (min-width: 1000px) {
  h2 {
    font-size: 1.8rem;
    line-height: 1.16666667;
  }
}
h3 {
  font-size: 1.3rem;
  line-height: 1.23076923;
}
h4 {
  font-size: 0.8rem;
}
@media screen and (min-width: 1000px) {
  h4 {
    font-size: 1.05rem;
    line-height: 1.33333333;
    letter-spacing: -0.001em;
  }
}
h5,
h6 {
  font-size: 0.8rem;
}
a {
  color: currentColor;
  text-decoration: none;
  border-bottom: 2px solid #00aeeb;
}
a:hover,
a:focus,
a:active {
  color: currentColor;
  text-decoration: none;
  border-bottom-style: dashed;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
nav a {
  border-bottom: 2px solid transparent;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
nav a:hover {
  border-color: #00aeeb;
  border-bottom-style: solid;
}
ol,
ul,
dl {
  margin-bottom: 1.6rem;
}
ol ol,
ul ol,
dl ol,
ol ul,
ul ul,
dl ul {
  margin-bottom: 0;
  margin-top: 0.5rem;
}
dd {
  margin-bottom: 0.5em;
  margin-left: 1rem;
}
@media screen and (min-width: 700px) {
  dd {
    margin-left: 2rem;
  }
}
ol,
ul {
  margin-left: 1rem;
}
li {
  margin-bottom: 0.5em;
}
ul {
  list-style: disc;
}
@media screen and (min-width: 700px) {
  ol {
    margin-left: 0;
    counter-reset: section;
    list-style: none;
  }
  ol > li {
    position: relative;
    margin-left: 2rem;
  }
  ol > li:before {
    counter-increment: section;
    content: counters(section, '');
    position: absolute;
    margin-left: -2rem;
  }
  ol > li ol > li:before {
    content: counters(section, '.');
  }
  ul {
    margin-left: 0;
  }
  ul > li {
    margin-left: 2rem;
    list-style: none;
  }
  ul > li::before {
    content: "";
    background-color: #000;
    background-color: var(--text-color);
    display: inline-block;
    border-radius: 1rem;
    height: 0.5rem;
    width: 0.5rem;
    margin-left: -2rem;
    margin-top: 0.66666667rem;
    position: absolute;
  }
}
details {
  font-size: 0.75rem;
  line-height: 1.53333333;
  color: #666;
  color: var(--muted-color);
  color: #000;
  color: var(--text-color);
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 700px) {
  details {
    padding: 0 1em 0.25em;
  }
}
details + details {
  margin-top: -1.6rem;
}
details summary {
  color: #000;
  color: var(--text-color);
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
}
details summary::-webkit-details-marker {
  display: none;
}
details[open] summary {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 700px) {
  details {
    border-left: 1px solid #ccc;
    border-left: 1px solid var(--border-color);
    border-top: 1px solid #ccc;
    border-top: 1px solid var(--border-color);
    margin-left: 2rem;
    position: relative;
  }
  details > :last-child {
    margin-bottom: 0;
  }
  details summary {
    list-style: none;
    padding-top: 0.5rem;
  }
  details summary:before {
    content: "+";
    position: absolute;
    width: 2rem;
    top: -1px;
    right: 100%;
    padding-top: 0.5rem;
    border-top: 1px solid #ccc;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-weight: bold;
  }
  details[open] summary:before {
    content: "–";
    outline: 0;
  }
  details ul li::before {
    margin-top: 0.33333333rem;
  }
}
img,
video,
svg,
figure {
  display: block;
  max-width: 100%;
  height: auto;
}
figure {
  display: block;
  position: relative;
  margin: 0 auto;
  margin-bottom: 1.6rem;
}
figure img {
  display: block;
  margin: 0 auto;
}
caption,
figcaption {
  font-size: [object Object],[object Object],[object Object];
  font-style: italic;
}
blockquote {
  position: relative;
  padding: 1rem;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.002em;
  border: 1px solid #ccc;
  border: 1px solid var(--border-color);
  margin-bottom: 1.6rem;
}
blockquote > :last-child {
  margin-bottom: 0;
}
blockquote footer {
  display: block;
  font-size: 0.8rem;
  font-style: italic;
  margin-top: -0.8rem;
}
pre,
code,
samp,
kbd {
  --bg-color: #f2f2f2;
  background-color: #fff;
  background-color: var(--bg-color);
  font-size: 0.75rem;
  font-family: monospace;
  overflow: auto;
}
code,
samp,
kbd {
  padding: 0.25em;
}
pre {
  line-height: 1.6;
  padding: 1em;
  margin-bottom: 1.6rem;
}
pre code,
pre samp,
pre kbd {
  background-color: transparent;
  border: none;
  padding: 0;
}
table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 1.6rem;
  background-color: #fff;
  background-color: var(--bg-color);
  color: #000;
  color: var(--text-color);
}
th {
  font-weight: 700;
  text-align: left;
  vertical-align: bottom;
}
td {
  vertical-align: top;
}
th,
td {
  padding: 0.25em 0.5em;
  border-top: 1px solid #ccc;
  border-top: 1px solid var(--border-color);
  border-left: 1px solid #ccc;
  border-left: 1px solid var(--border-color);
}
th:first-child,
td:first-child {
  border-left: 0;
}
th > :last-child,
td > :last-child {
  padding-bottom: 0;
}
input,
label,
select,
button,
textarea,
option,
fieldset,
legend {
  display: block;
  -webkit-appearance: none;
  appearance: none;
}
/* remove yellow from chrome auto-fill background */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  color: #000;
  color: var(--text-color);
  -webkit-text-fill-color: inherit;
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
fieldset {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}
fieldset.no-border,
fieldset:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
legend {
  display: block;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
label {
  font-size: 0.75rem;
  line-height: 1.53333333;
  color: #666;
  color: var(--muted-color);
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  color: #000;
  color: var(--text-color);
  margin-bottom: 1rem;
  display: block;
}
label span {
  display: inline-block;
  margin-bottom: 0.25em;
}
label.required span:after,
label span.required:after {
  content: "(required)";
  margin-left: 0.25em;
  color: #cb2c30;
}
label {
  cursor: pointer;
}
.error-message {
  display: none;
  background-color: #cb2c30;
  color: #fff;
  padding: 0 0.5em 0.25em;
}
input:not([type]),
[type=color],
[type=date],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
textarea,
select {
  border: 1px solid #ccc;
  border: 1px solid var(--border-color);
  background-color: #fff;
  background-color: var(--bg-color);
  color: #000;
  color: var(--text-color);
  padding: 0.25em 0.5em;
  display: block;
  width: 100%;
  transition-duration: 0.3s;
  transition-duration: var(--duration);
  transition-property: border, color, margin-bottom;
  outline: none;
  border-radius: 0;
}
input:not([type]):focus,
[type=color]:focus,
[type=date]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
textarea:focus,
select:focus,
input:not([type]):hover,
[type=color]:hover,
[type=date]:hover,
[type=datetime-local]:hover,
[type=email]:hover,
[type=month]:hover,
[type=number]:hover,
[type=password]:hover,
[type=search]:hover,
[type=tel]:hover,
[type=text]:hover,
[type=time]:hover,
[type=url]:hover,
[type=week]:hover,
textarea:hover,
select:hover {
  border-bottom-color: #00aeeb;
}
input:not([type]):invalid,
[type=color]:invalid,
[type=date]:invalid,
[type=datetime-local]:invalid,
[type=email]:invalid,
[type=month]:invalid,
[type=number]:invalid,
[type=password]:invalid,
[type=search]:invalid,
[type=tel]:invalid,
[type=text]:invalid,
[type=time]:invalid,
[type=url]:invalid,
[type=week]:invalid,
textarea:invalid,
select:invalid {
  border-color: #cb2c30;
  border-bottom-width: 0.25em;
  box-shadow: none;
}
input:not([type]):invalid + .error-message,
[type=color]:invalid + .error-message,
[type=date]:invalid + .error-message,
[type=datetime-local]:invalid + .error-message,
[type=email]:invalid + .error-message,
[type=month]:invalid + .error-message,
[type=number]:invalid + .error-message,
[type=password]:invalid + .error-message,
[type=search]:invalid + .error-message,
[type=tel]:invalid + .error-message,
[type=text]:invalid + .error-message,
[type=time]:invalid + .error-message,
[type=url]:invalid + .error-message,
[type=week]:invalid + .error-message,
textarea:invalid + .error-message,
select:invalid + .error-message {
  display: block;
}
input:not([type])[required] ~ span:after,
[type=color][required] ~ span:after,
[type=date][required] ~ span:after,
[type=datetime-local][required] ~ span:after,
[type=email][required] ~ span:after,
[type=month][required] ~ span:after,
[type=number][required] ~ span:after,
[type=password][required] ~ span:after,
[type=search][required] ~ span:after,
[type=tel][required] ~ span:after,
[type=text][required] ~ span:after,
[type=time][required] ~ span:after,
[type=url][required] ~ span:after,
[type=week][required] ~ span:after,
textarea[required] ~ span:after,
select[required] ~ span:after {
  position: absolute;
  content: "(required)";
  color: #cb2c30;
}
input:not([type]):focus,
[type=color]:focus,
[type=date]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
textarea:focus,
select:focus,
input:not([type]):focus:invalid,
[type=color]:focus:invalid,
[type=date]:focus:invalid,
[type=datetime-local]:focus:invalid,
[type=email]:focus:invalid,
[type=month]:focus:invalid,
[type=number]:focus:invalid,
[type=password]:focus:invalid,
[type=search]:focus:invalid,
[type=tel]:focus:invalid,
[type=text]:focus:invalid,
[type=time]:focus:invalid,
[type=url]:focus:invalid,
[type=week]:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
  border-bottom-width: 0.25em;
  border-bottom-style: solid;
}
[type=checkbox] + span:before,
[type=radio] + span:before {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: top;
  line-height: 1rem;
  content: "-";
  color: transparent;
  background-color: transparent;
  border: 2px solid #ccc;
  border: 2px solid var(--border-color);
  margin-right: 0.5rem;
  transition-duration: 0.3s;
  transition-duration: var(--duration);
  transition-property: border-color, background-color;
  cursor: text;
}
[type=checkbox]:hover + span:before,
[type=radio]:hover + span:before,
[type=checkbox]:focus + span:before,
[type=radio]:focus + span:before {
  border-color: #00aeeb;
}
[type=checkbox]:checked + span,
[type=radio]:checked + span {
  color: #00aeeb, 10%;
}
[type=checkbox]:checked + span:before,
[type=radio]:checked + span:before {
  background-color: #00aeeb;
  border-color: #00aeeb;
}
[type=radio] + span:before {
  border-radius: 2em;
}
[type=checkbox]:checked + span:before {
  background-color: #fff;
  background-color: var(--bg-color);
  content: "✓";
  color: #00aeeb;
  text-align: center;
  font-size: 1.25rem;
}
select {
  padding-right: 2rem;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10" width="10" height="10"><polygon fill="currentColor" points="2,4 3,4 5,6.5 7,4 8,4 5,7.5"/></svg>');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  border-radius: 0;
  padding-bottom: 0;
}
select:invalid {
  height: 2.63333333rem;
}
.btn-form,
[type=button],
[type=submit],
button {
  border-radius: 0;
  border: 1px solid #000;
  border: 1px solid var(--text-color);
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: 0.3s;
  transition-duration: var(--duration);
  padding: 0.25em 0.5em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: #fff;
  background: var(--bg-color);
  color: #000;
  color: var(--text-color);
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 1px;
  margin-bottom: 1px;
}
.btn-form:link,
[type=button]:link,
[type=submit]:link,
button:link,
.btn-form:visited,
[type=button]:visited,
[type=submit]:visited,
button:visited {
  text-decoration: none;
}
.btn-form:focus,
[type=button]:focus,
[type=submit]:focus,
button:focus,
.btn-form:hover,
[type=button]:hover,
[type=submit]:hover,
button:hover,
.btn-form:active,
[type=button]:active,
[type=submit]:active,
button:active {
  color: #fff;
  color: var(--bg-color);
  background-color: #000;
  background-color: var(--text-color);
  border-color: #000;
  border-color: var(--text-color);
  border-bottom-style: solid;
}
.btn-form:link,
[type=button]:link,
[type=submit]:link,
button:link,
.btn-form:visited,
[type=button]:visited,
[type=submit]:visited,
button:visited {
  text-decoration: none;
}
.btn-form:focus,
[type=button]:focus,
[type=submit]:focus,
button:focus,
.btn-form:hover,
[type=button]:hover,
[type=submit]:hover,
button:hover,
.btn-form:active,
[type=button]:active,
[type=submit]:active,
button:active {
  color: #fff;
  color: var(--bg-color);
  background-color: #000;
  background-color: var(--text-color);
  border-color: #000;
  border-color: var(--text-color);
  border-bottom-style: solid;
}
[type=reset] {
  font-weight: 400;
}
.form-error-message,
.form-success-message {
  display: none;
}
.form-fail .form-error-message,
.form-complete .form-success-message {
  display: block;
}
.form-fail .form-error-message ~ *,
.form-complete .form-success-message ~ * {
  display: none;
}
hr {
  height: 0;
  width: 80%;
  margin-top: 1rem;
  margin-bottom: 1.6rem;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px dotted #ccc;
  border-bottom: 1px dotted var(--border-color);
}
::selection {
  background: #b8edff;
  color: #000;
  text-shadow: none;
}
.wrapper,
.wrapper-sm {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 700px) {
  .wrapper,
  .wrapper-sm {
    max-width: 32rem;
  }
}
.wrapper-lg {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 700px) {
  .wrapper-lg {
    max-width: 62rem;
  }
}
.grid,
.grid-3 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}
.grid > *,
.grid-3 > * {
  -webkit-flex-grow: 0;
          flex-grow: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 700px) {
  .grid,
  .grid-3 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .grid > *,
  .grid-3 > * {
    -webkit-flex-basis: calc( 33.33333333% - 1rem );
            flex-basis: calc( 33.33333333% - 1rem );
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 2rem;
  }
  .grid > h2,
  .grid-3 > h2,
  .grid > h3,
  .grid-3 > h3 {
    -webkit-flex-basis: calc(100% - 1rem*2);
            flex-basis: calc(100% - 1rem*2);
    -webkit-flex-grow: 1;
            flex-grow: 1;
  }
}
.grid-4 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}
.grid-4 > * {
  -webkit-flex-grow: 0;
          flex-grow: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 700px) {
  .grid-4 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .grid-4 > * {
    -webkit-flex-basis: calc( 25% - 1rem );
            flex-basis: calc( 25% - 1rem );
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 2rem;
  }
  .grid-4 > h2,
  .grid-4 > h3 {
    -webkit-flex-basis: calc(100% - 1rem*2);
            flex-basis: calc(100% - 1rem*2);
    -webkit-flex-grow: 1;
            flex-grow: 1;
  }
}
.grid-2 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}
.grid-2 > * {
  -webkit-flex-grow: 0;
          flex-grow: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 700px) {
  .grid-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .grid-2 > * {
    -webkit-flex-basis: calc( 50% - 1rem );
            flex-basis: calc( 50% - 1rem );
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 2rem;
  }
  .grid-2 > h2,
  .grid-2 > h3 {
    -webkit-flex-basis: calc(100% - 1rem*2);
            flex-basis: calc(100% - 1rem*2);
    -webkit-flex-grow: 1;
            flex-grow: 1;
  }
}
.resource-header {
  text-align: center;
}
.resource-header .wrapper > :last-child {
  border-bottom: 4px solid #000;
  border-bottom: 4px solid var(--text-color);
}
.resource-header h1 {
  margin-top: 1rem;
}
.resource-header h1 + p {
  font-weight: 700;
  margin-top: -1.5rem;
  font-size: 1.25rem;
}
[disabled],
.disabled {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (max-width: 699px) {
  table.collapse tr,
  table.collapse th,
  table.collapse td {
    display: block;
    border-left: 0;
    border-top: 0;
    line-height: 1.6;
  }
  table.collapse tr {
    border-top: 1px solid #ccc;
    margin-top: -1px;
  }
}
.embed-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  overflow-y: visible;
  padding-bottom: 56.25%;
}
.embed-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.clearfix,
.cf,
.article-header {
  clear: both;
}
.clearfix:after,
.cf:after {
  content: "";
  clear: both;
  display: table;
}
.ucs-icon {
  display: inline-block;
  height: 1rem;
  width: 1rem;
}
.ucs-icon .ucs-icon-use {
  fill: currentColor;
}
.section-reverse {
  --text-color: #fff;
  --bg-color: #000;
  --border-color: #666;
  --muted-color: #ccc;
}
.bracket {
  border: 0;
  margin-left: 1rem;
  z-index: 1;
}
.bracket::before {
  content: " ";
  display: block;
  position: absolute;
  width: 3rem;
  top: -1rem;
  left: -2rem;
  bottom: -1rem;
  border: 0 solid #000;
  border: 0 solid var(--text-color);
  border-left-width: 1rem;
  border-top-width: 0.5rem;
  border-bottom-width: 0.5rem;
  z-index: -1;
}
@media screen and (min-width: 700px) {
  .bracket {
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 1000px) {
  .bracket {
    margin-left: -1rem;
    width: 125%;
  }
}
.btn-sm,
.btn {
  border-radius: 0;
  border: 1px solid #000;
  border: 1px solid var(--text-color);
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: 0.3s;
  transition-duration: var(--duration);
  padding: 0.25em 0.5em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: #fff;
  background: var(--bg-color);
  color: #000;
  color: var(--text-color);
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 1px;
  margin-bottom: 1px;
}
.btn-sm:link,
.btn:link,
.btn-sm:visited,
.btn:visited {
  text-decoration: none;
}
.btn-sm:focus,
.btn:focus,
.btn-sm:hover,
.btn:hover,
.btn-sm:active,
.btn:active {
  color: #fff;
  color: var(--bg-color);
  background-color: #000;
  background-color: var(--text-color);
  border-color: #000;
  border-color: var(--text-color);
  border-bottom-style: solid;
}
.btn-action-sm {
  border-radius: 0;
  border: 2px solid #f0ba00;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: 0.3s;
  transition-duration: var(--duration);
  padding: 0.25em 0.5em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: #ffc600;
  color: #000;
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
}
.btn-action-sm:link,
.btn-action-sm:visited {
  text-decoration: none;
}
.btn-action-sm:focus,
.btn-action-sm:hover,
.btn-action-sm:active {
  color: #000;
  background-color: #fff;
  border-color: #ffc600;
  border-bottom-style: solid;
}
.btn-donate-sm {
  border-radius: 0;
  border: 2px solid #f72d00;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: 0.3s;
  transition-duration: var(--duration);
  padding: 0.25em 0.5em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: #ff522b;
  color: #fff;
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
}
.btn-donate-sm:link,
.btn-donate-sm:visited {
  text-decoration: none;
}
.btn-donate-sm:focus,
.btn-donate-sm:hover,
.btn-donate-sm:active {
  color: #000;
  background-color: #fff;
  border-color: #ff522b;
  border-bottom-style: solid;
}
.btn-action {
  border-radius: 0;
  border: 3px solid #f0ba00;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: 0.3s;
  transition-duration: var(--duration);
  padding: 0.5em 1em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: #ffc600;
  color: #000;
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.btn-action:link,
.btn-action:visited {
  text-decoration: none;
}
.btn-action:focus,
.btn-action:hover,
.btn-action:active {
  color: #000;
  background-color: #fff;
  border-color: #ffc600;
  border-bottom-style: solid;
}
.btn-donate {
  border-radius: 0;
  border: 3px solid #f72d00;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: 0.3s;
  transition-duration: var(--duration);
  padding: 0.5em 1em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: #ff522b;
  color: #fff;
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.btn-donate:link,
.btn-donate:visited {
  text-decoration: none;
}
.btn-donate:focus,
.btn-donate:hover,
.btn-donate:active {
  color: #000;
  background-color: #fff;
  border-color: #ff522b;
  border-bottom-style: solid;
}
.breadcrumb {
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-size: 0.75rem;
  padding-bottom: 0.5rem;
}
.breadcrumb a {
  color: #ff522b;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom-color: transparent;
}
.breadcrumb a:hover {
  border-bottom-color: #00aeeb;
  border-bottom-style: solid;
}
.skip-link {
  position: absolute;
  opacity: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
  display: block;
  top: -1px;
  left: -1px;
}
#site-header > .wrapper-lg {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
}
#site-header {
  --text-color: #fff;
  --bg-color: #000;
  --border-color: #666;
  --muted-color: #ccc;
  background-color: #fff;
  background-color: var(--bg-color);
  color: #000;
  color: var(--text-color);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
#site-header .date {
  color: #666;
  color: var(--muted-color);
}
#site-header > .wrapper-lg {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}
@media screen and (min-width: 700px) {
  #site-header > .wrapper-lg {
    -webkit-align-items: center;
            align-items: center;
  }
}
#site-header svg * {
  fill: #fff;
}
#site-title {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 1;
  border-bottom: 0;
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: bold;
}
#site-title span,
#site-title div {
  background-color: #fff;
  background-color: var(--bg-color);
  z-index: 2;
  padding: 0 0.25em;
  letter-spacing: 0.1em;
}
#site-title span {
  position: relative;
  font-size: 1.2rem;
  display: block;
  padding: 0 1em;
  margin-top: -2rem;
  margin-bottom: 0.25em;
  text-transform: none;
}
#site-title::before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 0;
  background-color: #000;
  background-color: var(--text-color);
}
#site-title .tagline {
  margin: 0.5em 0;
  font-size: 1rem;
  font-family: UCSMercury, "Mercury SSm A", "Mercury SSm B", Georgia, serif;
  font-weight: normal;
  font-style: italic;
  text-transform: none;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 1000px) {
  #site-title {
    font-size: 3rem;
  }
  #site-title span {
    margin-top: -3rem;
  }
}
#header-logo-unstacked {
  display: none;
  width: 16rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 1000px) {
  #header-logo-unstacked {
    display: block;
  }
}
#header-logo-stacked {
  display: block;
  width: 6rem;
  max-width: 6rem;
}
@media screen and (min-width: 1000px) {
  #header-logo-stacked {
    display: none;
  }
}
.header-actions {
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-size: 0.5625rem;
  text-transform: uppercase;
  padding-bottom: 2rem;
}
.header-actions > * {
  margin-top: 0.25em;
  margin-left: 0.5rem;
  display: block;
  -webkit-order: 2;
          order: 2;
  display: none;
}
.header-actions > .btn-donate-sm {
  margin-top: 0;
  display: inline-block;
  -webkit-order: 1;
          order: 1;
}
@media screen and (min-width: 1000px) {
  .header-actions {
    display: block;
    padding-bottom: 0;
  }
  .header-actions > * {
    display: inline-block;
  }
}
.header-actions .menu {
  display: inline-block;
}
.header-actions .search-icon {
  font-size: 0.75rem;
  height: 2em;
  width: 2em;
  padding: 0.25em;
  vertical-align: -0.5rem;
  transition-duration: 0.3s;
  transition-duration: var(--duration);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.header-actions .search-icon:hover {
  border-bottom: none;
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}
.menu--footer {
  padding-bottom: 0.5rem;
}
.menu--footer a {
  font-weight: bold;
  border-bottom-color: transparent;
  font-size: 0.75rem;
  margin-right: 1rem;
}
@media screen and (min-width: 700px) {
  .region-footer-promos-first .wrapper-lg,
  .region-footer-promos-second .wrapper-lg {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
}
.region-footer-promos-first .wrapper-lg .block,
.region-footer-promos-second .wrapper-lg .block {
  -webkit-flex: 0 0 33.33333333%;
          flex: 0 0 33.33333333%;
  padding: 0.5em 0.5em 0.5em 0;
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--border-color);
}
.region-footer-promos-first .wrapper-lg .block h3,
.region-footer-promos-second .wrapper-lg .block h3 {
  margin: 0 0 0.25em;
}
@media screen and (min-width: 700px) {
  .region-footer-promos-first .wrapper-lg .block,
  .region-footer-promos-second .wrapper-lg .block {
    border-bottom: 0;
    border-right: 1px solid #ccc;
    border-right: 1px solid var(--border-color);
  }
  .region-footer-promos-first .wrapper-lg .block:last-child,
  .region-footer-promos-second .wrapper-lg .block:last-child {
    border-right: 0;
  }
}
.region-footer-promos-first .wrapper-lg #block-footerdonationappeal,
.region-footer-promos-second .wrapper-lg #block-footerdonationappeal {
  -webkit-flex-basis: 66.66666667%;
          flex-basis: 66.66666667%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}
.region-footer-promos-first {
  --bg-color: #f2f2f2;
  background-color: #fff;
  background-color: var(--bg-color);
  border-top: 1px solid #ccc;
  border-top: 1px solid var(--border-color);
}
@media screen and (min-width: 700px) {
  .region-footer-promos-first {
    border-bottom: 1px solid #ccc;
    border-bottom: 1px solid var(--border-color);
  }
  .region-footer-promos-first .email-signup {
    padding-right: 0.5em;
  }
}
.region-footer-promos-first p {
  margin-bottom: 0;
}
.region-footer-promos-second .field--name-body {
  position: relative;
  height: 100%;
}
.region-footer-promos-second .field--name-body::after {
  display: none;
}
#block-footeremailandsmssignup .phone-signup {
  margin-bottom: 1rem;
}
#block-footerdonationappeal .field--name-body {
  width: 100%;
  max-width: 32rem;
}
@media screen and (min-width: 700px) {
  #block-footerdonationappeal .field--name-body {
    padding: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
#block-footerstorepromo {
  padding: 0;
}
#block-footerstorepromo a {
  margin-bottom: 1rem;
}
#block-footerblogspromo {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}
#block-footerblogspromo * {
  font-size: 1rem;
}
#block-footerblogspromo .field--name-body {
  text-align: center;
  height: auto;
}
#block-footerblogspromo .field--name-body > :last-child {
  margin-bottom: 0;
}
#block-footerpodcastpromo a {
  text-align: center;
  white-space: pre;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 3rem;
  width: auto;
}
@media screen and (min-width: 700px) {
  #block-footerpodcastpromo a {
    position: absolute;
  }
}
.mobile-only {
  display: inline;
}
@media screen and (min-width: 1000px) {
  .mobile-only {
    display: none;
  }
}
.desktop-only {
  display: none;
}
@media screen and (min-width: 1000px) {
  .desktop-only {
    display: inline;
  }
}
#site-footer .menu {
  font-size: 0.75rem;
  line-height: 1.53333333;
  color: #666;
  color: var(--muted-color);
  color: #000;
  color: var(--text-color);
  font-weight: bold;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 700px) {
  #site-footer .menu {
    display: -webkit-flex;
    display: flex;
  }
  #site-footer .menu li {
    margin-right: 0.5em;
  }
}
.region-footer .wrapper-lg::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  margin-bottom: 0.5rem;
  border-top: 2px solid #000;
  border-top: 2px solid var(--text-color);
}
#block-footercopyright {
  font-size: 0.75rem;
  line-height: 1.53333333;
  color: #666;
  color: var(--muted-color);
  font-size: 0.65rem;
  color: #000;
  color: var(--text-color);
}
#block-footercopyright span {
  display: block;
}
@media screen and (min-width: 700px) {
  #block-footercopyright span {
    display: inline;
  }
  #block-footercopyright span::after {
    content: " | ";
  }
  #block-footercopyright span:last-child::after {
    content: "";
  }
}
.email-signup {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.email-signup strong {
  display: block;
  padding-bottom: 0.5rem;
}
.email-signup .ngp-form.at.merged-fields .ucs-form [type="email"]:focus + span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 0;
  font-size: inherit;
}
.phone-signup {
  padding-bottom: 1rem;
}
.email-signup,
.phone-signup {
  font-size: 0.8rem;
  color: #000;
  color: var(--text-color);
}
.email-signup .sms-instructions,
.phone-signup .sms-instructions {
  font-size: 1rem;
}
#block-footerblogspromo h3::before {
  content: "";
  width: 2rem;
  height: 1px;
  background-color: #ccc;
  background-color: var(--border-color);
}
#block-footerblogspromo h3:first-child::before {
  display: none;
}
#block-footercopyright .field--name-body::after {
  display: none;
}
@media screen and (min-width: 700px) {
  #block-footercopyright .field--name-body {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }
}
.footer-follow {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (min-width: 700px) {
  .footer-follow {
    -webkit-justify-content: space-between;
            justify-content: space-between;
    margin-left: 1rem;
  }
}
.footer-follow a {
  display: block;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  border-bottom: 0;
  margin: 0 0.5rem;
}
.footer-follow a:last-child {
  margin-right: 0;
}
.footer-follow .ucs-icon {
  height: 1.5rem;
  width: 1.5rem;
}
.block-donate-form {
  -webkit-flex: 0 0 32rem;
          flex: 0 0 32rem;
}
.block-donate-form .button-amounts {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 0.8rem;
}
.block-donate-form .button-amount {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 1rem;
  margin: -1px 0 0 -1px;
}
.block-donate-form .button-amount.amount-selected {
  background-color: #000;
  background-color: var(--text-color);
  color: #ff522b;
}
.ngp-form.at {
  overflow: visible;
}
.ngp-form.at *,
.ngp-form.at *::before,
.ngp-form.at *::after,
.ngp-form.at input[type],
.ngp-form.at select,
.ngp-form.at option,
.ngp-form.at textarea {
  color: #000;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  background-color: inherit;
  border-color: #ccc;
  border-color: var(--border-color);
  float: none;
  float: initial;
  margin: 0;
  margin: initial;
  padding: 0;
  padding: initial;
  border-radius: 0;
}
.ngp-form.at .at-inner {
  background-color: transparent;
}
.ngp-form.at .PersonalUrl,
.ngp-form.at .at-legend,
.ngp-form.at .at-title,
.ngp-form.at .at-footer {
  display: none;
}
.ngp-form.at u {
  text-decoration: none;
}
.ngp-form.at .at-submit.btn-at.btn-at-primary {
  border-radius: 0;
  border: 3px solid #f0ba00;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: 0.3s;
  transition-duration: var(--duration);
  padding: 0.5em 1em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: #ffc600;
  color: #000;
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.25em 1rem;
  box-shadow: 0 0 0 transparent;
}
.ngp-form.at .at-submit.btn-at.btn-at-primary:link,
.ngp-form.at .at-submit.btn-at.btn-at-primary:visited {
  text-decoration: none;
}
.ngp-form.at .at-submit.btn-at.btn-at-primary:focus,
.ngp-form.at .at-submit.btn-at.btn-at-primary:hover,
.ngp-form.at .at-submit.btn-at.btn-at-primary:active {
  color: #000;
  background-color: #fff;
  border-color: #ffc600;
  border-bottom-style: solid;
}
.ngp-form.at fieldset,
.ngp-form.at label {
  padding: 0;
  margin: 0;
}
.ngp-form.at label small,
.ngp-form.at label small.error {
  display: none;
}
.ngp-form.at label > span {
  position: absolute;
  top: 0.5em;
  left: 0.5em;
}
.ngp-form.at label > span::after {
  display: none;
}
.ngp-form.at label .ea-field-filled ~ span {
  opacity: 0;
  z-index: -9;
}
.ngp-form.at input[type],
.ngp-form.at select,
.ngp-form.at textarea {
  padding: 0.25em 0.5em;
}
.ngp-form.at.merged-fields fieldset,
.ngp-form.at.merged-fields .at-form-submit {
  display: none !important;
}
.ngp-form.at.merged-fields .ucs-form {
  display: -webkit-flex;
  display: flex;
}
.ngp-form.at.merged-fields .ucs-form label {
  -webkit-flex: 1 1 100%;
          flex: 1 1 100%;
}
.ngp-form.at.merged-fields .ucs-form label span {
  position: absolute;
  color: #000;
  color: var(--text-color);
  margin-left: 0.5em;
  top: 0.5em;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition-duration: 0.3s;
  transition-duration: var(--duration);
  transition-property: -webkit-transform font-size;
  transition-property: transform font-size;
  transition-property: transform font-size, -webkit-transform font-size;
}
.ngp-form.at.merged-fields .ucs-form label span::after {
  display: none;
}
.ngp-form.at.merged-fields .ucs-form [type=email],
.ngp-form.at.merged-fields .ucs-form [type=text] {
  color: #fff;
  -webkit-flex: 1 1 99%;
          flex: 1 1 99%;
  padding: 0.25em 0.5em;
  border-bottom-width: 1px;
}
.ngp-form.at.merged-fields .ucs-form [type=email]:hover,
.ngp-form.at.merged-fields .ucs-form [type=text]:hover,
.ngp-form.at.merged-fields .ucs-form [type=email]:focus,
.ngp-form.at.merged-fields .ucs-form [type=text]:focus {
  box-shadow: none;
}
.ngp-form.at.merged-fields .ucs-form [type=email]:focus,
.ngp-form.at.merged-fields .ucs-form [type=text]:focus {
  color: #000;
  border-bottom-width: 1px;
}
.ngp-form.at.merged-fields .ucs-form [type=email]:focus + span,
.ngp-form.at.merged-fields .ucs-form [type=text]:focus + span {
  -webkit-transform: translateY(-1.4rem);
          transform: translateY(-1.4rem);
  font-size: 80%;
}
.ngp-form.at.merged-fields .ucs-form [type=email]:not(:empty) + span,
.ngp-form.at.merged-fields .ucs-form [type=text]:not(:empty) + span {
  -webkit-transform: translateY(-1.8rem);
          transform: translateY(-1.8rem);
}
.ngp-form.at.merged-fields .ucs-form small.info,
.ngp-form.at.merged-fields .ucs-form small.error {
  position: absolute;
  top: 100%;
}
.ngp-form.at.merged-fields .ucs-form small.info {
  top: 135%;
  color: #fff;
}
.ngp-form.at.merged-fields .ucs-form small.info a,
.ngp-form.at.merged-fields .ucs-form small.info a:hover,
.ngp-form.at.merged-fields .ucs-form small.info a:focus {
  text-decoration: none;
  color: inherit;
}
.ngp-form.at.merged-fields .ucs-form .at-submit {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}
#ucs-cookie-notice {
  --text-color: #fff;
  --bg-color: #000;
  --border-color: #666;
  --muted-color: #ccc;
  background-color: #fff;
  background-color: var(--bg-color);
  color: #000;
  color: var(--text-color);
  position: fixed;
  z-index: 10000;
  width: 100%;
  padding: 0.5rem;
  bottom: 0;
  font-size: 0.75rem;
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
  transition: var(--duration) transform;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
#ucs-cookie-notice .date {
  color: #666;
  color: var(--muted-color);
}
@media screen and (min-width: 700px) {
  #ucs-cookie-notice {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
            justify-content: space-around;
    -webkit-align-items: baseline;
            align-items: baseline;
  }
}
#ucs-cookie-notice p {
  margin: 0;
}
#ucs-cookie-notice.cookie-notice-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#ucs-cookie-notice #ucs-cookie-accept {
  border-radius: 0;
  border: 1px solid #000;
  border: 1px solid var(--text-color);
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  transition-property: color, background-color;
  transition-duration: 0.3s;
  transition-duration: var(--duration);
  padding: 0.25em 0.5em;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: baseline;
  background: #fff;
  background: var(--bg-color);
  color: #000;
  color: var(--text-color);
  text-transform: uppercase;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 1px;
  margin-bottom: 1px;
  font-size: 0.6rem;
  white-space: pre;
  margin-top: 1rem;
}
#ucs-cookie-notice #ucs-cookie-accept:link,
#ucs-cookie-notice #ucs-cookie-accept:visited {
  text-decoration: none;
}
#ucs-cookie-notice #ucs-cookie-accept:focus,
#ucs-cookie-notice #ucs-cookie-accept:hover,
#ucs-cookie-notice #ucs-cookie-accept:active {
  color: #fff;
  color: var(--bg-color);
  background-color: #000;
  background-color: var(--text-color);
  border-color: #000;
  border-color: var(--text-color);
  border-bottom-style: solid;
}
@media screen and (min-width: 700px) {
  #ucs-cookie-notice #ucs-cookie-accept {
    margin-top: 0;
  }
}
.article-content {
  margin-top: 1rem;
}
.article-content > * {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.wp-caption,
[id^=attachment-] {
  max-width: 100%;
}
.author-info {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  border-bottom: 0;
  margin-bottom: 1rem;
}
.author-info img {
  margin-right: 1rem;
  max-width: 6rem;
  max-height: 6rem;
}
.author-info .author-text {
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  padding-top: 0.5rem;
  border-top: 1px solid #ccc;
  border-top: 1px solid var(--border-color);
}
.author-info .author-name {
  font-weight: bold;
}
.author-info:hover .author-text {
  border-top-color: #00aeeb;
}
@media screen and (min-width: 1000px) {
  .single .author-info {
    max-width: 18rem;
    float: right;
    margin: 0 -5rem 0.5rem 0.5rem;
    position: relative;
    z-index: 9;
  }
}
.posts {
  margin-top: 2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: stretch;
          align-items: stretch;
}
.posts > * {
  -webkit-flex-grow: 0;
          flex-grow: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 700px) {
  .posts {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .posts > * {
    -webkit-flex-basis: calc( 33.33333333% - 1rem );
            flex-basis: calc( 33.33333333% - 1rem );
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 2rem;
  }
  .posts > h2,
  .posts > h3 {
    -webkit-flex-basis: calc(100% - 1rem*2);
            flex-basis: calc(100% - 1rem*2);
    -webkit-flex-grow: 1;
            flex-grow: 1;
  }
}
@media screen and (min-width: 700px) {
  .posts {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .posts > * {
    margin: 1rem;
    position: relative;
  }
  .posts > *::after {
    content: "";
    position: absolute;
    height: calc(100% - 1rem);
    width: 1px;
    background-color: #ccc;
    background-color: var(--border-color);
    top: 0;
    right: -1rem;
  }
  .posts > *:nth-child(3n)::after,
  .posts > *:last-child::after {
    display: none;
  }
}
.pagination {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.pagination > * {
  margin-left: 1rem;
  margin-right: 1rem;
}
@media screen and (min-width: 700px) {
  .post-teaser {
    -webkit-flex-basis: calc(100% / 3 - 1rem*2);
            flex-basis: calc(100% / 3 - 1rem*2);
  }
}
.post-teaser .date {
  color: #666;
  font-size: 0.75rem;
  margin-top: 0.5em;
}
.post-teaser h2 {
  font-size: 1rem;
  margin: 0.5rem 0;
}
.post-teaser .author-byline {
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  font-size: 0.65625rem;
  line-height: 1.8;
  margin-top: 1rem;
}
.post-teaser .author-name {
  font-weight: bold;
}
.authors-grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
.authors-grid .grid {
  width: calc(100% + 1rem);
}
.authors-grid .author-info {
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
}
@media screen and (min-width: 700px) {
  .authors-grid .author-info {
    -webkit-flex-basis: calc(100% / 3 - 1rem);
            flex-basis: calc(100% / 3 - 1rem);
  }
}
#site-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100vw);
          transform: translateX(-100vw);
  transition-duration: calc(0.3s * 2);
  transition-duration: calc(var(--duration) * 2);
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  background-color: #fff;
  overflow-y: auto;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  opacity: 0;
}
.admin-bar #site-menu {
  top: 32px;
}
#site-menu:target {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
@media screen and (min-width: 700px) {
  #site-menu .wrapper-lg {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
}
#site-menu .close-button {
  position: absolute;
  font-weight: 700;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
}
#site-menu .close-button span {
  display: none;
}
#site-menu .menu {
  -webkit-flex-basis: calc(50% - 1rem);
          flex-basis: calc(50% - 1rem);
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-left: 0;
}
#site-menu .menu li {
  padding-bottom: 0.5rem;
  margin: 0 0 0.5rem 0;
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--border-color);
  padding-left: 0;
  list-style: none;
}
#site-menu .menu li::before {
  display: none;
}
#site-menu a {
  border-bottom-color: transparent;
}
#site-menu a:hover {
  border-bottom: 1px solid #00aeeb;
}
#site-menu a.close-button {
  border-bottom-width: 0;
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
  transition: var(--duration) transform;
  z-index: 99;
}
#site-menu a.close-button:hover {
  border-bottom-width: 0;
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
.article-header {
  --text-color: #fff;
  --bg-color: #000;
  --border-color: #666;
  --muted-color: #ccc;
  clear: both;
  background-color: #fff;
  background-color: var(--bg-color);
  color: #000;
  color: var(--text-color);
  text-align: center;
}
.article-header .date {
  color: #666;
  color: var(--muted-color);
}
.article-header:after {
  content: "";
  clear: both;
  display: table;
}
.article-header .wrapper > a {
  display: block;
  position: relative;
  border-bottom: 0;
  padding-bottom: 1rem;
}
.article-header .wrapper > a img {
  position: relative;
  z-index: 2;
}
.article-header .wrapper > a::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(-50vw + 50%);
  top: 50%;
  width: 100vw;
  height: 50%;
  background-color: white;
}
@media screen and (min-width: 700px) {
  .article-header .wrapper > a {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
.article-header h1 {
  padding-bottom: 1rem;
}
.article-header .author-title,
.article-header .date {
  margin-top: -2rem;
  padding-bottom: 1rem;
}
.article-header .author-title {
  font-size: 1.25rem;
  color: #000;
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 0;
}
.article-header .bio-links,
.article-header .es-link,
.article-header .en-link {
  margin-bottom: 1rem;
  font-size: 0.75rem;
}
.article-header .bio-links::before,
.article-header .es-link::before,
.article-header .en-link::before {
  content: "En español: ";
  font-weight: bold;
}
@media screen and (min-width: 1000px) {
  .article-header .bio-links,
  .article-header .es-link,
  .article-header .en-link {
    font-size: 1rem;
    float: right;
    width: 8rem;
    text-align: left;
    margin-bottom: 0;
  }
  .article-header .bio-links::before,
  .article-header .es-link::before,
  .article-header .en-link::before {
    display: block;
  }
}
.article-header .bio-links .bio-link {
  margin: 0 0.25em;
}
@media screen and (min-width: 1000px) {
  .article-header .bio-links {
    padding-bottom: 1rem;
  }
  .article-header .bio-links .bio-link {
    display: block;
    margin: 0 0 0.25em;
  }
}
.article-header .bio-links::before {
  content: "Links: ";
}
.article-header .en-link::before {
  content: "In English: ";
}
.term-image {
  padding-bottom: 4rem;
}
.term-description {
  font-size: 1.25rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
body .wp-block-image,
body .wp-block-embed,
body .wp-block-table,
body .wp-block-gallery,
.wp-caption {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  width: 100% !important;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}
@media screen and (min-width: 700px) {
  body .wp-block-image,
  body .wp-block-embed,
  body .wp-block-table,
  body .wp-block-gallery,
  .wp-caption {
    max-width: 62rem;
  }
}
body .wp-block-image > a,
body .wp-block-embed > a,
body .wp-block-table > a,
body .wp-block-gallery > a,
.wp-caption > a {
  display: block;
  width: auto;
  margin: 0 auto;
  border-bottom: 0;
}
body .wp-block-image .wp-caption-text,
body .wp-block-embed .wp-caption-text,
body .wp-block-table .wp-caption-text,
body .wp-block-gallery .wp-caption-text,
.wp-caption .wp-caption-text {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5em;
  font-style: italic;
  font-size: 0.75rem;
}
@media screen and (min-width: 700px) {
  body .wp-block-image .wp-caption-text,
  body .wp-block-embed .wp-caption-text,
  body .wp-block-table .wp-caption-text,
  body .wp-block-gallery .wp-caption-text,
  .wp-caption .wp-caption-text {
    max-width: 32rem;
  }
}
body .wp-block-image > img,
body .wp-block-embed > img,
body .wp-block-table > img,
body .wp-block-gallery > img,
.wp-caption > img {
  margin-left: auto;
  margin-right: auto;
}
body.single.single-post article .wp-block-gallery .wp-block-image {
  width: auto;
  max-width: unset;
}
body .wp-block-table {
  overflow-x: auto;
}
body .wp-block-table table {
  width: 0;
  -webkit-align-self: center;
          align-self: center;
}
body .wp-block-image figcaption,
body .wp-block-embed figcaption {
  max-width: 30rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.75rem;
}
.wp-block-embed .wp-block-embed__wrapper {
  margin: 0 auto;
}
.wp-block-embed-vimeo .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  overflow-y: visible;
  padding-bottom: 56.25%;
}
.wp-block-embed-vimeo .wp-block-embed__wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.wp-block-embed-vimeo .wp-block-embed__wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 700px) {
  .wp-block-image.alignleft,
  .wp-block-image.alignright {
    max-width: 20rem;
    float: right;
    margin-right: calc(50vw - 21rem);
    width: auto !important;
  }
}
body .wp-block-pullquote {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
body .wp-block-pullquote blockquote {
  margin-left: 1rem;
  z-index: 1;
  border: 0;
}
body .wp-block-pullquote blockquote::before {
  content: " ";
  display: block;
  position: absolute;
  width: 3rem;
  top: -1rem;
  left: -2rem;
  bottom: -1rem;
  border: 0 solid #000;
  border: 0 solid var(--text-color);
  border-left-width: 1rem;
  border-top-width: 0.5rem;
  border-bottom-width: 0.5rem;
  z-index: -1;
}
@media screen and (min-width: 700px) {
  body .wp-block-pullquote blockquote {
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 1000px) {
  body .wp-block-pullquote blockquote {
    margin-left: -1rem;
    width: 125%;
  }
}
body .wp-block-pullquote blockquote::before {
  content: " ";
  display: block;
  position: absolute;
  width: 3rem;
  top: -1rem;
  left: -2rem;
  bottom: -1rem;
  border: 0 solid #000;
  border: 0 solid var(--text-color);
  border-left-width: 1rem;
  border-top-width: 0.5rem;
  border-bottom-width: 0.5rem;
  z-index: -1;
}
@media screen and (min-width: 700px) {
  body .wp-block-pullquote blockquote {
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 1000px) {
  body .wp-block-pullquote blockquote {
    margin-left: -1rem;
    width: 125%;
  }
}
body .wp-block-pullquote blockquote p {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.002em;
}
body .wp-block-pullquote blockquote cite {
  font-size: 80%;
}
.post-thumbnail {
  position: relative;
  display: block;
  border-bottom: 0;
}
.post-thumbnail .photo-credit {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 0.5rem;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0 0.5em;
}
.article-header .wrapper > .post-thumbnail .photo-credit {
  margin-bottom: 1rem;
  z-index: 2;
}
.search-form {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
          align-items: flex-end;
}
@media screen and (min-width: 700px) {
  .search-form {
    max-width: 32rem;
  }
}
.search-form label {
  font-size: 1rem;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
}
.search-form label input:focus {
  border-bottom-width: 1px;
  border-color: #00aeeb;
}
.search-form button {
  position: relative;
  height: 2rem;
  width: 2rem;
  margin-bottom: calc(1rem + 1px);
}
.search-form button:hover svg {
  fill: #fff;
}
.search-form button svg {
  height: 100%;
  width: 100%;
}
.taxonomy,
.bio,
.ucs-shares {
  margin-bottom: 4rem;
}
.guest-bio {
  font-style: italic;
}
.taxonomy {
  font-size: 0.75rem;
}
.taxonomy p {
  margin-bottom: 0.5em;
}
.bio {
  margin-top: 2rem;
}
.bio .bio-header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: baseline;
          align-items: baseline;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid var(--border-color);
  border-top: 2px solid #000;
  border-top: 2px solid var(--text-color);
}
.bio .bio-header p {
  font-weight: bold;
  margin-bottom: 0;
}
.bio .bio-content {
  font-size: 0.75rem;
  color: #666;
  color: var(--muted-color);
}
.bio .bio-content p {
  margin-bottom: 0.25em;
}
.ucs-shares {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-align-items: center;
          align-items: center;
  border-top: 2px solid #000;
  border-top: 2px solid var(--text-color);
  padding-top: 0.5rem;
  margin-top: 2rem;
}
.ucs-shares h2 {
  display: block;
  font-size: 1.25rem;
  margin: 0 1rem 0 0;
}
.ucs-shares svg {
  height: 2rem;
  width: 2rem;
  display: block;
}
.ucs-shares a {
  display: block;
  margin: 0 0.5em;
  border-bottom: 2px solid transparent;
}
.ucs-shares a span {
  visibility: hidden;
  position: absolute;
  z-index: -9999;
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
}
.ucs-shares a::hover {
  border-bottom-color: #00aeeb;
}
.series-block {
  max-width: 32rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.series-block .series {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}
.series-block .series > * {
  max-width: calc(50% - 1rem);
}
.series-block .series img {
  -webkit-order: 2;
          order: 2;
}
.series-block .series-name {
  font-weight: bold;
  font-size: 1.25rem;
  padding-bottom: 0.5em;
}
.series-block .series-name small {
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  display: block;
  font-weight: normal;
  font-size: 0.6rem;
  text-transform: uppercase;
}
.toggle {
  position: relative;
  max-width: 100%;
  --toggle-button-bg: #ffe900;
  --toggle-button-fg: #bbdc00;
}
.toggle .toggle-last {
  position: absolute;
  transition: 0.3s opacity ease-in-out;
  top: 0;
}
.toggle-off .toggle-last {
  opacity: 0;
}
.toggle-controls {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  font-size: 2em;
}
.toggle-button {
  box-sizing: border-box;
  font-size: 1.5em;
  display: inline-block;
  height: 1.4em;
  width: 2.6em;
  position: relative;
  overflow: hidden;
  border: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  cursor: pointer;
  background-color: #ffe900;
  border: 0.1em solid #ffe900;
  background-color: var(--toggle-button-bg);
  border: 0.1em solid var(--toggle-button-bg);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  border-radius: 1.4em;
}
.toggle-button:after {
  box-sizing: border-box;
  height: 1.2em;
  width: 1.2em;
  content: " ";
  background-color: #bbdc00;
  background-color: var(--toggle-button-fg);
  position: absolute;
  top: 0;
  left: 1.2em;
  transition: 0.3s left ease-in-out;
  border: 1px solid #4ca607;
  border: 1px solid var(--toggle-button-fg);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 1.2em;
}
.toggle-off .toggle-button:after {
  left: 0;
}
.toggle-controls > strong {
  -webkit-flex: 0 1 auto;
          flex: 0 1 auto;
  padding: 0.25em 0.5em;
  text-align: center;
}
.home #site-title {
  font-size: 2rem;
}
.home #site-title span {
  margin-top: -0.5em;
}
@media screen and (min-width: 700px) {
  .home #site-title {
    font-size: 3rem;
  }
  .home #site-title div {
    padding: 0 0.5em;
  }
}
@media screen and (min-width: 1000px) {
  .home #site-title {
    font-size: 4rem;
  }
}
.section-reverse {
  --text-color: #fff;
  --bg-color: #000;
  --border-color: #666;
  --muted-color: #ccc;
  background-color: #fff;
  background-color: var(--bg-color);
  color: #000;
  color: var(--text-color);
}
.section-reverse .date {
  color: #666;
  color: var(--muted-color);
}
.home-featured {
  padding-bottom: 2rem;
}
.home-featured .home-first-featured {
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #000;
  border-bottom: 2px solid var(--text-color);
}
.home-featured .home-first-featured h2 {
  font-size: 1.6rem;
}
.home-featured .home-first-featured .date {
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
}
@media screen and (min-width: 700px) {
  .home-featured .home-first-featured .post-teaser-content {
    padding-top: 1rem;
    position: relative;
  }
  .home-featured .home-first-featured .post-teaser-content::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 1rem;
    background-color: #ccc;
    background-color: var(--border-color);
    width: calc(100% - 1rem);
    height: 1px;
  }
}
.home-featured .home-second-featured .date {
  font-size: 0.75rem;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
}
.home-featured .home-second-featured article:first-child {
  padding-bottom: 2rem;
}
.home-featured .home-top-reads,
.home-featured .home-topics {
  display: none;
}
.home-featured .home-top-reads h2,
.home-featured .home-topics h2 {
  margin-top: 0;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.home-featured .home-top-reads ol li,
.home-featured .home-topics ol li {
  margin-bottom: 1rem;
}
.home-featured .home-top-reads ol a,
.home-featured .home-topics ol a {
  border-bottom-color: transparent;
}
.home-featured .home-top-reads ol a:hover,
.home-featured .home-topics ol a:hover {
  border-bottom-color: #00aeeb;
  border-bottom-style: solid;
}
.home-featured .home-top-reads ul li,
.home-featured .home-topics ul li {
  font-size: 0.75rem;
  margin: 0 0 0.25em 0;
}
.home-featured .home-top-reads ul li::before,
.home-featured .home-topics ul li::before {
  display: none;
}
.home-featured .home-top-reads ul a,
.home-featured .home-topics ul a {
  color: #00aeeb;
  border-bottom-width: 0;
  font-family: UCSGotham, "Gotham SSm A", "Gotham SSm B", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
}
.home-featured .home-top-reads ul a:hover,
.home-featured .home-topics ul a:hover {
  border-bottom-width: 2px;
  border-bottom-style: solid;
}
@media screen and (min-width: 700px) {
  .home-featured .wrapper-lg {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .home-featured .home-top-reads,
  .home-featured .home-topics {
    position: relative;
    -webkit-flex-basis: calc(50% - 1rem);
            flex-basis: calc(50% - 1rem);
  }
  .home-featured .home-top-reads::before,
  .home-featured .home-topics::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #ccc;
    background-color: var(--border-color);
    width: 1px;
    height: 100%;
    top: 0;
    left: -1rem;
  }
  .home-featured article {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }
  .home-featured article > a {
    display: block;
    max-width: 50%;
    -webkit-flex-basis: 100%;
            flex-basis: 100%;
    border-bottom: 0;
  }
  .home-featured article .post-teaser-content {
    -webkit-flex-basis: 100%;
            flex-basis: 100%;
    padding-left: 1rem;
  }
  .home-featured article .post-teaser-content .date {
    margin-top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .home-featured .home-second-featured {
    -webkit-flex-basis: calc(50% - 1rem);
            flex-basis: calc(50% - 1rem);
  }
  .home-featured .home-top-reads,
  .home-featured .home-topics {
    display: block;
    -webkit-flex-basis: calc(25% - 1rem);
            flex-basis: calc(25% - 1rem);
  }
}
.home .authors-grid {
  position: relative;
}
.home .authors-grid::after {
  content: "";
  position: absolute;
  height: 2px;
  width: calc(100% - 1rem*2);
  background-color: #000;
  background-color: var(--text-color);
  left: 1rem;
  bottom: 0;
}
/*
	Copyright (C) 2011-2014 Hoefler & Co.
	This software is the property of Hoefler & Co. (H&Co).
	Your right to access and use this software is subject to the
	applicable License Agreement, or Terms of Service, that exists
	between you and H&Co. If no such agreement exists, you may not
	access or use this software for any purpose.
	This software may only be hosted at the locations specified in
	the applicable License Agreement or Terms of Service, and only
	for the purposes expressly set forth therein. You may not copy,
	modify, convert, create derivative works from or distribute this
	software in any way, or make it accessible to any third party,
	without first obtaining the written permission of H&Co.
	For more information, please visit us at http://typography.com.
	151910-73575-20140923
*/
@font-face {
  font-family: 'UCSMercury';
  src: url('/wp-content/themes/ucs-wp/assets/mercury/woff2/MercurySSm-Book-Pro_Web.woff2') format('woff2'), url('/wp-content/themes/ucs-wp/assets/mercury/woff/MercurySSm-Book-Pro_Web.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'UCSMercury';
  src: url('/wp-content/themes/ucs-wp/assets/mercury/woff2/MercurySSm-BookItalic-Pro_Web.woff2') format('woff2'), url('/wp-content/themes/ucs-wp/assets/mercury/woff/MercurySSm-BookItalic-Pro_Web.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'UCSMercury';
  src: url('/wp-content/themes/ucs-wp/assets/mercury/woff2/MercurySSm-Bold-Pro_Web.woff2') format('woff2'), url('/wp-content/themes/ucs-wp/assets/mercury/woff/MercurySSm-Bold-Pro_Web.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'UCSMercury';
  src: url('/wp-content/themes/ucs-wp/assets/mercury/woff2/MercurySSm-BoldItalic-Pro_Web.woff2') format('woff2'), url('/wp-content/themes/ucs-wp/assets/mercury/woff/MercurySSm-BoldItalic-Pro_Web.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'UCSGotham';
  src: url('/wp-content/themes/ucs-wp/assets/gotham/woff2/GothamSSm-Book_Web.woff2') format('woff2'), url('/wp-content/themes/ucs-wp/assets/gotham/woff/GothamSSm-Book_Web.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'UCSGotham';
  src: url('/wp-content/themes/ucs-wp/assets/gotham/woff2/GothamSSm-BookItalic_Web.woff2') format('woff2'), url('/wp-content/themes/ucs-wp/assets/gotham/woff/GothamSSm-BookItalic_Web.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'UCSGotham';
  src: url('/wp-content/themes/ucs-wp/assets/gotham/woff2/GothamSSm-Bold_Web.woff2') format('woff2'), url('/wp-content/themes/ucs-wp/assets/gotham/woff/GothamSSm-Bold_Web.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'UCSGotham';
  src: url('/wp-content/themes/ucs-wp/assets/gotham/woff2/GothamSSm-BoldItalic_Web.woff2') format('woff2'), url('/wp-content/themes/ucs-wp/assets/gotham/woff/GothamSSm-BoldItalic_Web.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}
body {
  overflow-x: hidden;
}
.visually-hidden {
  position: absolute;
  opacity: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
  display: block;
  top: -1px;
  left: -1px;
}
