.map-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%
}

.map-wrapper svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, .2));
    opacity: 0;
    animation: 1s forwards mapEntry
}

@keyframes mapEntry {
    to {
        opacity: 1
    }
}

.state {
    stroke: #fff;
    stroke-width: .5;
    transition: transform .3s, fill .3s, filter .3s;
    transform-origin: center;
    transform-box: fill-box;
    cursor: pointer
}

.state.inactive {
    fill: #000;
    pointer-events: none
}

.state.active {
    fill: #E8B42F
}

.state.active:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px #986d00e6)
}

.state-name {
    font-weight: 600;
    fill: white;
    text-anchor: middle;
    pointer-events: none;
    paint-order: stroke;
    stroke: rgba(0, 0, 0, 0.7);
    stroke-width: 2px;
    opacity: 1;
    font-size: 10px
}

.heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    border-bottom: 2px solid #333
}

.map-container {
    display: flex;
    background: linear-gradient(120deg, #ebebeb, #e7e7e7, #ebebeb);
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
    gap: 20px;
    user-select: none
}

@media (max-width:600px) {
    .heading {
        font-size: 1.2rem
    }
}
#stateListSection {
  display: none;
  margin-top: 0px;
  text-align: center;
  padding-bottom: 20px;
}
.stateListTitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 25px;
  letter-spacing: 1px;
}
#stateList {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px 15px;
  padding: 0 20px;
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  text-align: left;
}
#stateList li {
  position: relative;
  font-weight: 600;
  font-size: 1rem;
  padding-left: 15px;
  color: #222;
}
#stateList li::before {
  content: "•";
  color: #E8B42F;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  #usmap .state-name {
    display: none !important;
  }

  #usmap .state.active {
    pointer-events: none;
  }

  #stateListSection {
    display: block;
  }

  #stateList {
    grid-template-columns: repeat(3, 1fr);
    max-width: 700px;
  }
}
@media (max-width: 600px) {
  #stateList {
    grid-template-columns: repeat(3, 1fr);
    max-width: 500px;
  }

  #stateList li {
    font-size: 0.95rem;
  }
}
