/* SVG icon system */
.ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    vertical-align: middle;
    line-height: 0;
}
.ico svg {
    width: 100%;
    height: 100%;
    display: block;
}
.ico--muted { color: var(--grey-500); opacity: 0.85; }
.ico--white { color: rgba(255, 255, 255, 0.95); }
.ico--primary { color: var(--primary); }
.ico--error { color: #dc2626; }

.car-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 120px;
    background: linear-gradient(160deg, #f0f1f4 0%, #e8eaef 100%);
    color: #b0b5c0;
}

.ico-wrap {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.spec-ico {
    color: var(--grey-500);
    opacity: 0.9;
}

.modal-close .ico svg { stroke-width: 2; }
