.county-map .county {
    fill: #e6e6e6;
    stroke: #fff;
    stroke-width: 1;
    transition: fill 0.2s ease;
}

.county-map .county.is-active {
    fill: var(--pacewi-green);
    cursor: pointer;
}

.county-map .county.is-highlighted {
    fill: var(--pacewi-btn-hover-color);
}

.county-map-list {
    width: fit-content;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 0 5rem;
}

.county-map-list-item a {
    color: var(--pacewi-btn-color);
}

.county-map-list-item a:hover,
.county-map-list-item a:focus
 {
    color: var(--pacewi-btn-hover-color);
}

.county-map-list-item.is-highlighted a {
    text-decoration: underline;
    color: var(--pacewi-btn-hover-color);
}

.county-map-label {
    fill: #fff;
    font-weight: 600;
    pointer-events: none;
}

.county-map-content {
    flex: 1 1 50%;
}

.county-map-graphic {
    flex: 1 1 50%;
    min-width: 0;
}

.county-map-graphic svg {
    display: block;
    width: 100%;
    height: auto;
}