/* Click-to-load Google Map facade + nearby-city links.
   The map used to be an eager (lazy-attr) iframe on every city page; a Maps
   iframe pulls >1MB of script and is one of the surest ways to damage LCP/INP.
   Core Web Vitals is a ranking factor, so on a 95k-page surface that cost more
   than the map was worth. The facade is static markup; the iframe is injected
   only when a visitor asks for it. */
.prism-map {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 6px;
    overflow: hidden;
    background: #e8eef3 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23d2dde5' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

.prism-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.prism-map-btn {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #cfdae3;
    background: transparent;
    color: #1c4f7c;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
}

.prism-map-btn:hover,
.prism-map-btn:focus-visible {
    background: rgba(0, 123, 255, .06);
    color: #0056b3;
}

.prism-map-pin {
    font-size: 34px;
    line-height: 1;
}

.prism-nearby {
    margin: 34px 0 10px;
}

.prism-nearby h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.prism-nearby-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.prism-nearby-list li {
    flex: 1 1 260px;
}

.prism-nearby-list a {
    color: #007bff;
    text-decoration: none;
}

.prism-nearby-list a:hover {
    text-decoration: underline;
}
