.PropertyList--item {
  margin-top: var(--space-sm);
}
.PropertyList--item {
  font-weight: 300;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.PropertyList--item .PropertyList--link {
  text-decoration: none;
  color: var(--color-contrast-dark);
  transition: all .3s;
}
.PropertyList--item .PropertyList--link:hover {
  color: var(--color-accent-darker);
}
.PropertyList--item .PropertyList--name {
  font-weight: 500;
  font-size: var(--text-sm);
  font-family: var(--font-secondary);
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-primary-darker);
}
.PropertyList--item .PropertyList--link .PropertyList--name {
  color: var(--color-primary);
  transition: all .3s;
  font-size: var(--text-md);
}
.PropertyList--item .PropertyList--link:hover .PropertyList--name {
  color: var(--color-accent-darker);
}
/* AltMap CSS - Fixed Pin Structure */
.AltMap .Map--stage {
  position: relative;
  /* push map offscreen  to hide East Coast */
  transform: translate(10%, 0);
  width: 120%;
}

.AltMap .Map--graphic {
  width: 100%;
  height: auto;
}

@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .AltMap .Map--graphic {
    height: 0;
    padding-bottom: 54.845%;
    overflow: visible;
  }
}

/* .AltMap .Map--state {
  fill: #f7f7f7;
  stroke-width: 3px;
  stroke: #fff;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.AltMap .Map--state-active {
  fill: var(--color-accent-light);
}

.a-grayBackground .AltMap .Map--state {
  fill: #f9f9f9;
  stroke: #f2f2f2;
}

.a-grayBackground .AltMap .Map--state-active {
  fill: #fff;
}

.AltMap .Map--state-active.is-shown,
.AltMap .Map--state-active:focus,
.AltMap .Map--state-active:hover {
  fill: var(--color-accent-dark);
} */

.AltMap .Map--canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Pin Styles - Fixed to match working version */
.AltMap .Pin {
  position: absolute;
  opacity: 0.4;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.AltMap .Pin--graphic {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: currentColor;
  color: #00379e;
  -webkit-transform: translate(-50%, -1rem);
  transform: translate(-50%, -1rem);
}

.AltMap .Pin--graphic:after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.0625rem;
  border-color: currentColor transparent;
  border-style: solid;
  border-width: 0.5rem 0.25rem 0;
}

/* Case Study Pins */
.AltMap .Pin-caseStudy .Pin--graphic {
  width: 0.25rem;
  height: 0.25rem;
  border: 0.1875rem solid currentColor;
  background-color: transparent;
  color: #ff5229;
  -webkit-transform: translate(-50%, -1.375rem) rotate(30deg);
  transform: translate(-50%, -1.375rem) rotate(30deg);
  -webkit-transform-origin: 50% calc(100% + 0.75rem);
  transform-origin: 50% calc(100% + 0.75rem);
}

.AltMap .Pin-caseStudy .Pin--graphic:after {
  top: 0.375rem;
  left: 0;
  border-width: 0.875rem 0.125rem 0;
}

/* Sold Property Pins */
.AltMap .Pin-sold .Pin--graphic {
  width: 0.375rem;
  height: 0.375rem;
  background-color: currentColor;
  color: #8d8d8d;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.AltMap .Pin-sold .Pin--graphic:after {
  display: none;
}

/* Mix Blend Mode Support */
@supports (mix-blend-mode: multiply) {
  .AltMap .Pin {
    mix-blend-mode: multiply;
    opacity: 1;
  }
  
  .AltMap .Pin--graphic {
    color: #00379e;
  }
  
  .AltMap .Pin-sold .Pin--graphic {
    color: #e0e0e0;
  }
}

/* Map Link Groups */
.AltMap .Map--linkGroup {
  position: absolute;
  z-index: 100;
  max-width: 0;
  max-height: 0;
  border: 0 solid transparent;
  overflow: hidden;
  background-color: #f2f2f2;
  opacity: 0;
  list-style: none;
  font-weight: 700;
  font-size: 0.8125rem;
  pointer-events: none;
  -webkit-transition: all 0s ease 0.75s, opacity 0.5s ease;
  transition: all 0s ease 0.75s, opacity 0.5s ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.AltMap .Map--linkGroup:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1.25rem);
  right: 100%;
  width: 0;
  height: 0;
  border: 1.25rem solid transparent;
  border-left: 0;
  border-right-color: #fff;
}

.AltMap .Map--linkGroup.is-shown {
  max-width: 50em;
  max-height: 50em;
  padding: 0.625rem;
  border: 0.625rem solid #fff;
  -webkit-box-shadow: 0 0 1.25rem -0.3125rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1.25rem -0.3125rem rgba(0, 0, 0, 0.2);
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.AltMap .Map--link {
  display: block;
  position: relative;
  padding: 0.5em 0.5em 0.5em 1.5em;
}

.AltMap .Map--link:focus,
.AltMap .Map--link:hover {
  color: #052437 !important;
}

.AltMap .Map--linkItem-activeProperty .Map--link {
  color: #5fa3d1;
}

.AltMap .Map--linkItem-caseStudy .Map--link {
  color: #db4420;
}

.AltMap .Map--linkItem-sold .Map--link {
  color: #8d8d8d;
}

.AltMap .Map--link .Pin {
  top: 1.0625rem;
  left: 0.5rem;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

.AltMap .Map--link .Pin-caseStudy {
  left: 0.3125rem;
}

.AltMap .Map--link .Pin-sold {
  top: 1em;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
}

.AltMap .Map--link:focus .Pin--graphic,
.AltMap .Map--link:hover .Pin--graphic {
  color: inherit;
}

.AltMap .Map--linkCity {
  display: block;
  font-weight: 400;
}

/* Media Queries */
@media (min-width: 41em) {
  .AltMap .Map--state {
    stroke-width: 1.5px;
  }
}

@media (min-width: 50em) {
  .AltMap .Pin--graphic {
    width: 1rem;
    height: 1rem;
    -webkit-transform: translate(-50%, -1.5625rem);
    transform: translate(-50%, -1.5625rem);
  }
  
  .AltMap .Pin--graphic:after {
    top: 0.75rem;
    left: 0.0625rem;
    border-width: 0.8125rem 0.4375rem 0;
  }
  
  .AltMap .Pin-caseStudy .Pin--graphic {
    width: 0.375rem;
    height: 0.375rem;
    border-width: 0.25rem;
    -webkit-transform: translate(-50%, -1.875rem) rotate(30deg);
    transform: translate(-50%, -1.875rem) rotate(30deg);
    -webkit-transform-origin: 50% calc(100% + 1.125rem);
    transform-origin: 50% calc(100% + 1.125rem);
  }
  
  .AltMap .Pin-caseStudy .Pin--graphic:after {
    top: 0.5rem;
    left: 0.0625rem;
    border-top-width: 1.25rem;
  }
  
  .AltMap .Pin-sold .Pin--graphic {
    width: 0.5rem;
    height: 0.5rem;
  }
  
  .AltMap .Map--link .Pin {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  
  .AltMap .Map--link .Pin-sold {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
}

@media (min-width: 62.5em) {
  .AltMap .Pin-sold .Pin--graphic {
    width: 0.625rem;
    height: 0.625rem;
  }
}

@media (min-width: 81.25em) {
  .AltMap .Pin-sold .Pin--graphic {
    width: 0.75rem;
    height: 0.75rem;
  }
}