/* Shared location preview: local SVG, no scripts, tiles or third-party frames. */
.sds-location-card {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    margin: 0;
    align-self: center;
    overflow: hidden;
    border: 1px solid #d8e8ed;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 32px rgb(9 45 60 / 10%);
    color: #103b50;
}
.sds-location-card .sds-location-card__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    margin: 0;
    border: 0;
    background: #edf2e5;
}
.sds-location-card .sds-location-card__caption {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 20px;
    text-align: left;
    font: 400 14px/1.5 system-ui, -apple-system, "Segoe UI", sans-serif;
    color: #536872;
}
.sds-location-card__title {
    color: #103b50;
    font-size: 18px;
    line-height: 1.3;
}
.sds-location-card a.sds-location-card__directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    box-sizing: border-box;
    margin-top: 6px;
    padding: 12px 14px;
    border: 2px solid #0877a3;
    border-radius: 9px;
    background: #0877a3;
    color: #fff;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
}
.sds-location-card a.sds-location-card__directions:hover {
    border-color: #065875;
    background: #065875;
    color: #fff;
}
.sds-location-card a:focus-visible {
    outline: 3px solid #103b50;
    outline-offset: 3px;
}
.sds-location-card__credit {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.5;
}
.sds-location-card__credit a {
    color: #06678e;
    text-decoration: underline;
    text-underline-offset: 2px;
}
@media (max-width: 480px) {
    .sds-location-card .sds-location-card__caption { padding: 18px 16px; }
    .sds-location-card__title { font-size: 17px; }
}
