.communities-map-block {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.communities-map-block .fullscreen-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f0f4f8;
}
.communities-map-block .fullscreen-map svg {
  width: 100%;
  height: 100%;
}
.communities-map-block .fullscreen-map svg path:hover {
  fill: #FFBA00;
}
.communities-map-block .fullscreen-map .map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f4fc;
  color: #2c3e50;
  font-size: 1.5rem;
}
.communities-map-block .location-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.communities-map-block .location-markers .location-marker {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  z-index: 10;
}
.communities-map-block .location-markers .location-marker .marker-dot {
  width: 12px;
  height: 12px;
  background: #e74c3c;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.communities-map-block .location-markers .location-marker.hover .marker-dot {
  transform: scale(1.3);
  background: #3498db;
}
.communities-map-block .location-markers .location-marker.selected .marker-dot {
  transform: scale(1.5);
  background: #2ecc71;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.3);
}
.communities-map-block .location-markers .location-marker .marker-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #2c3e50;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  margin-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 100;
}
.communities-map-block .location-markers .location-marker .marker-tooltip:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #2c3e50;
}
.communities-map-block .location-markers .location-marker .marker-tooltip strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}
.communities-map-block .location-markers .location-marker .marker-tooltip span {
  font-size: 12px;
  opacity: 0.9;
}
.communities-map-block .location-markers .location-marker:hover .marker-tooltip {
  opacity: 1;
  visibility: visible;
}
.communities-map-block .search-panel {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 380px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 8px 32px 0 rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  z-index: 20;
  padding: 33px;
  overflow: hidden;
}
.communities-map-block .search-panel .search-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.communities-map-block .search-panel .search-header h1 {
  color: #1E293B;
  font-family: Antonio;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.communities-map-block .search-panel .search-header p {
  color: #221E1F;
  font-family: Palanquin;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
.communities-map-block .search-panel .search-header .search-box {
  display: inline-block;
  position: relative;
}
.communities-map-block .search-panel .search-header .search-box .search-input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #0044B5;
  background: #FFF;
  color: #9E9E9E;
  font-family: Palanquin;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  padding-right: 40px;
}
.communities-map-block .search-panel .search-header .search-box .search-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.5);
}
.communities-map-block .search-panel .search-header .search-box .search-input::-moz-placeholder {
  color: #95a5a6;
}
.communities-map-block .search-panel .search-header .search-box .search-input::placeholder {
  color: #95a5a6;
}
.communities-map-block .search-panel .search-header .search-box .search-btn {
  padding: 15px 30px;
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.communities-map-block .search-panel .search-header .search-box .search-btn:hover {
  background: #c0392b;
}
.communities-map-block .search-panel .search-header .search-box .icon-right {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
}
.communities-map-block .search-results {
  max-height: 400px;
  overflow-y: auto;
}
.communities-map-block .search-results .results-list {
  padding: 0;
}
.communities-map-block .search-results .result-item {
  padding: 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.3s ease;
  background: #8e97ef;
}
.communities-map-block .search-results .result-item:hover {
  background: #FFBA00;
}
.communities-map-block .search-results .result-item:last-child {
  border-bottom: none;
}
.communities-map-block .search-results .result-item strong {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  color: #ffffff;
  font-family: Antonio;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.communities-map-block .search-results .result-item .zip-code {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
}
.communities-map-block .search-results .result-item .region {
  font-size: 14px;
  color: #7f8c8d;
}
.communities-map-block .search-results .no-results {
  padding: 30px 20px;
  text-align: center;
  color: #95a5a6;
  font-style: italic;
}
.communities-map-block .details-panel {
  position: absolute;
  top: 40px;
  right: -500px;
  width: 450px;
  height: calc(100vh - 80px);
  background: white;
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.15);
  z-index: 30;
  transition: right 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  overflow: hidden;
}
.communities-map-block .details-panel.active {
  right: 0;
}
.communities-map-block .details-panel .close-panel {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: #0044b5;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 32px;
  cursor: pointer;
  z-index: 40;
  transition: background 0.3s ease;
}
.communities-map-block .details-panel .close-panel:hover {
  background: #0044b5;
}
.communities-map-block .details-panel .panel-content {
  height: 100%;
  overflow-y: auto;
  padding: 0;
  margin: 0;
}
.communities-map-block .details-panel .panel-content .region-header {
  background-position: bottom center;
  padding: 65px 24px 24px 24px;
  position: relative;
}
.communities-map-block .details-panel .panel-content .region-header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #1053D4 0%, rgba(16, 83, 212, 0.8) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}
.communities-map-block .details-panel .panel-content .region-header .region-subtitle {
  position: relative;
  z-index: 99;
}
.communities-map-block .details-panel .panel-content .region-header .region-subtitle h1 {
  color: #FFF;
  font-family: Antonio;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.communities-map-block .details-panel .panel-content .region-header .region-subtitle h2 {
  color: #FFF;
  font-family: Palanquin;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.14px;
  margin: 0;
  padding: 0;
  text-align: left;
}
.communities-map-block .details-panel .panel-content .region-header .region-subtitle img.frame-number {
  position: absolute;
  right: 30px;
  top: 20px;
}
.communities-map-block .details-panel .panel-content .location-description {
  padding: 24px;
  margin: 0;
}
.communities-map-block .details-panel .panel-content .location-description p {
  padding: 0;
  margin: 0;
}
.communities-map-block .details-panel .panel-content .location-description .cta-section {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}
.communities-map-block .details-panel .panel-content .location-description .cta-section .learn-more-btn {
  border-style: solid;
  border-width: 2px;
  border-color: #0044b5;
  width: 100%;
  border-radius: 100px;
  text-decoration: none;
  color: #0044B5;
  text-align: center;
  font-family: Palanquin;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1px;
  padding: 10px 0;
  text-transform: uppercase;
}
.communities-map-block .details-panel .panel-content .location-description .cta-section .learn-more-btn:hover {
  background: #0044b5;
  color: white;
}
.communities-map-block .details-panel .panel-content .impact-story-section {
  padding: 24px;
  margin: 24px;
  border-radius: 8px;
  background: #0044B5;
}
.communities-map-block .details-panel .panel-content .impact-story-section h3 {
  color: #FFF;
  font-family: Palanquin;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
  padding: 0;
}
.communities-map-block .details-panel .panel-content .impact-story-section p {
  color: #DBEAFE;
  font-family: Palanquin;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.14px;
}
.communities-map-block .details-panel .panel-content .impact-story-section .read-story-cta {
  padding: 8px 0;
}
.communities-map-block .details-panel .panel-content .impact-story-section .read-story-cta .read-story {
  border-style: solid;
  border-width: 2px;
  border-color: #ffffff;
  text-decoration: none;
  padding: 8px 24px;
  text-transform: uppercase;
  color: #FFF;
  text-align: center;
  font-family: Palanquin;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1px;
  border-radius: 40px;
  border: 1px solid #FFF;
}
.communities-map-block .details-panel .panel-content .impact-story-section .read-story-cta .read-story:hover {
  background: #ffffff;
  color: #0044b5;
}
.communities-map-block .details-panel .panel-content .local-contact-heading-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.communities-map-block .details-panel .panel-content .local-contact-heading-wrapper h3 {
  color: #0044B5;
  font-family: Palanquin;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.14px;
  margin: 0;
  padding: 0;
}
.communities-map-block .details-panel .panel-content .contact-section {
  margin: 0;
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
}
.communities-map-block .details-panel .panel-content .contact-section .contact-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.communities-map-block .details-panel .panel-content .contact-section .contact-info .contact-profile {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.communities-map-block .details-panel .panel-content .contact-section .contact-info .contact-profile .contact-headshot {
  height: 60px;
  width: 60px;
  background-size: cover;
  border-radius: 100px;
  background-position: center center;
  background-repeat: no-repeat;
}
.communities-map-block .details-panel .panel-content .contact-section .contact-info .contact-profile .contact-profile-details h3 {
  color: #0044B5;
  font-family: Palanquin;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
  padding: 0;
}
.communities-map-block .details-panel .panel-content .contact-section .contact-info .contact-profile .contact-profile-details .contact-phone {
  margin: 0;
  color: #221E1F;
  font-family: Palanquin;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.14px;
}
.communities-map-block .details-panel .panel-content .contact-section .contact-info .contact-phone-email-section {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.communities-map-block .details-panel .panel-content .contact-section .contact-info .contact-phone-email-section > a {
  text-decoration: none;
  color: inherit;
}
.communities-map-block .details-panel .panel-content .cities-section {
  margin: 0;
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
}
.communities-map-block .details-panel .panel-content .cities-section .cities-heading-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.communities-map-block .details-panel .panel-content .cities-section .cities-heading-wrapper h3 {
  color: #0044B5;
  font-family: Palanquin;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.14px;
  margin: 0;
  padding: 0;
}
.communities-map-block .details-panel .panel-content .cities-section .cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 15px 0;
  color: #221E1F;
  font-family: Palanquin;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.14px;
}
.communities-map-block .details-panel .panel-content .cities-served {
  margin: 25px 0;
}
.communities-map-block .details-panel .panel-content .cities-served h4 {
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}
.communities-map-block .details-panel .panel-content .cities-served p {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}
.communities-map-block .details-panel .panel-content .action-buttons {
  display: flex;
  gap: 8px;
  margin-top: 0;
  padding: 24px;
  align-items: center;
  flex-direction: row;
}
.communities-map-block .details-panel .panel-content .action-buttons .action-btn {
  flex: 1;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.communities-map-block .details-panel .panel-content .action-buttons .action-btn.volunteer-btn {
  border-style: solid;
  border-width: 2px;
  border-color: #0044b5;
  width: 100%;
  text-decoration: none;
  color: #0044B5;
  text-align: center;
  font-family: Palanquin;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 16px;
  text-transform: uppercase;
  border-radius: 40px;
  border: 1px solid var(--Primary-Blue-500---Brand, #0044B5);
}
.communities-map-block .details-panel .panel-content .action-buttons .action-btn.volunteer-btn:hover {
  background: #0044b5;
  color: white;
}
.communities-map-block .details-panel .panel-content .action-buttons .action-btn.donate-btn {
  border-style: solid;
  border-width: 2px;
  border-color: #0044b5;
  width: 100%;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  font-family: Palanquin;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 16px;
  text-transform: uppercase;
  border-radius: 40px;
  border: 1px solid var(--Primary-Blue-500---Brand, #0044B5);
  background: #0044b5;
}
.communities-map-block .details-panel .panel-content .action-buttons .action-btn.donate-btn:hover {
  background: #fff;
  color: #0044b5;
}

@media (max-width: 1024px) {
  .communities-map-block .search-panel {
    width: 350px;
    left: 20px;
    top: 20px;
  }
  .communities-map-block .search-panel .search-header {
    padding: 20px;
  }
  .communities-map-block .search-panel .search-header h1 {
    font-size: 24px;
  }
  .communities-map-block .details-panel {
    width: 400px;
    height: calc(100vh - 40px);
    top: 20px;
  }
}
@media (max-width: 768px) {
  .communities-map-block {
    height: 100vh;
  }
  .communities-map-block .fullscreen-map {
    position: relative;
    top: 25%;
  }
  .communities-map-block .search-panel {
    width: calc(100% - 40px);
    left: 20px;
    top: 20px;
  }
  .communities-map-block .search-panel .search-header .search-box {
    flex-direction: column;
  }
  .communities-map-block .search-panel .search-header .search-box .search-btn {
    width: 100%;
  }
  .communities-map-block .details-panel {
    width: 100%;
    height: 60vh;
    top: auto;
    bottom: 0;
    right: 0;
    border-radius: 12px 12px 0 0;
    transform: translateY(100%);
  }
  .communities-map-block .details-panel.active {
    transform: translateY(0);
  }
}
.region-marker {
  cursor: pointer;
  transition: all 0.3s ease;
}
.region-marker:hover {
  opacity: 0.8;
  stroke-width: 3px;
}
.region-marker.selected {
  fill: #FFBA00 !important;
  stroke-width: 4px;
  stroke: #ffffff;
}

.cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0;
}
.cities-list .city-item {
  background: #f8f9fa;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cities-list .city-item:hover {
  background: #3498db;
  color: white;
}
.cities-list .city-item:hover .city-zip {
  color: rgba(255, 255, 255, 0.9);
}
.cities-list .city-item .city-name {
  font-weight: 600;
  margin-right: 8px;
}
.cities-list .city-item .city-zip {
  font-size: 12px;
  color: #7f8c8d;
}

.now-guw-message-wrapper {
  padding: 38px;
  margin-top: 28px;
}
.now-guw-message-wrapper h4 {
  color: #1E293B;
  font-family: Antonio;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.now-guw-message-wrapper p {
  color: #221E1F;
  font-family: Palanquin;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
