:root {
    --map-copper: #e07a45;
    --map-copper-dark: #9d4528;
    --map-copper-light: #fff1e8;
    --map-ink: #26303b;
    --map-muted: #758191;
    --map-line: #dde4ea;
    --map-surface: #ffffff;
}

.industry-map {
    margin-bottom: 52px;
    border: 1px solid rgba(224, 122, 69, .16);
    border-radius: 18px;
    background: var(--map-surface);
    box-shadow: 0 14px 45px rgba(38, 48, 59, .09);
    overflow: hidden;
}

.industry-map__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    padding: 26px 30px 22px;
    background:
        radial-gradient(circle at 92% -40%, rgba(224, 122, 69, .22), transparent 44%),
        linear-gradient(115deg, #fff 0%, #fffaf7 100%);
}

.industry-map__eyebrow,
.industry-map-results__eyebrow {
    margin-bottom: 6px;
    color: var(--map-copper);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.industry-map__title {
    margin: 0;
    color: var(--map-ink);
    font-size: clamp(25px, 2.25vw, 36px);
    font-weight: 600;
    line-height: 1.12;
}

.industry-map__subtitle {
    max-width: 700px;
    margin: 9px 0 0;
    color: var(--map-muted);
    font-size: 14px;
}

.industry-map__summary {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.industry-map__summary div {
    min-width: 94px;
    padding: 12px 14px;
    border: 1px solid rgba(224, 122, 69, .2);
    border-radius: 12px;
    background: rgba(255, 255, 255, .78);
}

.industry-map__summary strong,
.industry-map__summary span {
    display: block;
}

.industry-map__summary strong {
    color: var(--map-copper-dark);
    font-size: 21px;
    line-height: 1;
}

.industry-map__summary span {
    margin-top: 5px;
    color: var(--map-muted);
    font-size: 11px;
}

.industry-map__toolbar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-top: 1px solid var(--map-line);
    border-bottom: 1px solid var(--map-line);
    background: #fff;
}

.industry-map__toolbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.industry-map-search {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}

.industry-map-search > svg {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--map-copper);
    stroke-linecap: round;
    stroke-width: 2;
    pointer-events: none;
}

.industry-map-search input {
    width: 100%;
    height: 42px;
    padding: 0 42px;
    border: 1px solid var(--map-line);
    border-radius: 11px;
    background: #f8fafb;
    color: var(--map-ink);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.industry-map-search input:focus {
    border-color: var(--map-copper);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(224, 122, 69, .14);
}

.industry-map-search button {
    position: absolute;
    right: 7px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--map-muted);
    font-size: 22px;
}

.industry-map-layers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.industry-map-layers label {
    cursor: pointer;
}

.industry-map-layers input,
.industry-map-filter input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.industry-map-layers span {
    display: block;
    padding: 9px 12px;
    border: 1px solid var(--map-line);
    border-radius: 10px;
    color: var(--map-muted);
    font-size: 13px;
    line-height: 1;
    transition: .2s;
}

.industry-map-layers input:checked + span {
    border-color: rgba(224, 122, 69, .38);
    background: var(--map-copper-light);
    color: var(--map-copper-dark);
    box-shadow: inset 0 0 0 1px rgba(224, 122, 69, .06);
}

.industry-map__route-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(224, 122, 69, .38);
    border-radius: 10px;
    background: #fff7f1;
    color: var(--map-copper-dark);
    font-size: 13px;
    font-weight: 600;
}

.industry-map__route-toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.industry-map__route-toggle[aria-expanded='true'] {
    border-color: var(--map-copper);
    background: var(--map-copper);
    color: #fff;
}

.industry-map__filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 42px;
    padding: 0 13px;
    border: 0;
    border-radius: 10px;
    background: var(--map-ink);
    color: #fff;
    font-size: 13px;
}

.industry-map__filter-toggle svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2;
}

.industry-map__filter-toggle span {
    display: inline-grid;
    place-items: center;
    min-width: 21px;
    height: 21px;
    padding: 0 5px;
    border-radius: 20px;
    background: var(--map-copper);
    font-size: 11px;
}

.industry-map__stage {
    position: relative;
    height: 650px;
    background: #e7ebee;
    overflow: hidden;
}

.industry-map__canvas {
    width: 100%;
    height: 100%;
}

.industry-map__canvas ymaps[class*='ground-pane'] {
    filter: none !important;
}

.industry-map__canvas ymaps[class*='balloon_layout'],
.industry-map__canvas ymaps[class*='balloon__layout'],
.industry-map__canvas ymaps[class*='balloon__content'] {
    border-radius: 14px !important;
}

.industry-map__loading {
    position: absolute;
    inset: 0;
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(135deg, #f6f1ed, #e6ecef);
    color: var(--map-ink);
    transition: opacity .3s, visibility .3s;
}

.industry-map__loading.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.industry-map__loading span {
    width: 34px;
    height: 34px;
    border: 3px solid rgba(224, 122, 69, .24);
    border-top-color: var(--map-copper);
    border-radius: 50%;
    animation: industryMapSpin .8s linear infinite;
}

@keyframes industryMapSpin { to { transform: rotate(360deg); } }

.industry-map-route {
    position: absolute;
    z-index: 6;
    top: 16px;
    left: 16px;
    width: 370px;
    max-height: calc(100% - 32px);
    border: 1px solid rgba(224, 122, 69, .22);
    border-radius: 15px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 18px 42px rgba(38, 48, 59, .2);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    transform: translateX(-20px);
    transition: opacity .22s, transform .22s, visibility .22s;
}

.industry-map-route.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.industry-map-route [hidden] { display: none !important; }

.industry-map-route__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 17px 18px 13px;
    border-bottom: 1px solid var(--map-line);
}

.industry-map-route__head strong,
.industry-map-route__head span { display: block; }
.industry-map-route__head strong { color: var(--map-ink); font-size: 16px; }
.industry-map-route__head span { margin-top: 3px; color: var(--map-muted); font-size: 11px; }

.industry-map-route__head button {
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: var(--map-muted);
    font-size: 24px;
    line-height: 1;
}

.industry-map-route__body {
    position: relative;
    padding: 15px 17px 17px;
}

.industry-map-route__point {
    position: relative;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.industry-map-route__point + .industry-map-route__point { margin-top: 10px; }

.industry-map-route__point label,
.industry-map-route__point label > span { display: block; }
.industry-map-route__point label > span { margin-bottom: 5px; color: var(--map-muted); font-size: 10px; font-weight: 600; text-transform: uppercase; }

.industry-map-route__point input,
.industry-map-route__point select {
    width: 100%;
    height: 42px;
    padding: 0 11px;
    border: 1px solid var(--map-line);
    border-radius: 9px;
    background: #f8fafb;
    color: var(--map-ink);
    font-size: 12px;
    outline: none;
}

.industry-map-route__point input:focus,
.industry-map-route__point select:focus {
    border-color: var(--map-copper);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(224, 122, 69, .13);
}

.industry-map-route__dot {
    position: relative;
    width: 12px;
    height: 12px;
    border: 3px solid var(--map-copper);
    border-radius: 50%;
}

.industry-map-route__point.is-finish .industry-map-route__dot {
    border-color: var(--map-ink);
    border-radius: 3px;
}

.industry-map-route__point.is-start::after {
    position: absolute;
    top: 31px;
    left: 5px;
    width: 2px;
    height: 42px;
    background: repeating-linear-gradient(to bottom, #c6cdd3 0 4px, transparent 4px 8px);
    content: '';
}

.industry-map-route__swap {
    display: block;
    width: 28px;
    height: 28px;
    margin: 3px 0 3px 1px;
    border: 1px solid var(--map-line);
    border-radius: 8px;
    background: #fff;
    color: var(--map-copper-dark);
    font-size: 16px;
    line-height: 1;
}

.industry-map-route__note {
    margin: 11px 0 0 28px;
    color: var(--map-muted);
    font-size: 10px;
    line-height: 1.4;
}

.industry-map-route__calculate {
    width: 100%;
    margin-top: 14px;
    padding: 11px 15px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0a080, #d06f3d);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 7px 17px rgba(192, 82, 44, .25);
}

.industry-map-route__calculate:disabled { cursor: wait; opacity: .62; }

.industry-map-route__status {
    margin-top: 11px;
    color: var(--map-muted);
    font-size: 11px;
    line-height: 1.35;
}

.industry-map-route__status.is-error { color: #b33f34; }
.industry-map-route__status.is-loading { color: var(--map-copper-dark); }

.industry-map-route__summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.industry-map-route__summary div {
    padding: 11px 12px;
    border: 1px solid rgba(224, 122, 69, .2);
    border-radius: 10px;
    background: #fff8f3;
}

.industry-map-route__summary strong,
.industry-map-route__summary span { display: block; }
.industry-map-route__summary strong { color: var(--map-copper-dark); font-size: 17px; }
.industry-map-route__summary span { margin-top: 2px; color: var(--map-muted); font-size: 9px; text-transform: uppercase; }

.industry-map-route__external {
    display: inline-block;
    margin-top: 12px;
    color: var(--map-copper-dark);
    font-size: 11px;
    font-weight: 600;
}

.industry-map-filter {
    position: absolute;
    z-index: 5;
    top: 72px;
    right: 16px;
    display: flex;
    flex-direction: column;
    width: 330px;
    max-height: calc(100% - 88px);
    border: 1px solid rgba(224, 122, 69, .2);
    border-radius: 15px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 42px rgba(38, 48, 59, .2);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: translateX(20px);
    transition: opacity .22s, transform .22s, visibility .22s;
}

.industry-map-filter.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.industry-map-filter__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 17px 12px;
}

.industry-map-filter__head strong,
.industry-map-filter__head span {
    display: block;
}

.industry-map-filter__head strong {
    color: var(--map-ink);
    font-size: 16px;
}

.industry-map-filter__head span {
    margin-top: 2px;
    color: var(--map-muted);
    font-size: 12px;
}

.industry-map-filter__head button {
    display: block;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: var(--map-muted);
    font-size: 24px;
    line-height: 1;
}

.industry-map-filter__all,
.industry-map-filter__item {
    position: relative;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.industry-map-filter__all {
    margin: 0 12px 8px;
    padding: 11px;
    border-radius: 11px;
    background: #f6f8f9;
}

.industry-map-filter__all-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--map-line);
    border-radius: 10px;
    background: #fff;
    color: transparent;
    font-weight: 700;
}

.industry-map-filter__all input:checked + .industry-map-filter__all-icon {
    border-color: var(--map-copper);
    background: var(--map-copper);
    color: #fff;
}

.industry-map-filter__all strong,
.industry-map-filter__all small {
    display: block;
}

.industry-map-filter__all strong { color: var(--map-ink); font-size: 13px; }
.industry-map-filter__all small { color: var(--map-muted); font-size: 10px; }
.industry-map-filter__all b,
.industry-map-filter__item b {
    color: var(--map-muted);
    font-size: 11px;
    font-weight: 600;
}

.industry-map-filter__list {
    padding: 2px 8px 8px;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(224, 122, 69, .38) transparent;
}

.industry-map-filter__item {
    padding: 7px 9px;
    border-radius: 10px;
    color: var(--map-muted);
    font-size: 11px;
    line-height: 1.15;
    transition: background .16s, color .16s, opacity .16s;
}

.industry-map-filter__item:hover { background: #f6f8f9; }
.industry-map-filter__item:has(input:not(:checked)) { opacity: .48; }
.industry-map-filter__item:has(input:checked) { color: var(--map-ink); }
.industry-map-filter__item.is-empty { display: none; }

.industry-map-status-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(224, 122, 69, .22);
    border-radius: 10px;
    background: var(--map-copper-light);
    color: var(--map-copper-dark);
}

.industry-map-status-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.industry-map-filter__reset {
    margin: 7px 12px 12px;
    padding: 9px 12px;
    border: 1px solid var(--map-line);
    border-radius: 9px;
    background: #fff;
    color: var(--map-muted);
    font-size: 12px;
}

.industry-map__hint {
    position: absolute;
    z-index: 4;
    left: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 9px;
    max-width: 370px;
    padding: 10px 14px;
    border: 1px solid rgba(224, 122, 69, .2);
    border-radius: 12px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 24px rgba(38, 48, 59, .14);
    color: var(--map-muted);
    font-size: 12px;
    pointer-events: none;
}

.industry-map__hint-pin {
    position: relative;
    width: 14px;
    height: 14px;
    border: 4px solid var(--map-copper);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    flex: 0 0 auto;
}

.industry-map-results {
    padding: 25px 28px 30px;
    border-top: 1px solid var(--map-line);
    background: #f7f9fa;
}

.industry-map-results__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.industry-map-results__head h3 {
    margin: 0;
    color: var(--map-ink);
    font-size: 24px;
}

.industry-map-results__head p {
    margin: 5px 0 0;
    color: var(--map-muted);
    font-size: 13px;
}

.industry-map-results__head button {
    padding: 9px 13px;
    border: 1px solid rgba(224, 122, 69, .32);
    border-radius: 9px;
    background: #fff;
    color: var(--map-copper-dark);
    font-size: 12px;
}

.industry-map-results__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.industry-map-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    min-width: 0;
    padding: 15px;
    border: 1px solid var(--map-line);
    border-radius: 13px;
    background: #fff;
    transition: border-color .18s, box-shadow .18s, transform .18s;
}

.industry-map-card:hover {
    border-color: rgba(224, 122, 69, .4);
    box-shadow: 0 9px 24px rgba(38, 48, 59, .08);
    transform: translateY(-1px);
}

.industry-map-card__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--map-copper-light);
    color: var(--map-copper-dark);
    overflow: hidden;
}

.industry-map-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.industry-map-card__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.industry-map-card__body { min-width: 0; }
.industry-map-card__type {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 4px;
    color: var(--map-copper-dark);
    font-size: 10px;
    font-weight: 600;
}

.industry-map-card__name {
    display: block;
    color: var(--map-ink);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
}

.industry-map-card__address,
.industry-map-card__meta {
    margin-top: 5px;
    color: var(--map-muted);
    font-size: 11px;
    line-height: 1.35;
}

.industry-map-card__route {
    margin-top: 9px;
    padding: 6px 9px;
    border: 1px solid rgba(224, 122, 69, .28);
    border-radius: 7px;
    background: #fff8f3;
    color: var(--map-copper-dark);
    font-size: 10px;
    font-weight: 600;
}

.industry-map-card__arrow {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f3f5f7;
    color: var(--map-copper);
    font-size: 17px;
    text-decoration: none;
}

.industry-map-results__empty {
    padding: 28px;
    border: 1px dashed #cdd5dc;
    border-radius: 12px;
    color: var(--map-muted);
    text-align: center;
}

.industry-map-balloon { width: 270px; padding: 3px; color: var(--map-ink); }
.industry-map-balloon__top { display: flex; gap: 10px; align-items: center; margin-bottom: 9px; }
.industry-map-balloon__icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: var(--map-copper-light); color: var(--map-copper-dark); overflow: hidden; flex: 0 0 auto; }
.industry-map-balloon__icon img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.industry-map-balloon__icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.industry-map-balloon h4 { margin: 0; font-size: 15px; line-height: 1.2; }
.industry-map-balloon__type { margin-top: 3px; color: var(--map-copper-dark); font-size: 10px; }
.industry-map-balloon__line { margin: 5px 0; color: var(--map-muted); font-size: 11px; line-height: 1.35; }
.industry-map-balloon__actions { display: flex; align-items: center; gap: 8px; margin-top: 9px; }
.industry-map-balloon__actions button { padding: 7px 9px; border: 0; border-radius: 7px; background: var(--map-copper); color: #fff; font-size: 10px; font-weight: 600; }
.industry-map-balloon__link { color: var(--map-copper-dark); font-size: 11px; font-weight: 600; }

.industry-map-marker {
    position: absolute;
    top: -42px;
    left: -21px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 3px solid #fff;
    border-radius: 50% 50% 50% 12px;
    background: linear-gradient(145deg, #f0a080, #c06038);
    box-shadow: 0 5px 14px rgba(125, 58, 33, .34);
    color: #fff;
    transform: rotate(-45deg);
    cursor: pointer;
    transition: transform .16s, filter .16s;
}

.industry-map-marker:hover { transform: rotate(-45deg) scale(1.1); filter: brightness(1.06); }
.industry-map-marker > span { display: grid; place-items: center; width: 28px; height: 28px; transform: rotate(45deg); }
.industry-map-marker svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.9; }
.industry-map-marker.is-logo { width: 48px; height: 48px; border-width: 3px; background: #fff; }
.industry-map-marker.is-logo { top: -48px; left: -24px; }
.industry-map-marker.is-logo > span { width: 35px; height: 35px; overflow: hidden; border-radius: 50%; }
.industry-map-marker.is-logo img { width: 100%; height: 100%; object-fit: contain; transform: none; }
.industry-map-marker.is-warehouse { border-radius: 12px; background: linear-gradient(145deg, #394755, #202a33); transform: rotate(0); }
.industry-map-marker.is-warehouse:hover { transform: scale(1.1); }
.industry-map-marker.is-warehouse > span { transform: none; }

.industry-map__noscript { margin: 0; padding: 20px; color: var(--map-muted); }

@media (min-width: 768px) {
    .industry-map-route { left: 64px; }
}

@media (max-width: 991px) {
    .industry-map__header { align-items: flex-start; padding: 22px; }
    .industry-map__summary { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
    .industry-map__summary div { min-width: 0; }
    .industry-map__header { flex-direction: column; }
    .industry-map__toolbar { grid-template-columns: minmax(0, 1fr); }
    .industry-map__toolbar-actions {
        width: 100%;
        max-width: 100%;
        padding-bottom: 4px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-color: rgba(224, 122, 69, .42) transparent;
        scrollbar-width: thin;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }
    .industry-map__toolbar-actions::-webkit-scrollbar { height: 4px; }
    .industry-map__toolbar-actions::-webkit-scrollbar-thumb { border-radius: 4px; background: rgba(224, 122, 69, .42); }
    .industry-map__toolbar-actions > * { flex: 0 0 auto; scroll-snap-align: start; }
    .industry-map__stage { height: 600px; }
}

@media (max-width: 767px) {
    .industry-map { margin: 0 -4px 35px; border-radius: 14px; }
    .industry-map__header { gap: 16px; padding: 19px 16px 16px; }
    .industry-map__title { font-size: 25px; }
    .industry-map__subtitle { font-size: 12px; }
    .industry-map__summary { gap: 5px; }
    .industry-map__summary div { padding: 9px 8px; border-radius: 9px; }
    .industry-map__summary strong { font-size: 18px; }
    .industry-map__summary span { font-size: 9px; }
    .industry-map__toolbar { gap: 8px; padding: 10px; }
    .industry-map-layers { min-width: max-content; }
    .industry-map-layers span { padding: 9px 10px; white-space: nowrap; font-size: 11px; }
    .industry-map__filter-toggle { padding: 0 10px; }
    .industry-map__filter-toggle > span { display: none; }
    .industry-map__route-toggle { padding: 0 10px; font-size: 11px; }
    .industry-map__stage { height: 520px; }
    .industry-map-filter { inset: 8px; width: auto; max-height: calc(100% - 16px); }
    .industry-map-route { inset: 8px; width: auto; max-height: calc(100% - 16px); }
    .industry-map__stage:has(.industry-map-route.is-open):has(.industry-map-filter.is-open) .industry-map-route {
        inset: 8px 8px auto;
        height: calc(50% - 12px);
        max-height: none;
    }
    .industry-map__stage:has(.industry-map-route.is-open):has(.industry-map-filter.is-open) .industry-map-filter {
        inset: auto 8px 8px;
        height: calc(50% - 12px);
        max-height: none;
    }
    .industry-map-filter__list { padding-bottom: 18px; }
    .industry-map__hint { right: 10px; left: 10px; bottom: 10px; max-width: none; font-size: 10px; }
    .industry-map-results { padding: 20px 13px 24px; }
    .industry-map-results__head { flex-direction: column; gap: 12px; }
    .industry-map-results__grid { grid-template-columns: 1fr; }
    .industry-map-card { grid-template-columns: 42px minmax(0, 1fr) 28px; gap: 10px; padding: 12px; }
    .industry-map-card__icon { width: 42px; height: 42px; }
}
