/* Navigation related breakpoints */
/* Grid related breakpoints */
.map-home {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 3fr;
  grid-template-rows: 2fr 5fr;
  gap: 0;
  padding-block: 3.125rem;
  width: min(100%, 56.25rem);
  margin-inline: auto;
  aspect-ratio: 8/7;
}
@media (width > 37.5rem) {
  .map-home {
    min-height: 31.25rem;
    aspect-ratio: revert;
  }
}
@media (43.75rem < width < 56.25rem) {
  .map-home {
    grid-template-columns: 3fr 1fr;
    grid-template-rows: auto auto;
    gap: 2.5rem;
    row-gap: 0;
  }
}
@media (width > 56.25rem) {
  .map-home {
    grid-template-columns: 4fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 2.5rem;
  }
}

.map-home__image {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  translate: -50% 0;
  width: min(33.75rem, 100%);
  pointer-events: none;
}
@media (width > 43.75rem) {
  .map-home__image {
    left: 30%;
  }
}

.map-home__badge {
  position: absolute;
  background: var(--color--yellow);
  color: var(--color--green-dark);
  padding: 0.4375rem 0.9375rem;
  border-radius: 0.625rem;
  text-decoration: none;
  font-size: 1rem;
  filter: drop-shadow(0 0 0.1875rem color-mix(in srgb, transparent, var(--color--green-dark)));
  z-index: 5;
}
@media (width > 34.375rem) {
  .map-home__badge {
    font-size: 1.25rem;
  }
}
.map-home__badge:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: solid 10px var(--color--yellow);
}
.map-home__badge:focus-visible {
  outline: solid 2px var(--color--yellow);
  outline-offset: 4px;
}

.map-home__badge--st-aug {
  right: 0;
  top: 10%;
}
.map-home__badge--st-aug:after {
  top: 100%;
  left: 48%;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom: 0;
}
@media (width > 34.375rem) {
  .map-home__badge--st-aug {
    right: auto;
    left: 61%;
    top: 11%;
  }
  .map-home__badge--st-aug:after {
    left: 48%;
  }
}
@media (width > 43.75rem) {
  .map-home__badge--st-aug {
    left: 44%;
    top: 13%;
  }
  .map-home__badge--st-aug:after {
    left: 22%;
  }
}
@media (width > 56.25rem) {
  .map-home__badge--st-aug {
    left: 41%;
    top: 11%;
  }
}

.map-home__badge--gainesville {
  left: 30%;
  top: 28%;
}
.map-home__badge--gainesville:after {
  top: 100%;
  left: 80%;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom: 0;
}
@media (width > 34.375rem) {
  .map-home__badge--gainesville {
    left: 38%;
    top: 24%;
  }
}
@media (width > 43.75rem) {
  .map-home__badge--gainesville {
    left: 26%;
    top: 22%;
  }
}

.map-home__badge--palm-coast {
  left: 45%;
  top: 53%;
}
.map-home__badge--palm-coast:after {
  bottom: 100%;
  left: 78%;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top: 0;
}
@media (width > 34.375rem) {
  .map-home__badge--palm-coast {
    left: 64%;
    top: 38%;
  }
  .map-home__badge--palm-coast:after {
    left: 48%;
  }
}
@media (width > 43.75rem) {
  .map-home__badge--palm-coast {
    left: 43%;
    top: 36%;
  }
  .map-home__badge--palm-coast:after {
    left: 43%;
  }
}
@media (width > 56.25rem) {
  .map-home__badge--palm-coast {
    left: 40%;
    top: 37%;
  }
}

@media (width > 43.75rem) {
  .map-home__link {
    text-decoration: none;
  }
}

.map-home__link--gainesville {
  grid-column: 1;
  grid-row: span 2;
}

.map-home__link--st-augustine {
  grid-column: 2;
  margin-bottom: 2.5rem;
}

.map-home__link--palm-coast {
  grid-row: 2;
  grid-column: 2;
}
@media (width > 56.25rem) {
  .map-home__link--palm-coast {
    grid-row: 1;
    grid-column: 3;
  }
}

.map-home__location {
  position: relative;
}
@media (max-width: 43.75rem) {
  .map-home__location {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    word-wrap: normal;
  }
}

.map-home__location--gainesville {
  margin-top: 7.5rem;
  margin-left: 3.125rem;
}

@media (width > 56.25rem) {
  .map-home__location--st-aug,
.map-home__location--palm-coast {
    margin-top: 3.125rem;
  }
}

.map-home__location-title {
  margin-bottom: var(--sp1);
  border-bottom: solid 1px currentColor;
  width: max-content;
}

.map-home__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
}
.map-home__list li {
  margin-bottom: 0.3125rem;
}