.facetwp-button {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  margin: 0 5px 5px 0;
  border: 1px solid #ddd;
  background-color: #f8f9fa;
  color: #333;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}
.facetwp-button:hover {
  background-color: #e9ecef;
  border-color: #ccc;
}
.facetwp-button-active {
  background-color: #0073aa;
  color: white;
  border-color: #006799;
}
.facetwp-button-active:hover {
  background-color: #006799;
}
.facetwp-button .facetwp-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  width: 16px;
  height: 16px;
}
.facetwp-button .facetwp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.facetwp-button[data-value=red] .facetwp-icon svg {
  fill: #e74c3c;
}
.facetwp-button[data-value=blue] .facetwp-icon svg {
  fill: #3498db;
}
.facetwp-button[data-value=green] .facetwp-icon svg {
  fill: #2ecc71;
}

#video-popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

#popup-content {
  max-width: 60%;
  max-height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#popup-content video,
#popup-content iframe {
  max-width: 100%;
  max-height: 100%;
}

.featured-podcast {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1440px;
  padding: 80px 120px;
  background: #fff;
  border-radius: 0px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  background-image: url(/wp-content/uploads/2025/05/Podcast_background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.featured-podcast .only-mobile {
  display: none;
}
@media (max-width: 575px) {
  .featured-podcast .only-mobile {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
}
.featured-podcast .only-desktop {
  display: flex;
}
@media (max-width: 575px) {
  .featured-podcast .only-desktop {
    display: none;
  }
}
.featured-podcast .featured-title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
@media (max-width: 575px) {
  .featured-podcast .featured-title-wrapper {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }
  .featured-podcast .featured-title-wrapper > img {
    width: 100% !important;
    max-width: 160px !important;
    margin: 0 auto !important;
  }
}
.featured-podcast__image {
  width: 100%;
  max-width: 140px;
  height: auto;
  border-radius: 0px;
  margin-bottom: 1.5rem;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
  margin: 0;
  padding: 0;
}
.featured-podcast__eyebrow {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
.featured-podcast__eyebrow p.featured-mic__button {
  padding: 0;
  margin: 0;
  color: #55A546;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}
.featured-podcast__title {
  color: #212121;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
  margin: 0;
  padding: 0;
  max-width: 800px;
}
.featured-podcast__title > span.episode-label {
  font-weight: 600;
}
@media (max-width: 575px) {
  .featured-podcast__title {
    text-align: left !important;
    padding-right: 0;
  }
}
.featured-podcast__description {
  color: #212121;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  display: flex;
  line-height: 28px;
  padding-right: 120px;
}
.featured-podcast__description p {
  margin: 0 0 1em;
}
.featured-podcast__description p:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .featured-podcast__description {
    text-align: left !important;
    padding-right: 0;
  }
}
.featured-podcast__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.featured-podcast__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0072CF;
  text-decoration: none;
  border-radius: 0px;
  font-weight: 600;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .featured-podcast {
    padding: 1.5rem;
  }
  .featured-podcast__title {
    font-size: 1.5rem;
  }
  .featured-podcast__description {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .featured-podcast {
    padding: 2rem;
  }
}
@media (max-width: 575px) {
  .featured-podcast {
    padding: 1.5rem;
    flex-direction: column;
    align-items: center;
  }
  .featured-podcast__image {
    margin-bottom: 1rem;
    max-width: 100%;
  }
  .featured-podcast__title {
    text-align: center;
    font-size: 1.75rem;
  }
  .featured-podcast__description {
    text-align: center;
    padding-right: 0;
  }
  .featured-podcast .featured-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}

.featured-event {
  width: 100%;
  margin: 0;
  background: white;
  border-radius: 0px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: grid;
  border-bottom: 8px solid #55a546;
  grid-template-columns: 1fr;
}
@media (max-width: 575px) {
  .featured-event {
    border-bottom: 0;
    border-radius: 0px;
    box-shadow: none;
  }
}
@media (min-width: 768px) {
  .featured-event {
    grid-template-columns: 60% 40%;
  }
}
.featured-event__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
@media (min-width: 768px) {
  .featured-event__image img {
    aspect-ratio: unset;
    min-height: 300px;
  }
}
@media (max-width: 767px) {
  .featured-event__image img {
    aspect-ratio: 10/9;
  }
}
@media (max-width: 767px) {
  .featured-event__image {
    order: -1;
  }
}
.featured-event__content {
  padding: 2rem 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .featured-event__content {
    padding: 2rem 20px;
  }
}
.featured-event__title {
  margin: 0 0 1rem;
  color: #333;
  font-size: 32px;
  line-height: 1.3;
}
@media (max-width: 575px) {
  .featured-event__title {
    margin: 0;
    line-height: 32px;
  }
}
.featured-event__meta {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #666;
  font-size: 0.95rem;
}
.featured-event__description {
  margin-bottom: 2rem;
  color: #212121;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  max-width: 491px;
}
.featured-event__description p {
  margin: 0 0 1em;
}
.featured-event__description p:last-child {
  margin-bottom: 0;
}
.featured-event__actions {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.featured-event__button {
  display: inline-block;
  padding: 16px 28px;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 9.783px;
  background: var(--Primary-Blue, #0072CF);
  color: var(--Neutral-White, #FFF);
  font-family: Poppins;
  font-size: 17.609px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}
.featured-event__button:hover {
  background-color: #005d8c;
  transform: translateY(-1px);
}
.featured-event__link {
  color: #0073aa;
  text-decoration: none;
  font-weight: 500;
}
.featured-event__link:hover {
  text-decoration: underline;
}
.featured-event .icon {
  margin-right: 0.5rem;
}

.featured-event--empty {
  text-align: center;
  padding: 2rem;
  color: #666;
}

.map-wrapper {
  position: relative;
  width: 100%;
  min-height: 600px;
}
@media (max-width: 1024px) {
  .map-wrapper {
    min-height: initial;
  }
}
.map-wrapper #map-component {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .map-wrapper #map-component {
    display: none;
  }
}
.map-wrapper #map-component svg {
  height: 100%;
  max-width: 950px;
  width: 100%;
}
.map-wrapper [data-us-state] {
  cursor: pointer;
  transition: fill 0.3s ease;
}
.map-wrapper [data-us-state].state-available {
  fill: #2b71b9;
}
.map-wrapper [data-us-state].state-available:hover {
  fill: #55A546;
}
.map-wrapper [data-us-state].state-available.active {
  fill: #55A546;
}
.map-wrapper [data-us-state].state-unavailable {
  fill: #DCDCDC;
  pointer-events: none;
  cursor: default;
}
.map-wrapper .state-modal {
  width: 100%;
  max-width: 350px;
  background: #ffffff;
  border-top: 4px solid #55A546;
  border-bottom: 4px solid #55A546;
  text-align: center;
  padding: 30px 10px;
  position: absolute;
  z-index: 9999;
}
.map-wrapper .state-modal.hidden {
  display: none;
}
.map-wrapper .state-modal.visible {
  display: block;
}
.map-wrapper .state-modal .state-name {
  color: #0072CF;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.map-wrapper .state-modal .members-logo {
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.map-wrapper .state-modal .members-logo > a {
  max-width: 160px;
}
.map-wrapper .mobile-component {
  display: none;
  width: 100%;
  text-align: center;
}
@media (max-width: 1024px) {
  .map-wrapper .mobile-component {
    display: block;
  }
}
.map-wrapper .mobile-component .header.active {
  background: #ffffff;
}
.map-wrapper .mobile-component .header .state-name {
  color: #0072CF;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.map-wrapper .mobile-component .content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
  background: #ffffff;
  padding: 0;
}
.map-wrapper .mobile-component .content .member-logo {
  flex-shrink: 0;
}
.map-wrapper .mobile-component .content.active {
  padding: 20px;
  height: auto;
}
.map-wrapper .mobile-component .content > a {
  max-width: 160px;
}

.user-login-status {
  color: #333;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.user-login-status > a {
  font-weight: 600;
  line-height: 18px;
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  background: #0072cf;
  color: #fff !important;
  border-radius: 5px;
  max-width: 160px;
  text-decoration: none !important;
  border-width: 0;
  min-width: 130px;
}
.user-login-status > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.user-login-status > .vertical-line {
  width: 1px;
  height: 100%;
  background-color: #ccc;
}
.user-login-status a {
  text-decoration: none;
  color: #0066cc;
}
.user-login-status a:hover {
  text-decoration: underline;
}

.welcome-message-heading {
  font-size: 60px !important;
}
@media (max-width: 768px) {
  .welcome-message-heading {
    font-size: 40px !important;
  }
}
@media (max-width: 480px) {
  .welcome-message-heading {
    font-size: 30px !important;
  }
}

.welcome-message {
  font-weight: 400 !important;
  font-size: 28px !important;
  line-height: 48px;
  margin: 1rem;
}
@media (max-width: 768px) {
  .welcome-message {
    font-size: 18px !important;
  }
}

#map-modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

#map-modal.visible {
  opacity: 1;
  pointer-events: auto;
}

#map-modal.hidden {
  opacity: 0;
  pointer-events: none;
}

img.Wash-State-Tran-logo {
  max-width: 90px;
}
img.POOLPACT-logo, img.WMMIC-logo, img.CVMIC-Logo, img.OTARMA-logo, img.Miami-Valley-logo, img.CIRSA-logo {
  max-width: 110px;
}
img.WARM-logo {
  max-width: 120px;
}

.page-id-24 .video-popup,
.page-id-27 .video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.page-id-24 .video-popup.active,
.page-id-27 .video-popup.active {
  display: flex;
}
.page-id-24 .video-container,
.page-id-27 .video-container {
  position: relative;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
}
.page-id-24 .video-popup video,
.page-id-27 .video-popup video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.page-id-24 .close-btn,
.page-id-27 .close-btn {
  position: absolute;
  top: -30px;
  right: -30px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-id-24 .close-btn:hover,
.page-id-27 .close-btn:hover {
  background: #EA7125;
  color: white;
}
.page-id-24 a.video-link,
.page-id-27 a.video-link {
  font-size: 16px;
  line-height: 25px;
  text-align: center !important;
  font-weight: 700 !important;
  color: #0072cf;
  text-decoration: none;
}

.swiper-slide.post-279 img {
  width: 190px;
}
