/*!****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/scss/main.scss ***!
  \****************************************************************************************************************/
#main-nav {
  background-color: #fff;
  margin: 0 auto;
  display: flex;
}
@media (max-width: 991px) {
  #main-nav {
    flex-wrap: wrap;
  }
}
#main-nav #navbarNavDropdown {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  #main-nav #navbarNavDropdown {
    flex-basis: 100%;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease-in-out;
  }
  #main-nav #navbarNavDropdown.show {
    max-height: inherit;
    opacity: 1;
    pointer-events: auto;
  }
}
#main-nav span.brand {
  flex-grow: 1;
}
@media (max-width: 576px) {
  #main-nav span.brand .brand--text {
    display: none;
  }
}
#main-nav a.brand {
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: 20px;
  font-weight: bold;
}
#main-nav a.brand::before {
  content: "";
  background-image: url(wtha_logo_svg_blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.navbar-toggler {
  display: none;
  margin: 24px;
}
@media (max-width: 991px) {
  .navbar-toggler {
    display: inline-block;
    cursor: pointer;
  }
}

#main-menu {
  display: flex;
  justify-content: flex-end;
  margin: 24px;
  list-style: none;
}
@media (max-width: 991px) {
  #main-menu {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
}
#main-menu li {
  margin: 0 16px;
}
@media (max-width: 991px) {
  #main-menu li {
    margin: 1.5rem 0;
  }
}
#main-menu li a {
  font-weight: bold;
}
#main-menu li:last-child > a {
  padding: 0.5rem 1rem 0.7rem;
  border-radius: 5px;
  color: #ffffff;
  background-color: #234661;
  transform: translateY(1px);
  opacity: 1;
  transition: opacity 0.3s ease-out;
  white-space: pre;
}
#main-menu li:last-child > a:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease-in;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox=%270 0 32 32%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath stroke=%27rgba%28127, 83, 145, .8%29%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 d=%27M4 8h24M4 16h24M4 24h24%27/%3E%3C/svg%3E");
}

.twd-front-page-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 25vh;
  background-size: cover;
  text-align: center;
  color: #ffffff;
  background-color: #234661;
}

h1 {
  font-size: 3rem;
  margin: 1rem;
}
@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
    margin: 0.5rem;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 1.2rem;
  }
}

.site-footer {
  display: flex;
  justify-content: center;
  padding: 2rem;
  background-color: #234661;
  color: white;
  text-align: center;
}

#wrapper-footer,
#wrapper-footer-full {
  background-color: #234661;
  color: white;
}

.footer-widget {
  display: flex;
  justify-content: space-around;
  gap: 4rem;
  width: 100%;
}
@media (max-width: 991px) {
  .footer-widget {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
.footer-widget ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 2rem 0 3rem;
  gap: 1rem;
}
.footer-widget ul li a {
  color: white;
  margin: 2rem 0;
}

h3.widget-title {
  font-size: 1.3rem;
  margin: 1rem 0;
}

#menu-navigation {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
#menu-navigation li {
  margin: 1rem;
}
#menu-navigation li a {
  color: white;
}

.twd-copyright {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media (max-width: 767px) {
  .twd-copyright {
    margin-bottom: 3rem;
  }
}

.twd_footer--social-icons .twd-social-links {
  list-style: none;
  flex-direction: row;
  width: 50%;
  min-width: 260px;
  margin: 2rem 0;
  padding: 0;
  gap: 2rem;
}
.twd_footer--social-icons .twd-social-links li a {
  color: white;
}
@media (max-width: 991px) {
  .twd_footer--social-icons .twd-social-links {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }
}

.twd_footer--nav-section {
  flex: 1;
}
.twd_footer--nav-section:first-child {
  flex: 2;
}
.twd_footer--nav-section h5 {
  color: white;
  font-size: 20px;
}

.twd-fp__intro {
  background-image: url(cropped-wpheader-20.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  padding: 4rem;
  color: white;
}
.twd-fp__intro::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 70, 95, 0.85);
  z-index: 1;
}
@media (max-width: 576px) {
  .twd-fp__intro {
    padding: 1rem;
  }
}

.twd-fp__intro-sections {
  display: flex;
  justify-content: space-around;
  z-index: 2;
  position: relative;
}
@media (max-width: 998px) {
  .twd-fp__intro-sections {
    flex-direction: column;
    align-items: center;
  }
}

.twd-fp__intro-quote {
  flex-grow: 1;
}
.twd-fp__intro-quote h1 {
  color: white;
  margin-left: 0;
}
.twd-fp__intro-quote blockquote {
  border-left-color: white;
}
@media (min-width: 998px) {
  .twd-fp__intro-quote blockquote {
    max-width: 550px;
  }
}

.twd-fp__intro-video {
  position: relative;
  flex-shrink: 1;
  width: 50%;
  max-width: 560px;
  margin: 0 auto;
  padding-bottom: 22%;
  height: 0;
  overflow: hidden;
}
.twd-fp__intro-video iframe, .twd-fp__intro-video object, .twd-fp__intro-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1465px) and (min-width: 998px) {
  .twd-fp__intro-video {
    margin-top: 3vw;
  }
}
@media (max-width: 998px) {
  .twd-fp__intro-video {
    width: 100%;
    padding-bottom: 57%;
  }
}

.twd-alert {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem 2rem 2rem 0;
  background-color: #f7f7f7;
  position: relative;
}
@media (max-width: 576px) {
  .twd-alert {
    flex-direction: column;
    padding: 2rem;
  }
}
.twd-alert span {
  display: block;
  margin: 0 2rem;
  color: #BC1823;
  font-weight: bold;
  font-size: 96px;
  text-align: center;
}
@media (max-width: 576px) {
  .twd-alert span {
    display: none;
  }
}
.twd-alert h3 {
  color: #234661;
  margin-bottom: 1rem;
}

.twd-fp__mission {
  display: flex;
  justify-content: space-around;
}
.twd-fp__mission #our_mission, .twd-fp__mission #our_vision {
  padding: 2rem;
}
.twd-fp__mission #our_mission h2, .twd-fp__mission #our_vision h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.twd-fp__mission #our_mission p, .twd-fp__mission #our_vision p {
  font-weight: 600;
}
@media (max-width: 998px) {
  .twd-fp__mission {
    flex-direction: column;
  }
}

.twd-fp__about {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: rgba(44, 70, 95, 0.85);
  padding: 4rem;
}
@media (max-width: 1400px) {
  .twd-fp__about {
    flex-direction: column;
  }
  .twd-fp__about .twd-fp__about-image img {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .twd-fp__about {
    padding: 0;
  }
}
.twd-fp__about .twd-fp__about-content {
  padding: 4rem;
  color: white;
}
.twd-fp__about .twd-fp__about-content h2 {
  color: white;
  margin-bottom: 2rem;
}
.twd-fp__about .twd-fp__about-content p {
  margin-bottom: 2rem;
}

.twd-fp__board {
  padding-top: 2rem;
}
.twd-fp__board h2 {
  text-align: center;
}
.twd-fp__board .board-members-gallery {
  max-width: 100%;
}
.twd-fp__board .board-members-gallery figure img {
  min-height: 350px;
}
.twd-fp__board .board-members-gallery figure figcaption {
  color: #234661;
  font-size: 24px;
  font-family: "Lora", "serif";
  font-variant: small-caps;
  text-transform: lowercase;
  letter-spacing: 1px;
}
.twd-fp__board .board-members-gallery figure figcaption .member-role {
  font-size: 24px;
  color: #5B666D;
}

.twd-fp__help-content {
  max-width: 800px;
  margin: 0 auto;
  background: #f7f7f7;
  padding: 3rem;
}
.twd-fp__help-content h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.twd-fp__help-content p {
  margin-bottom: 2rem;
}
.twd-fp__help-content p .callout {
  text-transform: uppercase;
}

.twd-fp__help-cta {
  display: flex;
  float: right;
  flex-direction: column;
  padding: 0 2rem 2rem 2rem;
  gap: 1.6rem;
  text-align: center;
}
.twd-fp__help-cta--mobile {
  display: none;
}
@media (max-width: 991px) {
  .twd-fp__help-cta {
    display: none;
  }
  .twd-fp__help-cta--mobile {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.twd-fp__location {
  display: flex;
  justify-content: center;
  gap: 4rem;
  background-image: url(bucks-county-map.jpg);
  background-repeat: no-repeat;
  background-size: 185%;
  background-position: center;
  position: relative;
  margin-bottom: 0;
  padding: 3rem;
}
.twd-fp__location::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}
@media (max-width: 991px) {
  .twd-fp__location {
    flex-direction: column;
  }
}
.twd-fp__location div {
  z-index: 2;
}
@media (min-width: 991px) {
  .twd-fp__location div {
    max-width: 500px;
  }
}
.twd-fp__location h3 {
  text-align: center;
  margin-bottom: 3rem;
}
.twd-fp__location ul li {
  list-style: none;
  margin: 1rem 0;
}
.twd-fp__location ul li a {
  font-size: 28px;
}
@media (max-width: 991px) {
  .twd-fp__location h3 {
    margin-bottom: 1rem;
  }
  .twd-fp__location ul {
    margin-bottom: 2rem;
    text-align: center;
  }
  .twd-fp__location ul li a {
    font-size: 20px;
  }
  .twd-fp__location .twd-fp__location-societies {
    margin-bottom: 2rem;
  }
}

.site-main a[target=_blank] {
  position: relative;
}
.site-main a[target=_blank]::after {
  content: "\f35d";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 4px;
  font-size: 12px;
  top: 7px;
}

.textwidget.custom-html-widget {
  height: 100%;
}

#footer-full-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
@media (min-width: 991px) {
  #footer-full-content {
    justify-content: space-around;
    flex-direction: row;
  }
}

.footer-widget {
  margin-top: 2rem;
}

.twd-sidbar-widget-area {
  position: sticky;
  top: 50px;
}

.twd-further-reading-list a {
  text-transform: none;
}

.twd-page--content {
  display: flex;
  gap: 2rem;
}
@media (max-width: 1440px) {
  .twd-page--content {
    flex-direction: column;
  }
}

#sidebar {
  padding: 4rem;
  background-color: #f7f7f7;
  flex: 1;
}
@media (max-width: 1440px) {
  #sidebar {
    display: none;
  }
}

.twd-page--posts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.twd-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
@media (max-width: 991px) {
  .twd-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .twd-posts-grid {
    grid-template-columns: 1fr;
  }
}

.twd-post-card {
  display: flex;
  flex-direction: column;
  background-color: #f7f7f7;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
}
.twd-post-card a.post-thumbnail {
  display: block;
  cursor: pointer;
}
.twd-post-card a.post-thumbnail:hover {
  border-bottom: none !important;
}
.twd-post-card a.post-thumbnail img {
  width: 100%;
  height: clamp(180px, 22vw, 260px);
  object-fit: cover;
  display: block;
}

.twd-post-card__body {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  flex: 1;
}

.twd-post-card__title {
  font-size: 30px;
  line-height: 18px;
  margin: 0 0 0.35rem;
}
@media (max-width: 576px) {
  .twd-post-card__title {
    font-size: 24px;
    line-height: 18px;
  }
}

.twd-post-card__meta {
  color: #728089;
  letter-spacing: 0.5px;
  margin: 0 0 1.5rem;
}

.twd-post-card__excerpt {
  flex: 1;
  margin: 0 0 1rem;
}
.twd-post-card__excerpt p {
  margin: 0;
}

.twd-post-card .btn {
  align-self: flex-start;
}
@media (max-width: 576px) {
  .twd-post-card .btn {
    width: 100%;
    text-align: center;
  }
}

.twdAboutWTAudio {
  display: flex;
  justify-content: space-around;
  background-color: rgba(44, 70, 95, 0.85);
  color: #ffffff;
  padding: 2rem;
  gap: 2rem;
}
@media (max-width: 991px) {
  .twdAboutWTAudio {
    flex-direction: column;
    align-items: center;
  }
}
.twdAboutWTAudio a {
  color: #ffffff !important;
  text-decoration: underline;
}
.twdAboutWTAudio a::after {
  content: "" !important;
}

.twd-support h2 {
  text-align: center;
}

.twd-support--cards {
  display: flex;
  justify-content: space-evenly;
  gap: 3rem;
  padding: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .twd-support--cards {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 400px) {
  .twd-support--cards {
    padding: 0;
  }
}

.twd-support--card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 0 30%;
  padding: 2rem 3rem;
  background-color: #f7f7f7;
}
@media (max-width: 1160px) {
  .twd-support--card {
    flex: 0 0 40%;
  }
}
.twd-support--card h2 {
  text-align: center;
  font-size: 24px;
}
.twd-support--card p {
  flex-grow: 1;
  padding: 1rem;
}
.twd-support--card a {
  text-align: center;
}

.twd-support--give-send-go {
  text-align: center;
}
.twd-support--give-send-go::after {
  content: "";
}
.twd-support--give-send-go:hover {
  border-bottom: none;
}

.twd-give-form-button-wrapper {
  text-align: center;
}
.twd-give-form-button-wrapper button {
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-variant: all-small-caps;
  letter-spacing: 1.6px;
  padding: 1rem 2rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: opacity 0.3s ease-out;
  color: #ffffff;
  background-color: #234661 !important;
  cursor: pointer;
  border: none;
  width: 100%;
}
.twd-give-form-button-wrapper button:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease-in;
}

.entry-header .entry-meta {
  color: #ffffff;
}

.type-post .entry-content a::after {
  content: "" !important;
}

.nf-form-cont {
  padding: 2rem;
  background-color: #f7f7f7;
}

.nf-field-element input, .nf-field-element textarea {
  padding: 1rem 2rem;
}
.nf-field-element input:focus-visible, .nf-field-element textarea:focus-visible {
  outline: 2px solid #234661;
}

.ninja-forms-field[type=submit] {
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-variant: all-small-caps;
  letter-spacing: 1.6px;
  padding: 1rem 2rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: opacity 0.3s ease-out;
  color: #ffffff;
  background-color: #234661;
  cursor: pointer;
  border: none;
}
.ninja-forms-field[type=submit]:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease-in;
}

.nf-field-element textarea {
  font-family: "Lato", sans-serif;
  padding: 1rem;
}

.nf-field-label label, .nf-field-label span {
  font-family: "Lato", sans-serif;
  font-weight: bold;
  color: #234661;
}

.nf-form-fields-required {
  margin-bottom: 1rem;
  color: #5B666D;
}

.ninja-forms-req-symbol {
  color: #BC1823;
}

.pum-overlay {
  background-color: rgba(0, 0, 0, 0.8);
}

.pum-theme-3372 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close {
  background-color: #234661;
}

.give-modal.mfp-ready .mfp-content {
  padding: 4rem;
}

.give-form {
  font-family: "Lato", sans-serif;
}

.give-form.give-form-type-multi .give-input {
  background-color: #ffffff !important;
  border: 1px solid #234661 !important;
  border-radius: 5px !important;
  padding: 1rem !important;
  font-family: "Lato", sans-serif !important;
}

.give-select {
  background-color: #ffffff !important;
  padding: 1rem !important;
  font-family: "Lato", sans-serif !important;
  border: 1px solid #234661 !important;
  border-radius: 5px !important;
}
.give-select option {
  margin: 1rem 0 !important;
  font-family: "Lato", sans-serif !important;
}

.give-btn {
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-variant: all-small-caps;
  letter-spacing: 1.6px;
  padding: 1rem 2rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: opacity 0.3s ease-out;
  color: #ffffff;
  background-color: #234661;
  cursor: pointer;
  border: none;
}
.give-btn:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease-in;
}

.give-donation-total-label, .give-currency-symbol {
  background-color: #f7f7f7;
}

main {
  overflow: hidden;
}

.row {
  margin: 0;
}

.wrapper#page-wrapper,
.wrapper#index-wrapper,
.wrapper#single-wrapper {
  padding-top: 0;
}

.site-main.twd-posts {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.twd-featured-image {
  position: relative;
  max-width: 100%;
  height: auto;
  margin: 0 10px;
}
.twd-featured-image img {
  height: auto;
  max-height: 315px;
  object-fit: cover;
  max-width: 100%;
}
.twd-featured-image figcaption {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  color: white;
  max-width: 640px;
  margin: 0 auto;
  background-image: linear-gradient(to top, rgba(35, 71, 98, 0.3), rgba(35, 71, 98, 0));
}
.twd-featured-image figcaption a {
  color: white;
}

.nav-links {
  max-width: 850px;
  margin: 0 auto;
}

.entry-header.single {
  margin-bottom: 3rem;
}

.entry-title {
  text-align: center;
  min-height: 56px;
  letter-spacing: 0.3px;
}

.wp-post-image {
  object-fit: cover;
}

.entry-meta a {
  color: whitesmoke;
}

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

.twd-single-post-container {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.show {
  animation: fadein ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forward;
}

.hide {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: "Lato", sans-serif;
  color: #5B666D;
}

section {
  margin-bottom: 2rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lora", serif;
  text-transform: uppercase;
  color: #234661;
}

h1 {
  font-size: 36px;
}
@media (max-width: 576px) {
  h1 {
    font-size: 30px;
    text-align: center;
  }
}

h2 {
  font-size: 30px;
  line-height: 2rem;
}

h3 {
  font-size: 24px;
}

p {
  font-family: "Lato", sans-serif;
  line-height: 24px;
}

a {
  color: #234661;
  text-decoration: none;
  text-transform: lowercase;
  font-variant: small-caps;
  font-size: 20px;
  cursor: pointer;
}
a:hover {
  transition: all 1s ease-in-out;
  border-bottom: 1px solid #5B666D;
}

.main-site a {
  font-variant: none;
}

.current-menu-item a {
  border-bottom: 1px solid #5B666D;
}

blockquote {
  position: relative;
  padding: 0 2rem;
  margin: 2rem 0;
  border-left: 2px solid #ffffff;
}
@media (max-width: 576px) {
  blockquote {
    padding: 0 0 0 1rem;
  }
}
blockquote p {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 3.3rem;
  font-family: "Tangerine";
}
@media (max-width: 576px) {
  blockquote p {
    line-height: 2rem;
    font-size: 28px;
  }
}

code {
  background-color: #f3f3f3;
  font-size: 0.8rem;
  padding: 3px 6px;
}

.container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.wrapper .site-main {
  flex: 1 0 auto;
}
@media (max-width: 990px) {
  .wrapper .site-main {
    flex-shrink: 1;
  }
}
.wrapper .site-footer {
  flex-shrink: 0;
}

.btn {
  font-weight: 600;
  letter-spacing: 1.6px;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: opacity 0.3s ease-out;
  color: white;
}
.btn.btn-primary {
  background-color: #234661;
}
.btn.btn-secondary {
  background-color: #234661;
}
.btn.btn-inline {
  display: inline;
}
.btn:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease-in;
}

.twd-posts-index-header,
.entry-header.single {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #234661;
  text-align: center;
  padding: 30px;
}
.twd-posts-index-header h1,
.entry-header.single h1 {
  color: white;
}

.entry-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}
.entry-content h2 {
  margin-top: 3rem;
}
@media (max-width: 991px) {
  .entry-content h2 {
    font-size: 2rem;
  }
}
.entry-content h3 {
  margin-top: 32px;
}
.entry-content h3.wp-block-heading {
  margin: 32px 0;
}
@media (max-width: 991px) {
  .entry-content h3 {
    font-size: 1.5rem;
  }
}
.entry-content h4 {
  margin: 8px 0 24px 0;
}
@media (max-width: 991px) {
  .entry-content h4 {
    font-size: 1.2rem;
  }
}
.entry-content p {
  font-size: 18px;
  line-height: 26px;
  margin: 2rem 0;
}
.entry-content a {
  color: #234661;
  font-weight: 600;
  font-variant: all-petite-caps;
}
.entry-content .btn {
  color: white;
  font-weight: 600;
}

.entry-content ul {
  padding-left: 2rem;
  line-height: 1.4;
}

.loader {
  border: 10px solid rgba(127, 83, 145, 0.2);
  border-top: 10px solid #7f5391;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.mobile-iframe {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.mobile-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

ul.twd-further-reading-list {
  list-style-type: solid;
  background-color: #f7f7f7;
  padding: 1rem 1rem 1rem 2rem;
}
ul.twd-further-reading-list b li {
  margin: 1rem 0;
}
ul.twd-further-reading-list b li a {
  text-decoration: underline;
  font-variant: normal;
  font-weight: normal;
}

.twd-pagination {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: flex-end;
  padding: 2rem;
}

/*# sourceMappingURL=main.8c6fb099c748059da6d8.css.map*/