/* Street View на странице ЖК — mm-cx-sv.v1 (2026-08-01) */
.mm-sv-block {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 44px) clamp(18px, 4vw, 64px) 0;
}
.mm-sv-block h2 { margin: 4px 0 6px; }
.mm-sv-lead {
    margin: 0 0 14px;
    color: var(--mm-muted, #6d7169);
    font-size: 15px;
    line-height: 1.5;
}
.mm-sv-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #eee7dc;
    border: 1px solid var(--mm-line, #e3ded2);
}
.mm-sv-embed iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.mm-sv-embed::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(0,0,0,.02) 0 12px, rgba(0,0,0,.045) 12px 24px);
    pointer-events: none;
    opacity: 1;
    transition: opacity .3s;
}
.mm-sv-embed.is-loaded::after { opacity: 0; }

/* Заглушка-карточка, когда embed-ключ не задан. */
.mm-sv-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 210px;
    border-radius: 14px;
    border: 1px solid var(--mm-line, #e3ded2);
    background: linear-gradient(135deg, #f4f1e8 0%, #e9e3d5 100%);
    text-decoration: none;
    color: var(--mm-ink, #20241f);
    text-align: center;
    padding: 24px;
}
.mm-sv-card:hover { border-color: #c9c0ab; }
.mm-sv-card-ico {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #20241f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 600 15px/1 Inter, sans-serif;
    letter-spacing: .02em;
}
.mm-sv-card-t { font: 600 18px/1.35 Inter, sans-serif; max-width: 30ch; }
.mm-sv-card-s { font-size: 14px; color: var(--mm-muted, #6d7169); }
.mm-sv-note {
    margin: 10px 0 0;
    font-size: 13px;
    color: var(--mm-muted, #6d7169);
}
.mm-sv-note a { color: inherit; text-decoration: underline; }
@media (max-width: 700px) {
    .mm-sv-embed { aspect-ratio: 4 / 3; border-radius: 12px; }
    .mm-sv-card { border-radius: 12px; min-height: 180px; }
    .mm-sv-card-t { font-size: 16px; }
}

/* --- v2: переключатель точек обзора --- */
.mm-sv-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
}
.mm-sv-tab {
    appearance: none;
    border: 1px solid var(--mm-line, #e3ded2);
    background: #fbf9f4;
    color: var(--mm-ink, #20241f);
    font: 500 14px/1 Inter, system-ui, sans-serif;
    padding: 9px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: background .18s, border-color .18s, color .18s;
}
.mm-sv-tab:hover { border-color: #c9c0ab; background: #f4f1e8; }
.mm-sv-tab.is-on {
    background: #20241f;
    border-color: #20241f;
    color: #fff;
}
.mm-sv-tab:focus-visible { outline: 2px solid #8a7a4e; outline-offset: 2px; }
.mm-sv-embed iframe.mm-sv-if { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 700px) {
    .mm-sv-tabs { gap: 6px; }
    .mm-sv-tab { padding: 8px 12px; font-size: 13px; }
}
