@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap");
@font-face {
  font-family: "Recoleta";
  src: url("./../fonts/Recoleta-Alt-Light.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Recoleta";
  src: url("./../fonts/Recoleta-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Recoleta";
  src: url("./../fonts/Recoleta-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Inter";
  src: url("./../fonts/Inter-Bold.otf") format("opentype");
  src: url("./../fonts/Inter-Bold.ttf") format("true-type-font");
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
}
.flickity-enabled {
  position: relative;
}
.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

@media only screen and (max-width: 800px) {
  .flickity-tablet-only {
    overflow: auto;
    margin-left: -30px;
    padding-left: 30px;
    margin-right: -30px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .flickity-tablet-only::-webkit-scrollbar {
    display: none;
  }
}
.flickity-tablet-only .basic-slider:after,
.flickity-tablet-only .cards:after {
  content: "flickity";
  display: none;
}
@media only screen and (max-width: 800px) {
  .flickity-tablet-only .basic-slider,
  .flickity-tablet-only .cards {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: inline-flex !important;
    width: auto;
  }
  .flickity-tablet-only .basic-slider:after,
  .flickity-tablet-only .cards:after {
    content: "";
  }
  .flickity-tablet-only .basic-slider .card:last-child,
  .flickity-tablet-only .cards .card:last-child {
    margin-right: 50px !important;
  }
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body * {
  box-sizing: border-box;
}
body img {
  width: 100%;
  height: auto;
  display: block;
}

.post,
.page {
  margin: 0 0 0;
}

.page-inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.central-column {
  width: 80%;
  max-width: 800px;
  margin: auto;
}
@media only screen and (max-width: 800px) {
  .central-column {
    width: 80%;
  }
}

.inset-inner {
  width: 80%;
  max-width: 1200px;
  margin: auto;
}

.category-dot {
  background-color: #7e8dad;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

.more-info {
  padding: 12px 16px 12px 22px;
  width: 260px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  display: flex;
  border-radius: 30px 0px 0px 30px;
  background-color: #2a2f3a;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
.more-info #icon-long-arrow-right {
  transition: all 0.2s ease-out;
}
.more-info:hover {
  color: #7e8dad;
}
.more-info:hover #icon-long-arrow-right {
  stroke: #7e8dad;
}

.article-access {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.article-access .flag {
  padding: 2px 10px;
  text-align: center;
  color: #aab8d7;
  border: 1px solid #aab8d7 !important;
}

.discussion {
  margin: 0 300px;
  border-bottom: 1px solid black;
  padding: 80px 0;
}
@media only screen and (max-width: 800px) {
  .discussion {
    margin: 0 0px;
  }
}
.discussion .title {
  width: 33%;
  margin: 0 auto;
  text-align: center;
}
.discussion .title a.text {
  color: black;
  border-bottom: 2px solid black;
  cursor: pointer;
}

blockquote.wp-block-quote {
  font-size: 40px;
  font-weight: 100;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  margin: 20px 0;
  border-left: 2px solid #aab8d7;
  padding: 0 50px;
}
blockquote.wp-block-quote p {
  color: #aab8d7;
}

figure {
  padding: 50px 0;
}

.wp-block-embed {
  display: flex;
  justify-content: center;
  margin: 40px auto;
  padding: 0;
}

.benefits {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 100px;
  justify-content: space-between;
}
@media only screen and (max-width: 800px) {
  .benefits {
    flex-direction: column;
  }
}
.benefits .benefits-wrap {
  display: flex;
  flex-direction: column;
  width: 30%;
}
@media only screen and (max-width: 800px) {
  .benefits .benefits-wrap {
    width: 100%;
    margin-bottom: 40px;
  }
}
.benefits .benefits-wrap .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.post-title {
  margin: 60px auto;
  max-width: 800px;
  width: 80%;
}
@media only screen and (max-width: 800px) {
  .post-title {
    width: 100%;
  }
}
.post-title h2 {
  margin: 0;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  text-align: center;
  font-size: 58px;
  font-weight: 100;
  line-height: 1.15em;
}
@media only screen and (max-width: 800px) {
  .post-title h2 {
    font-size: 36px;
  }
}

.subtitle {
  margin: 100px 0;
}
.subtitle h4 {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}
.subtitle h4 span {
  text-decoration: none;
  font-weight: 500;
  border-bottom: none;
}
.subtitle .intro-text {
  text-align: left;
  font-size: 20px;
  font-weight: 400;
}
.subtitle .intro-text span {
  text-decoration: none;
  font-weight: 500;
  border-bottom: none;
}

.page-title {
  text-align: center;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  margin-bottom: 100px;
  font-size: 50px;
  line-height: 1.15em;
}
@media only screen and (max-width: 800px) {
  .page-title {
    font-size: 36px;
  }
}

h1.page-title {
  font-weight: normal;
}

.archive-description {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 100px;
}
.archive-description a {
  color: inherit;
}

.page-header .central-column {
  margin-top: 40px;
}

.more-episodes {
  width: 20%;
  margin: 0 auto;
  justify-content: space-between;
  display: flex;
}
@media only screen and (max-width: 800px) {
  .more-episodes {
    width: 80%;
  }
}
.sign-up {
  padding: 80px 0 80px;
}
.sign-up .title {
  text-align: center;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 30px;
}
.sign-up aside h2 {
  display: none;
}
.sign-up .formkit-form {
  margin: auto;
}
.sign-up .formkit-form .seva-fields {
  flex-direction: column;
  align-items: center;
}
.sign-up .formkit-form .formkit-field {
  width: 100%;
}
.sign-up .formkit-form .formkit-input {
  color: #8b92a3;
  margin: 0 auto;
  text-align: center;
  min-width: 290px;
  width: 80% !important;
  max-width: 460px;
  border: 0 solid transparent;
  border-radius: 0;
  border-bottom: 1px solid #aab8d7;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
}
.sign-up .formkit-form button.formkit-submit {
  padding: 12px 16px 12px 22px;
  width: 260px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  display: flex;
  border-radius: 30px 0px 0px 30px;
  background-color: #2a2f3a;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease-out;
  background-color: #8b92a3;
}
.sign-up .formkit-form button.formkit-submit #icon-long-arrow-right {
  transition: all 0.2s ease-out;
}
.sign-up .formkit-form button.formkit-submit:hover {
  color: #7e8dad;
}
.sign-up .formkit-form button.formkit-submit:hover #icon-long-arrow-right {
  stroke: #7e8dad;
}
.sign-up .formkit-form button.formkit-submit span {
  margin: 0 auto;
}

.search-results-headline {
  margin-bottom: 100px;
}
.search-results-headline .page-title {
  margin-bottom: 50px;
  text-transform: capitalize;
}
.search-results-headline .label {
  text-align: center;
  margin-top: 20px;
}
.search-results-headline .label + .page-title {
  margin-top: 10px;
}
.search-results-headline .search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 425px) {
  .search-results-headline .search-form {
    flex-direction: column;
    align-items: initial;
  }
}
.search-results-headline .search-form input[type=search] {
  padding: 4px;
  min-width: 260px;
  border: none;
  border-bottom: 1px solid #2a2f3a;
  border-radius: 0;
  outline: 0;
  font-family: inherit;
  -webkit-appearance: none;
  background-color: transparent;
}
@media only screen and (max-width: 500px) {
  .search-results-headline .search-form input[type=search] {
    min-width: max-content;
  }
}
.search-results-headline .search-form button[type=submit] {
  background-color: #2a2f3a;
  font-family: inherit;
  color: white;
  padding: 9px 25px 9px 22px;
  border-radius: 0px 30px 30px 0px;
  cursor: pointer;
}
.search-results-headline .categories-list {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto 0 auto;
}
.search-results-headline .categories-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.search-results-headline .categories-list ul li {
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  display: inline-block;
}
.search-results-headline .categories-list ul li:not(:nth-child(-n+20)) {
  display: none;
}
.search-results-headline .categories-list ul li:last-child {
  display: inline-block;
}
.search-results-headline .categories-list ul li a {
  text-decoration: none;
  color: #aab8d7;
  border: 1px solid #aab8d7;
  padding: 3px 12px;
  transition: all 0.2s ease;
}
.search-results-headline .categories-list ul li a:hover {
  background-color: #2a2f3a;
  color: white;
  border: 1px solid #2a2f3a;
}
.search-results-headline .categories-list ul li.load-more-categories button {
  display: inline-block;
  background-color: #2a2f3a;
  border: 1px solid #2a2f3a;
  font-family: inherit;
  color: white;
  padding: 3px 12px;
  cursor: pointer;
  border-radius: 0;
}
.search-results-headline .categories-list.show-all li {
  display: inline-block !important;
}

.language-filter {
  margin-bottom: 2rem;
}
.language-filter select {
  border: none;
  outline: none;
  font-family: inherit;
  cursor: pointer;
  font-weight: 700;
  padding-right: 0.5rem;
}
.language-filter button[type=submit] {
  display: none;
}

#main > .articles {
  margin-top: 40px;
}

/*--------------
RESETS
--------------*/
.button-reset {
  background: inherit;
  border: inherit;
  border-radius: inherit;
  font-size: inherit;
  line-height: inherit;
  padding: inherit;
  color: inherit;
  cursor: pointer;
}
.button-reset:focus {
  outline: none;
}

.preview-column {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 120px;
}

a.post-preview {
  --gutter: 30px;
  display: flex;
  flex-direction: column;
  width: calc(33.3333333333% - var(--gutter) * 2 / 3);
  text-decoration: none;
  color: #333333;
  margin-bottom: 40px;
}
@media only screen and (max-width: 800px) {
  a.post-preview {
    width: 100%;
  }
}
a.post-preview .thumbnail-image {
  margin-bottom: 20px;
  overflow: hidden;
}
a.post-preview .thumbnail-image .image {
  height: 0;
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  overflow: hidden;
  background: #4a4a4a;
  transition: all 0.3s ease-out;
}
a.post-preview .thumbnail-image .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a.post-preview .text-wrap {
  margin: 0 5%;
}
a.post-preview .text-wrap .category-wrap {
  display: flex;
  flex-direction: row;
  margin: 0px 0 14px;
  align-items: center;
}
a.post-preview .text-wrap .category-wrap .category {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.8;
}
a.post-preview .text-wrap .wp-title {
  text-decoration: none;
  color: #1a1a1a;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  font-weight: 100;
  font-size: 28px;
  line-height: 1.2em;
  display: inline-block;
  transition: all 0.3s ease-out;
}
a.post-preview .text-wrap .description {
  transition: all 0.3s ease-out;
  font-size: 1rem;
  padding-top: 0.5rem;
  font-weight: 400;
  color: #4a4a4a;
}
a.post-preview .text-wrap .date {
  font-weight: 100;
  color: #4a4a4a;
  margin-top: 10px;
  font-size: 14px;
}
a.post-preview .text-wrap .excerpt {
  display: none;
}
a.post-preview:hover .thumbnail-image .image {
  transform: scale(1.1);
}
a.post-preview:hover .wp-title {
  color: #4a4a4a;
  transform: translateY(-6px);
}
a.post-preview:hover .description {
  transform: translateY(-6px);
}

.homepage .hero-block {
  position: relative;
  padding: 0;
  margin-bottom: 6rem;
}
.homepage .hero-block .hero-background {
  min-height: 40vh;
  background-size: cover;
  background-color: #2a2f3a;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}
.homepage .hero-block .text-wrap {
  width: 100%;
  flex: 1;
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: multiply;
  background-image: radial-gradient(90% 188%, rgba(128, 146, 195, 0.43) 92%, rgba(195, 180, 187, 0.43) 100%);
  display: flex;
  justify-items: center;
  padding: 140px 0;
}
.homepage .hero-block .text-wrap .tagline {
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 800px) {
  .homepage .hero-block .text-wrap .tagline {
    width: 100%;
  }
}
.homepage .hero-block .text-wrap .tagline h2 {
  margin: 0;
  color: white;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  font-weight: 100;
  font-size: 60px;
  line-height: 1.2em;
  text-align: center;
  letter-spacing: -0.04em;
}
@media only screen and (max-width: 800px) {
  .homepage .hero-block .text-wrap .tagline h2 {
    font-size: 44px;
  }
}
.homepage .hero-block .text-wrap .tagline h2 a {
  color: white;
  line-height: 1em;
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}
.homepage .latest-article-block {
  padding-bottom: 6rem;
}
.homepage .latest-article-block .preview-wrap {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 800px) {
  .homepage .latest-article-block .preview-wrap {
    flex-direction: column;
  }
}
.homepage .latest-article-block .post-preview {
  --gutter: 30px;
  display: flex;
  flex-direction: column;
  width: calc(33.3333333333% - var(--gutter) * 2 / 3);
}
@media only screen and (max-width: 800px) {
  .homepage .latest-article-block .post-preview {
    width: 100%;
  }
}
@media only screen and (min-width: 800px) {
  .homepage .latest-article-block .post-preview:first-child {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .homepage .latest-article-block .post-preview:first-child > div {
    width: calc(50% - var(--gutter) / 2);
  }
  .homepage .latest-article-block .post-preview:first-child .thumbnail-image .image {
    padding-top: 68%;
  }
  .homepage .latest-article-block .post-preview:first-child .text-wrap {
    margin: 0;
  }
  .homepage .latest-article-block .post-preview:first-child .text-wrap .wp-title {
    width: 90%;
    font-size: 46px;
    font-weight: 400;
  }
  .homepage .latest-article-block .post-preview:first-child .text-wrap .excerpt {
    width: 90%;
  }
}
.homepage .latest-episode-block {
  background-image: radial-gradient(ellipse at bottom left, #55999d 6%, #ebf4f5 100%);
  background-position: 50% -50%;
  min-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 6rem;
}
.homepage .latest-episode-block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(90% 164%, #babdf3 91%, rgba(186, 189, 243, 0) 100%);
  mix-blend-mode: multiply;
  opacity: 0.2;
}
.homepage .latest-episode-block .page-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  flex: 1;
}
.homepage .latest-episode-block .podcast-title {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 80px;
  padding-top: 50px;
  opacity: 0.8;
}
.homepage .latest-episode-block .central-column {
  flex: 1;
}
.homepage .latest-episode-block .preview .title-wrap {
  text-decoration: none;
  color: black;
  text-align: center;
  margin-top: 50px;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
}
.homepage .latest-episode-block .preview .title-wrap .description {
  margin-top: 50px;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  font-weight: 100;
  font-size: 40px;
  color: #4a4a4a;
}
@media only screen and (max-width: 800px) {
  .homepage .latest-episode-block .preview .title-wrap .description {
    font-size: 28px;
    line-height: 1.2em;
    color: black;
  }
}
.homepage .latest-episode-block .more-episodes {
  margin: 50px auto 80px;
  color: #4a4a4a;
  text-decoration: none;
}
.homepage .latest-episode-block .more-episodes svg #icon-long-arrow-right {
  stroke: #4a4a4a;
}
.homepage .latest-episode-block .more-episodes:hover {
  color: #1a1a1a;
}
.homepage .latest-episode-block .more-episodes:hover svg #icon-long-arrow-right {
  stroke: #1a1a1a;
}
.homepage .latest-reports-block {
  padding-bottom: 6rem;
}
.homepage .latest-reports-block .reports-title {
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}
.homepage .latest-reports-block .reports-title h2 {
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 800px) {
  .homepage .latest-reports-block .reports-title h2 {
    font-size: 2rem;
  }
}
.homepage .latest-reports-block .preview-wrap {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 800px) {
  .homepage .latest-reports-block .preview-wrap {
    flex-direction: column;
  }
}
.homepage .latest-reports-block .post-preview {
  --gutter: 30px;
  display: flex;
  flex-direction: column;
  width: calc(33.3333333333% - var(--gutter) * 2 / 3);
}
@media only screen and (max-width: 800px) {
  .homepage .latest-reports-block .post-preview {
    width: 100%;
  }
}
.homepage .latest-community-discussions-block {
  padding-bottom: 6rem;
}
.homepage .latest-community-discussions-block .community-title {
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}
.homepage .latest-community-discussions-block .community-title h2 {
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 800px) {
  .homepage .latest-community-discussions-block .community-title h2 {
    font-size: 2rem;
  }
}
.homepage .latest-community-discussions-block .preview-wrap {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 800px) {
  .homepage .latest-community-discussions-block .preview-wrap {
    flex-direction: column;
  }
}
.homepage .latest-community-discussions-block .post-preview {
  --gutter: 30px;
  display: flex;
  flex-direction: column;
  width: calc(33.3333333333% - var(--gutter) * 2 / 3);
}
@media only screen and (max-width: 800px) {
  .homepage .latest-community-discussions-block .post-preview {
    width: 100%;
  }
}
.homepage .quote-of-the-week-block {
  position: relative;
  margin-bottom: 6rem;
}
.homepage .quote-of-the-week-block .quote-background {
  background-size: cover;
  display: block;
  background-color: #2a2f3a;
  background-repeat: no-repeat;
}
.homepage .quote-of-the-week-block .quote-background:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 47, 58, 0.4);
  mix-blend-mode: multiply;
  transition: all 0.2s ease-out;
}
.homepage .quote-of-the-week-block .quote-wrap {
  width: 100%;
  height: 100%;
  background-color: #2a2f3a;
  display: flex;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 1;
}
.homepage .quote-of-the-week-block .quote-wrap .inset-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.homepage .quote-of-the-week-block .quote-wrap .label {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 80px;
  padding-top: 50px;
  opacity: 0.8;
}
.homepage .quote-of-the-week-block .quote-wrap .quote-wrap {
  display: flex;
  flex-direction: column;
}
.homepage .quote-of-the-week-block .quote-wrap .quote-wrap .quote {
  text-align: center;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 48px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 800px) {
  .homepage .quote-of-the-week-block .quote-wrap .quote-wrap .quote {
    font-size: 28px;
    line-height: 1.2em;
  }
}
.homepage .quote-of-the-week-block .quote-wrap .quote-wrap .attribution {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.8;
}
.homepage .quote-of-the-week-block .quote-wrap .quote-wrap .attribution a {
  color: white;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.homepage .quote-of-the-week-block .quote-wrap .quote-wrap .attribution a:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: white;
  transition: width 0.3s ease-in-out;
}
.homepage .quote-of-the-week-block .quote-wrap .quote-wrap .attribution a:hover:after {
  width: 100%;
}
.homepage .quote-of-the-week-block .quote-wrap .more-episodes {
  margin: 50px auto 80px;
  color: #ffffff;
  text-decoration: none;
}
.homepage .quote-of-the-week-block .quote-wrap .more-episodes svg #icon-long-arrow-right {
  stroke: #ffffff;
}
.homepage .quote-of-the-week-block .quote-wrap .more-episodes:hover {
  color: #9b9b9b;
}
.homepage .quote-of-the-week-block .quote-wrap .more-episodes:hover svg #icon-long-arrow-right {
  stroke: #9b9b9b;
}
.homepage .membership-block {
  padding-bottom: 6rem;
}
@media only screen and (max-width: 800px) {
  .homepage .membership-block .title-wrap .inset-inner {
    width: 100%;
  }
}
.homepage .membership-block .title-wrap .label {
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 400;
}
.homepage .membership-block .title-wrap .title {
  text-align: center;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 40px;
  margin: 40px auto;
  width: 70%;
}
@media only screen and (max-width: 800px) {
  .homepage .membership-block .title-wrap .title {
    width: 100%;
    font-size: 32px;
    line-height: 1.3em;
  }
}
.homepage .membership-block .benefits .benefits-wrap .benefit-title {
  margin-top: 50px;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 20px;
}
.homepage .membership-block .benefits .benefits-wrap .description {
  margin-top: 30px;
}
.homepage .membership-block a.more-info .text {
  color: white;
}
.homepage .membership-block a.more-info .text:hover {
  color: #9b9b9b;
}
.homepage .sign-up {
  padding-bottom: 6rem;
  padding-top: 0;
}

#masthead .header {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  align-items: center;
}
#masthead .header .header-logo svg {
  width: 200px;
  height: auto;
}
#masthead .header .menu-container {
  display: flex;
}
#masthead .header .menu-container ul.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  column-gap: 1.2rem;
}
@media only screen and (max-width: 800px) {
  #masthead .header .menu-container ul.menu {
    display: none;
  }
}
#masthead .header .menu-container ul.menu a {
  text-decoration: none;
  color: black;
  transition: all 0.1s ease;
}
#masthead .header .menu-container ul.menu a:hover {
  opacity: 0.7;
  color: #7e8dad;
}
#masthead .header .menu-container ul.menu li.menu-item-has-children {
  position: relative;
}
#masthead .header .menu-container ul.menu li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 0.2s ease 0s;
}
#masthead .header .menu-container ul.menu > li.menu-item-has-children {
  padding-right: 1rem;
}
#masthead .header .menu-container ul.menu > li.menu-item-has-children:after {
  content: "›";
  transform: rotate(90deg);
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
#masthead .header .menu-container ul.menu > li.menu-item-has-children .sub-menu {
  left: -1.2rem;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
#masthead .header .menu-container ul.menu > li.menu-item-has-children .sub-menu > li.menu-item-has-children {
  margin-right: 1.2rem;
}
#masthead .header .menu-container ul.menu > li.menu-item-has-children .sub-menu > li.menu-item-has-children:after {
  content: "›";
  position: absolute;
  right: 0;
  top: -1px;
}
#masthead .header .menu-container ul.menu > li.menu-item-has-children .sub-menu > li.menu-item-has-children .sub-menu {
  left: 100%;
  top: -1.2rem;
}
#masthead .header .menu-container ul.menu .sub-menu {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10000;
  background: white;
  padding: 1.2rem 0;
  width: max-content;
  max-width: 12rem;
  transition: visibility 0s linear 0.2s, opacity 0.2s ease 0s;
}
#masthead .header .menu-container ul.menu .sub-menu > li {
  padding: 0 1.2rem;
  margin-bottom: 0.5rem;
}
#masthead .header .menu-container ul.menu .sub-menu > li:last-child {
  margin-bottom: 0;
}
#masthead .header .menu-container .burger {
  display: none;
  cursor: pointer;
}
@media only screen and (max-width: 800px) {
  #masthead .header .menu-container .burger {
    display: block;
    padding: 15px;
  }
  #masthead .header .menu-container .burger svg {
    width: 30px;
    height: 30px;
    display: block;
  }
}
#masthead .header .menu-container .search {
  margin-left: 1.2rem;
}
@media only screen and (max-width: 800px) {
  #masthead .header .menu-container .search {
    display: none;
  }
}

#mobile-menu {
  background-color: #2d2626;
  justify-content: space-between;
  height: 100vh;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: visibility 0s 0.4s, transform 0.4s;
  visibility: hidden;
  width: 100%;
  max-width: 30%;
  z-index: 500;
}
@media only screen and (max-width: 800px) {
  #mobile-menu {
    min-width: 55%;
    width: 300px;
    max-width: 85%;
  }
}
#mobile-menu .menu-inner {
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
#mobile-menu .menu-inner #menu-close {
  color: white;
  cursor: pointer;
  font-weight: 100;
  font-size: 14px;
}
#mobile-menu .menu-inner .menu-header-menu-container {
  width: 100%;
  margin-top: 16px;
}
#mobile-menu .menu-inner ul.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
#mobile-menu .menu-inner ul.menu li {
  margin: 5px 0 10px;
}
#mobile-menu .menu-inner ul.menu li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 400;
}
#mobile-menu .menu-inner ul.menu.menu-header-menu-1 > li {
  min-height: 33px;
}
#mobile-menu .menu-inner ul.menu li.menu-item-has-children {
  position: relative;
  transition: all 0.2s ease-in;
}
#mobile-menu .menu-inner ul.menu li.menu-item-has-children:after {
  content: "›";
  transform: rotate(90deg);
  position: absolute;
  right: 0;
  top: -5px;
  color: white;
  font-size: 1.5rem;
  transition: all 0.2s ease-in;
}
#mobile-menu .menu-inner ul.menu li.menu-item-has-children.active > .sub-menu {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 0.2s ease 0.1s;
}
#mobile-menu .menu-inner ul.menu li.menu-item-has-children.active:after {
  transform: rotate(-90deg) translateY(-3px);
  transition: all 0.2s ease-in;
}
#mobile-menu .menu-inner ul.menu > li.menu-item-has-children .sub-menu {
  padding-left: 1rem;
}
#mobile-menu .menu-inner ul.menu > li.menu-item-has-children .sub-menu > li.menu-item-has-children .sub-menu {
  padding-left: 1rem;
}
#mobile-menu .menu-inner ul.menu .sub-menu {
  position: absolute;
  width: 100%;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  transition: visibility 0s linear 0.2s, opacity 0.2s ease 0s;
}
#mobile-menu .mobile-search {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 400;
}
#mobile-menu .mobile-search svg {
  margin-right: 10px;
}
#mobile-menu .mobile-search svg #Homepage-Copy {
  fill: #fff;
}
#mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.4s;
  visibility: visible;
}

footer {
  background-color: #f6f8fc;
  padding: 60px 0;
}
footer .footer {
  display: flex;
  padding: 20px 0;
  justify-content: space-between;
  width: 60%;
}
@media only screen and (max-width: 800px) {
  footer .footer {
    width: 100%;
    flex-direction: column;
  }
}
footer .footer .left {
  margin-right: 150px;
}
@media only screen and (max-width: 800px) {
  footer .footer .left {
    margin-bottom: 60px;
  }
}
footer .footer .left a.footer-logo {
  margin-bottom: 20px;
}
footer .footer .left a.footer-logo img {
  width: 200px;
}
footer .footer .left a.footer-logo svg {
  width: 200px;
  height: auto;
}
footer .footer .left .social-wrap {
  margin-top: 30px;
  display: flex;
}
@media only screen and (max-width: 800px) {
  footer .footer .left .social-wrap {
    width: 50%;
    justify-content: space-between;
  }
}
footer .footer .left .social-wrap a.twitter svg path {
  fill: #2a2f3a;
}
footer .footer .left .social-wrap a.insta {
  margin-right: 10px;
}
@media only screen and (max-width: 800px) {
  footer .footer .left .social-wrap a.insta {
    margin-left: 10px;
  }
}
footer .footer .left .social-wrap a.insta svg path {
  fill: #2a2f3a;
}
footer .footer .menus-wrap {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 500px) {
  footer .footer .menus-wrap {
    flex-direction: column-reverse;
  }
}
footer .footer .menus-wrap .menu-one {
  font-size: 20px;
  font-weight: 400;
  margin-right: 60px;
}
@media only screen and (max-width: 500px) {
  footer .footer .menus-wrap .menu-one {
    margin-right: 0;
  }
}
footer .footer .menus-wrap .menu-one ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer .footer .menus-wrap .menu-one ul a {
  display: block;
  text-decoration: none;
  margin-right: 20px;
  margin-bottom: 10px;
  color: #2a2f3a;
}
footer .footer .menus-wrap .menu-one .copywrite {
  margin-top: 60px;
  color: #757c8c;
  font-size: 14px;
}
footer .footer .menus-wrap .menu-two {
  font-size: 20px;
  font-weight: 100;
}
@media only screen and (max-width: 500px) {
  footer .footer .menus-wrap .menu-two {
    margin-bottom: 3px;
  }
}
footer .footer .menus-wrap .menu-two ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer .footer .menus-wrap .menu-two ul a {
  display: block;
  text-decoration: none;
  margin-right: 20px;
  margin-bottom: 10px;
  color: #2a2f3a;
  font-weight: 100;
}
@media only screen and (max-width: 500px) {
  footer .footer .menus-wrap .menu-two ul a {
    font-weight: 400;
  }
}

.article-post {
  padding-top: 40px;
}
.article-post .contributor-wrap {
  padding: 0 1rem;
  margin: 0 auto 80px auto;
  color: #9b9b9b;
  max-width: 280px;
  text-align: center;
}
.article-post .contributor-wrap span {
  display: inline;
}
.article-post .contributor-wrap a.name {
  color: #333333;
  text-decoration: none;
  transition: all 0.2s ease-out;
  text-align: center;
}
.article-post .contributor-wrap a.name:hover {
  color: #555555;
  text-decoration: underline;
}
.article-post .contributor-wrap .date {
  margin-top: 0.5rem;
}
.article-post .hero-image {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto 60px;
}
.article-post .audio {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto 60px;
}
.article-post .article-content {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 60% 1fr;
  gap: 2rem;
}
@media only screen and (max-width: 800px) {
  .article-post .article-content {
    grid-template-columns: 1fr;
  }
}
.article-post .article-content-inner :first-child {
  margin-top: 0;
}
.article-post .article-content .audio audio {
  width: 100%;
}
.article-post .article-content p {
  margin: 40px auto;
  font-size: 20px;
  font-weight: 400;
}
.article-post .article-content p a {
  text-decoration: none;
  font-size: 20px;
  color: #7e8dad;
}
.article-post .article-content p u {
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
}
.article-post .article-content .wp-block-image figcaption {
  text-align: center;
  margin-top: 10px;
}
.article-post .article-content .wp-block-image:not(.wide) {
  margin: auto;
}
.article-post .article-content .wp-block-image.wide figcaption {
  margin: auto;
}
.article-post .article-content .patreon-valid-patron-message {
  margin: auto;
  text-align: center;
  font-size: 20px;
}
.article-post .article-content ul,
.article-post .article-content ol {
  margin: 40px auto;
}
.article-post .article-content ul li,
.article-post .article-content ol li {
  font-size: 18px;
}
.article-post .article-content ul li a,
.article-post .article-content ol li a {
  text-decoration: none;
  font-size: 18px;
  color: #7e8dad;
}
.article-post .article-content h1 {
  font-weight: 500;
  font-size: 36px;
  margin: 40px auto;
}
.article-post .article-content h2 {
  font-weight: 500;
  font-size: 32px;
  margin: 40px auto;
}
.article-post .article-content h3 {
  font-weight: 400;
  font-size: 25px;
  margin: 40px auto;
}
.article-post .article-content h3 u {
  text-decoration: none;
}
.article-post .article-content h3 img {
  width: 110%;
  margin: -5%;
  display: block;
}
.article-post .article-content h4 {
  font-weight: 400;
  font-size: 20px;
  margin: 40px auto;
}
.article-post .article-content blockquote.wp-block-quote {
  font-size: 40px;
  font-weight: 100;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  margin: 40px auto;
  border-left: 2px solid #aab8d7;
  padding: 0 50px;
}
.article-post .article-content blockquote.wp-block-quote p {
  color: #aab8d7;
  width: 100%;
}
.article-post .article-content blockquote.wp-block-quote cite {
  font-size: 20px;
  display: block;
  margin-top: 1.5rem;
  font-weight: 500;
}
.article-post .article-content .formkit-form {
  display: none;
}
.article-post .article-content .chapter-title h2 {
  font-weight: 700;
}
.article-post .article-content iframe {
  margin: 40px auto;
  font-size: 20px;
  font-weight: 400;
  display: block;
}
.article-post .sidebar-article {
  grid-column: 1/2;
}
@media only screen and (max-width: 800px) {
  .article-post .sidebar-article {
    display: none;
  }
}
.article-post .sidebar-article .share-title {
  border-bottom: 1px solid #9b9b9b;
  font-size: 14px;
  color: #9b9b9b;
  text-transform: uppercase;
}
.article-post .sidebar-article .share-icon {
  display: flex;
  justify-content: flex-start;
  padding-top: 16px;
  margin-right: 100px;
}
.article-post .sidebar-article .share-icon a.facebook-share,
.article-post .sidebar-article .share-icon a.twitter-share {
  margin-right: 20px;
}
.article-post .article-chapters-desktop {
  margin-top: 2rem;
  position: sticky;
  top: 1rem;
}
@media only screen and (max-width: 800px) {
  .article-post .article-chapters-desktop {
    display: none;
  }
}
.article-post .article-chapters-desktop ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0 0;
  width: 100%;
}
.article-post .article-chapters-desktop ul li {
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.article-post .article-chapters-desktop-title {
  border-bottom: 1px solid #9b9b9b;
  font-size: 14px;
  color: #9b9b9b;
  text-transform: uppercase;
  display: block;
}
.article-post .article-chapters-mobile {
  display: none;
  position: sticky;
  top: 0;
  z-index: 300;
  margin-top: -40px;
  margin-bottom: 40px;
  text-align: center;
  background-color: white;
  border-bottom: 1px solid #9b9b9b;
}
@media only screen and (max-width: 800px) {
  .article-post .article-chapters-mobile {
    display: block;
  }
}
.article-post .article-chapters-mobile-button {
  text-transform: uppercase;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  border: none;
}
.article-post .article-chapters-mobile-button.active svg {
  transform: rotate(180deg);
}
.article-post .article-chapters-mobile-button svg {
  width: 100%;
  max-width: 1rem;
  margin-left: 0.5rem;
  transition: all ease 0.3s;
}
.article-post .article-chapters-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  opacity: 0;
  height: 0;
  visibility: hidden;
  pointer-events: none;
  text-align: left;
  background-color: #9b9b9b;
  transition: visibility 0s linear 0.3s, opacity 0.3s ease 0s, height 0.3s ease 0s;
}
.article-post .article-chapters-mobile ul.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s linear 0s, opacity 0.3s ease 0s, height 0.3s ease 0s;
}
.article-post .article-chapters-mobile ul.active li {
  opacity: 1;
  transition: opacity 0.4s ease 0.2s;
}
.article-post .article-chapters-mobile ul li {
  padding: 0 0 0.6rem 1rem;
  line-height: 1.2;
  opacity: 0;
}
.article-post .article-chapters-mobile ul li:first-child {
  padding-top: 1rem;
}
.article-post .article-chapters-mobile ul li:last-child {
  padding-bottom: 1rem;
}
.article-post .article-chapters-mobile ul li a {
  text-decoration: none;
  color: black;
  font-weight: 700;
}
.article-post .article-chapters-mobile ul li a:focus {
  outline: none;
}
.article-post .article-contributors {
  width: 60%;
  margin: auto;
}
@media only screen and (max-width: 800px) {
  .article-post .article-contributors {
    width: 100%;
  }
}
.article-post .article-contributors-title {
  text-align: center;
}
.article-post .article-contributors-roles {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.article-post .article-contributors-roles-label {
  font-weight: 700;
}
.article-post .article-contributors-roles a {
  color: #7e8dad;
  text-decoration: none;
}
.article-post .article-contributors-roles a:hover {
  text-decoration: underline;
}
.article-post .article-contributors hr {
  width: 100%;
}

.author .author-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.author .author-top .contributor-label {
  margin: 50px 0 -20px 0;
  text-transform: uppercase;
  font-weight: 500;
  color: #9b9b9b;
}
.author .author-image img {
  display: block;
  border-radius: 50%;
  width: 30vw;
  height: 30vw;
  object-fit: cover;
  max-width: initial;
  position: relative;
  transition: all 0.2s ease-out;
}
@media only screen and (max-width: 800px) {
  .author .author-image img {
    width: 280px;
    height: 280px;
  }
}
.author .author-info {
  width: 60%;
  font-weight: 500;
  font-size: 18px;
  margin: 40px 0;
}
@media only screen and (max-width: 800px) {
  .author .author-info {
    width: 100%;
  }
}
.author .author-articles {
  margin-top: 100px;
}
.author .author-articles .label {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0.8;
}

.membership .membership-wrapper {
  padding-bottom: 100px;
}
.membership .membership-wrapper .title {
  text-align: center;
}
.membership .membership-wrapper .title h2 {
  color: black;
}
.membership .membership-wrapper .info {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 40px;
}
.membership .membership-wrapper .info a {
  text-decoration: none;
  color: #2a2f3a;
}
.membership .membership-wrapper .info a span {
  font-weight: 600;
  border-bottom: none;
}
.membership .membership-wrapper .email,
.membership .membership-wrapper .password {
  text-align: center;
  border-bottom: 1px solid black;
  width: 40%;
  margin: 0 auto;
}
.membership .membership-wrapper .email .text h3,
.membership .membership-wrapper .password .text h3 {
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  font-weight: 100;
  margin: 20px 100px;
}
.membership .membership-wrapper .forgot-password {
  width: 12%;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 50px;
}
.membership .membership-wrapper .forgot-password a.text {
  text-align: center;
  margin-top: 40px;
  color: #aab8d7;
}

.page-databases .central-column {
  margin-top: 40px;
}
.page-databases-intro {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 100px;
}
.page-databases-intro a {
  color: inherit;
}

.page-events .central-column {
  margin-top: 40px;
}
.page-events-intro {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 100px;
}
.page-events-intro a {
  color: inherit;
}
.page-events-intro form {
  display: none;
}
.page-events .embedded_content {
  padding-bottom: 60px;
}
.page-events .embedded_content .embedded-item {
  margin-bottom: 60px;
}
.page-events .embedded_content .embedded-item .embedded-title {
  font-weight: 500;
  font-size: 32px;
  margin: 20px auto;
  text-align: center;
}
.page-events .embedded_content .embedded-item .embedded-code {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subscribe {
  margin-top: 40px;
}
.subscribe .page-title {
  margin: 0;
}
.subscribe .subtitle {
  margin-bottom: 100px;
  font-weight: 300;
}
.subscribe .benefit-section {
  margin-bottom: 50px;
}
.subscribe .benefit-section .benefit-title {
  margin-bottom: 30px;
  width: 30%;
  margin: auto;
}
@media only screen and (max-width: 1200px) {
  .subscribe .benefit-section .benefit-title {
    margin-bottom: 50px;
    width: 100%;
  }
}
.subscribe .benefit-section .benefit-title h3 {
  text-align: center;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: #7e8dad;
  font-size: 40px;
  margin: 0 auto 40px;
  line-height: 1.1em;
}
@media only screen and (max-width: 1200px) {
  .subscribe .benefit-section .benefit-title h3 {
    margin: 0;
  }
}
.subscribe .join-up {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 160px;
  margin-top: 80px;
}
.subscribe .join-up .join-up-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.subscribe .join-up .benefits-wrap {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 700px) {
  .subscribe .join-up .benefits-wrap {
    flex-direction: column;
  }
}
.subscribe .join-up .benefits-wrap a.more-info {
  margin: 16px;
  text-decoration: none;
  color: white;
  border-radius: 30px;
  background-color: rgba(42, 47, 58, 0.6666666667);
}
.subscribe .join-up .benefits-wrap a.more-info + a.more-info {
  background-color: #2a2f3a;
}
.subscribe .join-up .benefits-wrap a.more-info:hover {
  color: #aab8d7;
}
.subscribe .join-up .note {
  margin-top: 30px;
}

.contact-us .central-column {
  max-width: 800px;
}
.contact-us .title h2 {
  text-align: center;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  margin-bottom: 100px;
  font-size: 50px;
  line-height: 1.15em;
}
.contact-us .subtitle > * {
  text-align: left;
}
.contact-us .subtitle h4 a {
  text-decoration: none;
  color: #7e8dad;
}
.contact-us .subtitle p a {
  text-decoration: none;
  color: #7e8dad;
}
.contact-us form #frm_field_6_container input {
  box-shadow: none;
  text-align: center;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  border: 0;
  outline: 0;
  border-bottom: 1px solid #4a4a4a;
  font-size: 22px;
  color: #ccc;
  border-radius: 0px;
  margin-bottom: 80px;
  width: 100%;
  padding: 10px;
}
.contact-us form #frm_field_7_container input,
.contact-us form #frm_field_8_container input {
  box-shadow: none;
  text-align: center;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  border: 0;
  outline: 0;
  border-bottom: 1px solid #4a4a4a;
  font-size: 1.4rem;
  color: #ccc;
  border-radius: 0px;
  margin-bottom: 80px;
  width: 100%;
  font-size: 15px;
  padding: 10px;
}
.contact-us form #frm_field_9_container label {
  text-align: center;
  font-weight: 400;
  padding: 10px;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 15px;
}
.contact-us form #frm_field_9_container textarea {
  border-radius: 0px;
  resize: none;
  margin-bottom: 80px;
}
.contact-us form #frm_field_9_container .more-info {
  padding: 10px 10px;
  width: 40%;
  margin-bottom: 300px;
}
.contact-us form .frm_submit {
  margin: 0 auto;
  width: 40%;
  margin-bottom: 300px;
}
.contact-us form .frm_submit button.frm_button_submit {
  width: 100%;
  border-radius: 30px 0px 0px 30px;
  background-color: #2a2f3a;
  border-color: #4a4a4a;
}
.contact-us form #frm_form_2_container .frm_message p {
  text-align: center;
}
.contact-us form #frm_form_2_container .frm_error_style p {
  text-align: center;
}

.podcast a.post-preview,
.database a.post-preview {
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 50px;
}
.podcast a.post-preview .featured-image,
.database a.post-preview .featured-image {
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.podcast a.post-preview .featured-image .premium-label,
.database a.post-preview .featured-image .premium-label {
  position: absolute;
  top: 10px;
  left: 0;
  background-color: #7e8dad;
  padding: 3px 6px;
  font-size: 12px;
  text-transform: uppercase;
  color: White;
}
.podcast a.post-preview .featured-image .image,
.database a.post-preview .featured-image .image {
  height: 0;
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  overflow: hidden;
  background: #4a4a4a;
  transition: all 0.3s ease-out;
}
.podcast a.post-preview .featured-image .image img,
.database a.post-preview .featured-image .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.podcast a.post-preview .title-wrap,
.database a.post-preview .title-wrap {
  display: flex;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  color: black;
  font-size: 20px;
  margin-top: 20px;
  justify-content: space-between;
}
.podcast a.post-preview .podcast-title,
.podcast a.post-preview .database-title,
.database a.post-preview .podcast-title,
.database a.post-preview .database-title {
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  color: black;
  font-size: 30px;
}

.related-articles {
  margin-bottom: 200px;
}
.related-articles .related-title {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 400;
}
.related-articles .related-row {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 800px) {
  .related-articles .related-row {
    flex-direction: column;
  }
}
.related-articles .related-row a.post-preview {
  margin-right: var(--gutter);
}
.related-articles .related-row a.post-preview:last-child {
  margin-right: 0;
}

.pagination {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 120px 0;
  padding: 0;
  align-items: center;
}
.pagination span,
.pagination a {
  color: #2a2f3a;
}
.pagination span:focus,
.pagination a:focus {
  outline: none;
}
.pagination .prev,
.pagination .next {
  font-size: 18px !important;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  padding: 0 50px;
  color: #2a2f3a;
  font-family: "Inter", Helvetica, Arial, sans-serif !important;
}
.pagination .prev:hover,
.pagination .next:hover {
  color: #4a4a4a;
}
.pagination .empty-prev,
.pagination .empty-next {
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  color: #9b9b9b;
  padding: 0 50px;
}
.pagination .page-numbers {
  font-size: 34px;
  text-decoration: none;
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
}
.pagination .page-numbers:hover {
  color: #4a4a4a;
}
.pagination .current {
  color: #2a2f3a;
  font-weight: 600;
}
@media only screen and (max-width: 500px) {
  .pagination {
    gap: 30px;
  }
  .pagination .prev,
  .pagination .next {
    font-size: 14px !important;
    padding: 10px 30px 0 30px;
  }
  .pagination .empty-prev,
  .pagination .empty-next {
    font-size: 14px;
    padding: 10px 30px 0 30px;
  }
  .pagination .page-numbers {
    font-size: 35px;
  }
}

.topics .category-block {
  margin: 60px auto 100px;
}
.topics .category-block h2 {
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  font-weight: normal;
}
.topics .category-block .preview-row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.topics .category-block .more-info {
  padding: 12px 16px 12px 22px;
  width: 260px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  display: flex;
  border-radius: 30px 0px 0px 30px;
  background-color: #2a2f3a;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
.topics .category-block .more-info #icon-long-arrow-right {
  transition: all 0.2s ease-out;
}
.topics .category-block .more-info:hover {
  color: #7e8dad;
}
.topics .category-block .more-info:hover #icon-long-arrow-right {
  stroke: #7e8dad;
}

.start-here {
  margin-top: 40px;
}
.start-here .page-title {
  margin: 0;
}
.start-here .subtitle {
  margin-bottom: 100px;
  font-weight: 300;
}
.start-here .questions-section {
  margin-bottom: 50px;
  width: 100%;
  overflow: hidden;
}
.start-here .questions-section .question {
  font-family: "Recoleta", Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: #7e8dad;
  font-size: 40px;
  margin: 0 auto 40px;
  line-height: 1.1em;
  text-align: center;
}
.start-here .questions-section .choice {
  margin: 0 auto 100px;
}
.start-here .questions-section .choice .choice-header {
  width: 80%;
  max-width: 800px;
  margin: auto;
}
@media only screen and (max-width: 800px) {
  .start-here .questions-section .choice .choice-header {
    width: 100%;
  }
}
.start-here .questions-section .choice .choice-header .choice-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0 auto 20px;
  text-align: center;
}
.start-here .questions-section .choice .choice-header .choice-description {
  margin: 0 auto 40px;
  text-align: center;
}
.start-here .questions-section .related-posts {
  padding-top: 30px;
}
.start-here .questions-section .related-posts:focus-visible {
  outline: none;
}
.start-here .questions-section .related-posts .flickity-slider {
  display: flex;
  width: 100%;
}
.start-here .questions-section .related-posts .flickity-prev-next-button {
  top: 0;
}
.start-here .questions-section .related-posts a.post-preview {
  width: 420px;
  margin-right: 30px;
}

/*# sourceMappingURL=wm-style.css.map */
