@charset "UTF-8";
html, body {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: #333;
  min-width: 380px;
}

img {
  max-width: 100%;
}

hr {
  height: 1px;
  border: 0;
  background-color: #ddd;
  margin-bottom: 50px;
}

h1 {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 3em;
}

h2 {
  font-size: 2.3em;
  margin: 0 0 30px 0;
  text-align: center;
}

h3 {
  font-size: 1.8em;
  margin: 20px 0 20px 0;
}

p {
  font-size: 1.3em;
  line-height: 1.4em;
  color: #888;
}

nav {
  padding: 30px 0;
}
nav svg {
  fill: #23635f;
  height: 35px;
}
nav .brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
nav .site-logo {
  height: 42px;
  width: 42px;
  min-width: 42px;
  display: block;
  object-fit: contain;
}
nav .site-logo-text {
  display: none;
  color: #333;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  nav .site-logo-text {
    display: inline;
  }
}

section {
  padding: 60px 0;
}

form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}
form input[type=text] {
  flex-grow: 1;
  flex-shrink: 1;
  width: 100%;
  border: 1px solid #ddd;
}
form input[type=text], form input[type=text]:focus {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
form input[type=text]:focus {
  box-shadow: 0 0 5px 0 #23635f;
  outline: none;
}
form input[type=submit] {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
form input[type=submit]:hover {
  background: #1c504d;
}

.button a, input[type=submit], input[type=text] {
  border: 0;
  padding: 15px 40px;
  box-sizing: content-box;
  font-size: 1em;
  font-weight: 100;
}

.button a, input[type=submit] {
  background: #23635f;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

.button a {
  display: inline-block;
  text-decoration: none;
  border-radius: 30px;
  transition: 200ms ease-in background;
}
.button a:hover {
  background: #1c504d;
}

.container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 50px 30px;
  box-sizing: border-box;
}

header {
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  header .container {
    display: flex;
  }
  header .column {
    flex: 1;
  }
  header .column img {
    max-width: none;
    width: 120%;
  }
  header .column:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 50px;
  }
}
header img {
  margin: 100px auto 0 auto;
  display: block;
  max-width: 100%;
}

header .container, nav .container {
  padding-top: 0;
  padding-bottom: 0;
}

.donate {
  text-align: center;
}

nav .button {
  position: absolute;
  right: 35px;
  top: 4px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.top-nav a {
  text-decoration: none;
  color: #5f5f5f;
  font-size: 0.95rem;
  font-weight: 600;
}

.top-nav a:hover {
  color: #111;
}

.thirds {
  margin: 90px -15px 0 -15px;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .thirds {
    display: flex;
  }
}
.thirds li {
  box-sizing: border-box;
  margin: 70px 0px;
  width: 100%;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  padding: 0 30px 25px 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .thirds li {
    width: 33%;
    margin: 0 15px;
  }
}
.thirds li .image {
  display: inline-block;
  line-height: 0;
  background: white;
  margin-top: -40px;
  padding: 10px;
  box-shadow: 2px 7px 39px 9px #f7f7f7;
  border-radius: 50px;
}
.thirds li p {
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .thirds li .problem-copy {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
}
@media (min-width: 768px) {
  .thirds li .problem-title {
    min-height: 4.2em;
    margin-bottom: 14px;
  }
}
@media (min-width: 768px) {
  .thirds li .problem-summary {
    min-height: 9.2em;
    margin-bottom: 14px;
  }
}
@media (min-width: 768px) {
  .thirds li .problem-link {
    margin-top: auto;
  }
}
.thirds li svg {
  fill: #23635f;
  padding: 5px;
}

blockquote {
  padding: 0;
  margin: 120px 0 70px 0;
  position: relative;
}
blockquote .quote {
  padding: 30px 50px;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 3px;
  position: relative;
  font-size: 1.3em;
  text-align: center;
  box-shadow: 0 20px 100px 0 rgba(0, 0, 0, 0.1);
  color: #000;
  font-style: italic;
}
blockquote .quote::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 90px;
  font-weight: bold;
  color: #23635f;
  position: absolute;
  left: 0;
  top: -6px;
  text-align: center;
  width: 100%;
}
blockquote .quote::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -30px;
  border-width: 30px 30px 0;
  border-style: solid;
  border-color: #ffffff transparent;
  display: block;
  width: 0;
}
blockquote .meta {
  text-align: center;
  vertical-align: middle;
  position: relative;
  z-index: 999;
  top: 35px;
}
blockquote .meta .author {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 10px;
}
blockquote .image {
  display: inline-block;
  width: 70px;
  margin: 0 0 0 15px;
  vertical-align: middle;
}
blockquote .image img {
  max-width: 100%;
  border-radius: 200px;
}

.newsletter {
  padding: 100px 0;
}

footer {
  background: #000;
  padding: 40px 0;
}
footer, footer a {
  color: #8e8e8e;
}
footer a:hover {
  color: #fff;
}
footer a:hover svg {
  fill: #fff;
}
footer p {
  margin: 0;
  padding: 0;
}
footer p, footer address {
  font-size: 0.9em;
}
footer svg {
  fill: #8e8e8e;
  height: 20px;
  position: relative;
  top: 4px;
}
footer a {
  text-decoration: none;
}
footer a svg:hover {
  fill: #fff;
}
@media (min-width: 768px) {
  footer .container {
    display: flex;
    align-items: center;
  }
}
footer .container div {
  margin: 20px 0;
  box-sizing: content-box;
  padding: 0 25px;
}
@media (min-width: 768px) {
  footer .container div {
    width: 33%;
    margin: 0;
  }
}

.copyright {
  padding: 5px 0;
  margin: 0;
  background: #000;
  text-align: center;
  font-size: 0.8em;
}
.copyright a {
  color: #8e8e8e;
  text-decoration: none;
}
.copyright a:hover {
  color: #fff;
}

.posts {
  margin: 0 -20px;
}
@media (min-width: 768px) {
  .posts {
    display: flex;
  }
}
.posts .post {
  flex: 1;
  display: flex;
  border: 1px solid #eee;
  margin: 0 0 50px 0;
  background: #fff;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .posts .post {
    margin: 0 20px;
  }
}
.posts .post .image {
  height: 200px;
  background-position: center;
  background-size: cover;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.posts .post .post-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.posts .post .date {
  color: #ccc;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0 0 8px 0;
}
.posts .post .post-title {
  font-size: 1.35rem;
  margin: 0 0 10px 0;
}
@media (min-width: 768px) {
  .posts .post .post-title {
    min-height: 3.3em;
  }
}
.posts .post .post-summary {
  font-size: 1.1rem;
  margin: 0 0 12px 0;
}
@media (min-width: 768px) {
  .posts .post .post-summary {
    min-height: 8.2em;
  }
}
.posts .post .post-links {
  margin-top: auto;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.readings-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px auto;
}

.topic-summary {
  max-width: 820px;
  margin: 0 0 30px 0;
}

.topic-title {
  text-align: center;
  font-size: 2.3em;
  margin: 0 0 24px 0;
}

.topic-content h2 {
  text-align: left;
  font-size: 1.55em;
  margin: 34px 0 16px 0;
}

.topic-content blockquote {
  margin: 16px 0 26px 0;
  padding: 14px 18px;
  border-left: 3px solid #d7e0e0;
  background: #f8fafb;
}
.topic-content blockquote p {
  margin: 0;
}

.topic-content ol.bibliography {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.topic-content ol.bibliography li {
  font-size: 1.15rem;
  line-height: 1.5;
  color: #777;
  margin: 0 0 14px 0;
}

.read-more-outside ol.bibliography {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.read-more-outside ol.bibliography li {
  font-size: 1.15rem;
  line-height: 1.5;
  color: #777;
  margin: 0 0 14px 0;
}

.read-more-initiative ol.bibliography {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.theme-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 7px 12px;
  margin: 0 0 14px 0;
  border-radius: 0;
  border: 1px solid rgba(35, 99, 95, 0.45);
  background: transparent;
  color: #133634;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.theme-tag-icon {
  display: inline-flex;
  line-height: 0;
  flex: 0 0 auto;
}
.theme-tag-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.theme-tag-label {
  white-space: normal;
  overflow-wrap: anywhere;
}

.post-title h3 {
  margin: 0;
}
.post-title .date {
  padding: 0;
  margin: 0;
  font-size: 0.8em;
  color: #888;
}

.editor-link {
  display: none;
  margin-top: 0;
}
.editor-link .btn {
  border: 0;
  border-radius: 2px;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  font-size: 2rem;
  text-decoration: none;
  padding: 10px 15px;
  margin: 0;
  font-size: 18px;
  cursor: pointer;
  background-color: #f7e064;
  color: #333;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.editor-link .btn:hover {
  background-color: #f4d525;
  color: #333;
}

.cms-editor-active .editor-link {
  display: block;
}

@media (min-width: 768px) {
  .columns {
    display: flex;
    margin: 0 -30px;
    align-items: center;
  }
  .columns > div {
    flex: 1;
    padding: 0 30px;
  }
}
.columns h2 {
  text-align: left;
}

.image-crop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 50%;
  aspect-ratio: 5/5;
  border-radius: 3px;
}

.team-grid {
  display: grid;
  gap: 22px;
  margin: 20px 0 36px 0;
}

@media (min-width: 768px) {
  .team-grid--core {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .team-grid--collab {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.team-card {
  border: 1px solid #dfdfdf;
  background: #fff;
  border-radius: 3px;
  padding: 18px;
}
.team-card h3 {
  margin: 0 0 8px 0;
}
.team-card p {
  font-size: 1.05rem;
  margin: 0 0 12px 0;
}
.team-card p:last-child {
  margin-bottom: 0;
}

.team-avatar {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 4px;
  object-fit: cover;
  margin-bottom: 14px;
}

.team-role {
  font-weight: 700;
  color: #4a4a4a;
}

.team-affiliation {
  color: #6d6d6d;
  font-size: 0.95rem;
}

.team-card--core {
  padding: 20px;
  text-align: center;
}
.team-card--core h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.team-card--collab {
  background: #fafcfc;
  border-color: #e5ecec;
  padding: 16px;
}
.team-card--collab h3 {
  font-size: 1.2rem;
}
.team-card--collab p {
  font-size: 1rem;
}

.darker {
  background: #f8fafb;
  padding: 60px 0;
}

.collaboration-invite {
  padding-top: 22px;
}

.initiative-reference {
  border: 1px solid #dfdfdf;
  background: #fff;
  border-radius: 3px;
  padding: 18px 20px;
  margin: 0 0 18px 0;
}
.initiative-reference p {
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0 0 8px 0;
  color: #777;
}

.initiative-reference-title {
  font-size: 1.35rem;
  line-height: 1.35;
  color: #333;
  margin: 0 0 10px 0;
}

.initiative-reference-link {
  margin-top: 12px;
}

ol.bibliography {
  margin: 0;
  padding-left: 1.4em;
}

ol.bibliography li {
  margin: 0 0 12px 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: #666;
}

/*# sourceMappingURL=screen.css.map */