:root {
    --bg: #07111f;
    --bg-soft: #0b1727;
    --panel: #101e30;
    --panel-light: #14243a;
    --line: #20334b;
    --line-soft: rgba(143, 169, 199, .13);
    --text: #eef5fc;
    --muted: #8798ad;
    --cyan: #25c9e8;
    --cyan-dark: #0a8fa9;
    --green: #39d98a;
    --amber: #ffbd55;
    --red: #ff647c;
    --violet: #9c8cff;
    --shadow: 0 22px 60px rgba(0, 0, 0, .22);
    color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.topbar { height: 76px; position: fixed; z-index: 40; inset: 0 0 auto 0; display: flex; align-items: center; justify-content: space-between; padding: 0 26px; background: rgba(6, 17, 31, .94); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.brand { display: flex; align-items: center; min-width: 248px; gap: 14px; }
.brand img { width: 78px; height: 35px; object-fit: contain; object-position: left center; }
.brand-divider { height: 31px; width: 1px; background: var(--line); }
.brand > span:last-child { display: flex; flex-direction: column; gap: 2px; letter-spacing: .03em; }
.brand strong { font-size: 15px; }
.brand small { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.topbar-actions { display: flex; align-items: center; gap: 18px; }
.live-pill { height: 30px; display: inline-flex; align-items: center; gap: 8px; padding: 0 12px; border: 1px solid rgba(57,217,138,.24); border-radius: 999px; color: var(--green); background: rgba(57,217,138,.08); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.live-pill.offline { color: var(--amber); border-color: rgba(255,189,85,.25); background: rgba(255,189,85,.08); }
.pulse { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 0 currentColor; animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 7px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.profile-chip { display: flex; align-items: center; gap: 10px; padding-left: 18px; border-left: 1px solid var(--line); }
.avatar { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), #4479e8); color: #04121d; font-weight: 900; }
.profile-copy { display: flex; flex-direction: column; gap: 1px; min-width: 110px; }
.profile-copy strong { font-size: 12px; }
.profile-copy small { font-size: 10px; color: var(--muted); }
.mobile-menu { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: var(--panel); color: var(--text); }

.workspace { min-height: 100vh; padding-top: 76px; display: grid; grid-template-columns: 246px minmax(0, 1fr); }
.sidebar { position: fixed; top: 76px; bottom: 0; left: 0; width: 246px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px 15px 18px; border-right: 1px solid var(--line); background: #081524; overflow-y: auto; z-index: 35; }
.nav-label { margin: 0 12px 9px; color: #52677f; font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.nav-admin { margin-top: 28px; }
.nav-item { min-height: 44px; display: flex; align-items: center; gap: 13px; padding: 0 13px; margin: 4px 0; border-radius: 9px; color: #9badc2; font-size: 13px; font-weight: 650; transition: .18s ease; }
.nav-item > span:first-child { width: 19px; text-align: center; font-size: 16px; color: #5d738d; }
.nav-item:hover { color: var(--text); background: rgba(255,255,255,.035); }
.nav-item.active { color: #dffbff; background: linear-gradient(90deg, rgba(37,201,232,.18), rgba(37,201,232,.05)); box-shadow: inset 2px 0 var(--cyan); }
.nav-item.active > span:first-child { color: var(--cyan); }
.nav-item small { margin-left: auto; font-size: 8px; letter-spacing: .08em; color: #50657d; border: 1px solid #263b53; border-radius: 4px; padding: 2px 4px; }
.nav-soon { opacity: .64; cursor: default; }
.sidebar-foot { display: grid; gap: 12px; }
.read-only-state { padding: 12px 13px; border: 1px solid var(--line-soft); border-radius: 9px; background: rgba(255,255,255,.02); }
.read-only-state span { display: block; color: var(--muted); font-size: 10px; margin-bottom: 4px; }
.read-only-state strong { font-size: 11px; color: var(--amber); text-transform: uppercase; letter-spacing: .08em; }
.logout-button { width: 100%; min-height: 40px; color: #91a4ba; background: transparent; border: 0; text-align: left; padding: 0 13px; cursor: pointer; }
.logout-button:hover { color: white; }

.main-content { grid-column: 2; width: 100%; padding: 38px clamp(22px, 3.2vw, 54px) 70px; overflow: hidden; }
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 27px; }
.page-head h1 { margin: 6px 0 7px; font-size: clamp(25px, 3vw, 37px); line-height: 1.12; letter-spacing: -.035em; }
.page-head p { margin: 0; }
.compact-head { align-items: flex-start; }
.eyebrow { color: var(--cyan); font-size: 9px; line-height: 1.3; letter-spacing: .2em; font-weight: 850; text-transform: uppercase; }
.muted { color: var(--muted); font-size: 13px; line-height: 1.55; }
.updated-box { flex: 0 0 auto; padding: 11px 14px; border-left: 2px solid var(--cyan); background: rgba(255,255,255,.025); }
.updated-box span, .updated-box strong { display: block; }
.updated-box span { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.updated-box strong { margin-top: 4px; font-size: 12px; font-variant-numeric: tabular-nums; }
.back-link { color: var(--cyan); font-size: 12px; }

.safety-banner { min-height: 66px; display: flex; align-items: center; gap: 15px; padding: 14px 17px; margin-bottom: 19px; border: 1px solid rgba(255,189,85,.22); border-radius: 11px; background: linear-gradient(90deg, rgba(255,189,85,.09), rgba(255,189,85,.025)); }
.safety-icon { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: rgba(255,189,85,.12); color: var(--amber); font-size: 19px; }
.safety-banner strong { display: block; margin-bottom: 3px; font-size: 12px; }
.safety-banner p { margin: 0; color: #96a6b8; font-size: 11px; }
.mode-badge { margin-left: auto; flex: 0 0 auto; padding: 5px 8px; border-radius: 5px; background: rgba(255,189,85,.1); color: var(--amber); border: 1px solid rgba(255,189,85,.2); font-size: 8px; font-weight: 850; letter-spacing: .12em; }

.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; margin-bottom: 34px; }
.metric-card { position: relative; overflow: hidden; min-height: 131px; padding: 20px; border: 1px solid var(--line-soft); border-radius: 11px; background: linear-gradient(145deg, rgba(18,34,54,.96), rgba(12,26,43,.96)); box-shadow: 0 8px 26px rgba(0,0,0,.1); }
.metric-card p { margin: 0 0 11px; color: var(--muted); font-size: 10px; font-weight: 650; text-transform: uppercase; letter-spacing: .08em; }
.metric-card strong { display: block; font-size: 27px; line-height: 1; letter-spacing: -.04em; }
.metric-card small { display: block; margin-top: 9px; color: #657a92; font-size: 9px; }
.metric-mark { position: absolute; right: 17px; top: 18px; font-size: 13px; }
.metric-mark.cyan { color: var(--cyan); }.metric-mark.green { color: var(--green); }.metric-mark.amber { color: var(--amber); }.metric-mark.violet { color: var(--violet); }

.section-block { margin-top: 14px; }
.section-title, .panel-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 15px; }
.section-title { margin-bottom: 15px; }
.section-title h2, .panel-head h2 { margin: 3px 0 0; font-size: 17px; letter-spacing: -.015em; }
.section-title p, .panel-head p { margin: 0; }
.section-caption, .panel-head > span { color: var(--muted); font-size: 9px; }
.cinema-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.cinema-card { min-width: 0; padding: 18px 18px 0; border: 1px solid var(--line); border-radius: 11px; background: var(--panel); transition: transform .18s ease, border-color .18s ease; }
.cinema-card:hover { transform: translateY(-2px); border-color: #2c4864; }
.cinema-top { display: flex; align-items: center; justify-content: space-between; }
.cinema-monogram { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 8px; color: var(--cyan); background: rgba(37,201,232,.09); border: 1px solid rgba(37,201,232,.16); font-size: 9px; font-weight: 900; letter-spacing: .06em; }
.status-badge { display: inline-flex; align-items: center; padding: 5px 7px; border: 1px solid var(--line); border-radius: 5px; color: #8497ac; background: rgba(255,255,255,.025); font-size: 8px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.status-online { color: var(--green); border-color: rgba(57,217,138,.22); background: rgba(57,217,138,.07); }
.status-warning, .status-degraded { color: var(--amber); border-color: rgba(255,189,85,.22); background: rgba(255,189,85,.07); }
.status-offline, .status-error { color: var(--red); border-color: rgba(255,100,124,.22); background: rgba(255,100,124,.07); }
.cinema-card h3 { margin: 18px 0 4px; font-size: 15px; }
.cinema-card > p { margin: 0; color: var(--muted); font-size: 10px; }
.cinema-stats { display: grid; grid-template-columns: 1.35fr .65fr 1fr; gap: 8px; padding: 17px 0; margin-top: 12px; border-top: 1px solid var(--line-soft); }
.cinema-stats span, .cinema-stats strong { display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cinema-stats span { color: #5f748c; font-size: 8px; text-transform: uppercase; letter-spacing: .07em; }
.cinema-stats strong { margin-top: 5px; color: #c8d4e1; font-size: 10px; }
.card-foot { min-height: 42px; margin: 0 -18px; padding: 0 18px; display: flex; align-items: center; gap: 7px; border-top: 1px solid var(--line-soft); background: rgba(0,0,0,.08); color: #72869d; font-size: 9px; }
.card-foot button { margin-left: auto; border: 0; background: transparent; color: #4e637b; font-size: 9px; }
.dot { width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: #52677e; }
.dot-online { background: var(--green); box-shadow: 0 0 8px rgba(57,217,138,.5); }.dot-warning,.dot-degraded { background: var(--amber); }.dot-offline,.dot-error { background: var(--red); }

.lower-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 14px; margin-top: 30px; }
.panel { border: 1px solid var(--line); border-radius: 11px; background: var(--panel); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.panel-head { min-height: 69px; padding: 15px 18px; border-bottom: 1px solid var(--line-soft); }
.alert-list { padding: 6px 18px; }
.alert-row { min-height: 65px; display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 12px; border-bottom: 1px solid var(--line-soft); }
.alert-row:last-child { border-bottom: 0; }
.alert-row strong { display: block; font-size: 11px; }.alert-row p { margin: 4px 0 0; color: var(--muted); font-size: 9px; }.alert-row time { color: #60758c; font-size: 9px; }
.severity { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 7px; font-size: 9px; font-weight: 900; background: rgba(255,189,85,.1); color: var(--amber); }
.severity-critical,.severity-error { background: rgba(255,100,124,.1); color: var(--red); }
.empty-state { grid-column: 1 / -1; min-height: 170px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px dashed #29405a; border-radius: 11px; color: var(--muted); }
.empty-state strong { color: #c7d2df; font-size: 12px; }.empty-state p { margin: 6px 0 0; font-size: 10px; }.empty-state.compact { min-height: 190px; border: 0; }.empty-state.compact > span { color: var(--green); font-size: 20px; margin-bottom: 8px; }
.check-list { list-style: none; margin: 0; padding: 10px 18px 18px; }
.check-list li { display: flex; align-items: center; gap: 11px; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.check-list li:last-child { border-bottom: 0; }
.check-list li > span { width: 24px; height: 24px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: #60738a; font-size: 8px; font-weight: 900; }
.check-list .done > span { color: var(--green); border-color: rgba(57,217,138,.25); background: rgba(57,217,138,.08); }
.check-list .active > span { color: var(--cyan); border-color: rgba(37,201,232,.25); animation: pulse 2s infinite; }
.check-list strong { display: block; font-size: 10px; }.check-list p { margin: 4px 0 0; color: var(--muted); font-size: 8px; }

.primary-button, .secondary-button { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 0 17px; border-radius: 8px; font-size: 11px; font-weight: 800; cursor: pointer; }
.primary-button { border: 1px solid #35d9f4; color: #03141d; background: linear-gradient(135deg, #2bd1ed, #5be0f3); box-shadow: 0 10px 28px rgba(37,201,232,.15); }
.secondary-button { border: 1px solid var(--line); color: #a4b5c7; background: #101e30; }
.primary-button.full { width: 100%; }
.text-link { color: var(--cyan); font-size: 10px; font-weight: 700; }
.flash-success, .form-error { margin-bottom: 18px; padding: 12px 14px; border-radius: 8px; font-size: 11px; }
.flash-success { color: var(--green); background: rgba(57,217,138,.08); border: 1px solid rgba(57,217,138,.2); }
.form-error { color: #ffc5cf; background: rgba(255,100,124,.08); border: 1px solid rgba(255,100,124,.2); }
.form-error ul { margin-bottom: 0; }

.table-panel { overflow: hidden; }
.responsive-table { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th { padding: 13px 17px; color: #62768e; background: rgba(0,0,0,.1); font-size: 8px; text-align: left; text-transform: uppercase; letter-spacing: .1em; }
td { padding: 15px 17px; border-top: 1px solid var(--line-soft); color: #aebdcd; font-size: 10px; }
td strong, td small { display: block; } td strong { color: var(--text); font-size: 11px; } td small { margin-top: 4px; color: var(--muted); }
.table-chip { display: inline-flex; padding: 5px 7px; border-radius: 5px; border: 1px solid var(--line); color: #a7b7c8; background: rgba(255,255,255,.025); font-size: 8px; font-weight: 750; }
.pagination { padding: 14px 17px; border-top: 1px solid var(--line-soft); font-size: 10px; }

.form-layout { max-width: 950px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 15px; align-items: start; }
.form-panel { padding-bottom: 18px; }
.form-panel > label, .field-grid > label { display: grid; gap: 7px; color: #8295aa; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.form-panel > label { margin: 18px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 18px; }
input, select, textarea { width: 100%; min-height: 43px; padding: 10px 12px; border: 1px solid #29405a; border-radius: 7px; outline: 0; background: #0a1727; color: var(--text); font-size: 11px; transition: border-color .15s, box-shadow .15s; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--cyan-dark); box-shadow: 0 0 0 3px rgba(37,201,232,.08); }
input[type="checkbox"] { width: 17px; height: 17px; min-height: 0; padding: 0; accent-color: var(--cyan); }
.all-cinemas-toggle { display: flex !important; align-items: center; gap: 11px; padding: 13px; border: 1px solid rgba(37,201,232,.22); border-radius: 8px; background: rgba(37,201,232,.05); cursor: pointer; }
.all-cinemas-toggle span, .cinema-selector label span, .permission-groups label span { display: flex; flex-direction: column; gap: 3px; }
.all-cinemas-toggle strong { color: var(--text); font-size: 10px; text-transform: none; }.all-cinemas-toggle small { color: var(--muted); font-size: 8px; text-transform: none; letter-spacing: normal; }
.cinema-selector { display: grid; gap: 6px; padding: 0 18px; transition: opacity .15s; }
.cinema-selector.disabled { opacity: .35; }
.cinema-selector label, .permission-groups label { min-height: 47px; display: flex; align-items: center; gap: 11px; padding: 8px 11px; border: 1px solid var(--line-soft); border-radius: 7px; cursor: pointer; }
.cinema-selector strong, .permission-groups strong { font-size: 9px; }.cinema-selector small, .permission-groups small { color: var(--muted); font-size: 8px; }
.form-actions { display: flex; justify-content: flex-end; gap: 9px; padding: 18px 18px 0; border-top: 1px solid var(--line-soft); margin-top: 18px; }
.checkbox-row { display: flex !important; align-items: center; gap: 8px; text-transform: none !important; letter-spacing: normal !important; cursor: pointer; }

.role-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.role-card { padding: 18px; }
.role-top { display: flex; justify-content: space-between; align-items: center; }.role-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; background: rgba(37,201,232,.09); color: var(--cyan); font-size: 8px; font-weight: 900; }
.role-card h2 { margin: 17px 0 7px; font-size: 15px; }.role-card > p { min-height: 44px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.permission-preview { display: flex; flex-wrap: wrap; gap: 5px; min-height: 72px; align-content: flex-start; padding: 15px 0; margin: 12px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.permission-preview span { padding: 5px 6px; border-radius: 4px; background: #0a1727; color: #7e91a8; font-size: 7px; }
.locked-note { color: var(--amber); font-size: 8px; }
.permission-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; padding: 0 18px; }
.permission-groups fieldset { margin: 0; padding: 12px; border: 1px solid var(--line); border-radius: 8px; }
.permission-groups legend { padding: 0 6px; color: var(--cyan); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.permission-groups label { margin-bottom: 6px; text-transform: none; letter-spacing: normal; }

.login-page { min-height: 100vh; background: #06111f; }
.login-grid { min-height: 100vh; display: grid; grid-template-columns: minmax(420px, 1.15fr) minmax(420px, .85fr); }
.login-story { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(34px, 5vw, 76px); border-right: 1px solid var(--line); background: radial-gradient(circle at 70% 32%, rgba(37,201,232,.13), transparent 31%), linear-gradient(145deg, #071728, #07111f 67%); }
.login-story::after { content: ""; position: absolute; width: 520px; height: 520px; right: -220px; bottom: -220px; border: 1px solid rgba(37,201,232,.15); border-radius: 50%; box-shadow: 0 0 0 75px rgba(37,201,232,.025), 0 0 0 150px rgba(37,201,232,.018); }
.story-brand { position: relative; z-index: 1; display: flex; align-items: center; gap: 18px; font-size: 13px; font-weight: 750; text-transform: uppercase; letter-spacing: .12em; }
.story-brand img { width: 112px; height: 48px; object-fit: contain; object-position: left center; padding-right: 18px; border-right: 1px solid var(--line); }
.story-copy { position: relative; z-index: 1; max-width: 600px; }
.story-copy h1 { margin: 15px 0 23px; font-size: clamp(45px, 5.5vw, 78px); line-height: .98; letter-spacing: -.055em; }.story-copy h1 em { color: var(--cyan); font-style: normal; }.story-copy > p:last-child { max-width: 470px; color: #8395aa; font-size: 14px; line-height: 1.7; }
.story-status { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; color: var(--green); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.login-panel { display: grid; place-items: center; padding: 35px; background: #0a1625; }
.login-card { width: min(100%, 385px); }.login-card h2 { margin: 10px 0 6px; font-size: 29px; letter-spacing: -.035em; }.login-card > .muted { margin: 0 0 28px; }
.login-card label:not(.checkbox-row) { display: grid; gap: 8px; margin: 16px 0; color: #8fa1b5; font-size: 10px; font-weight: 700; }.login-card .checkbox-row { margin: 16px 0 23px; color: #788ba2; font-size: 9px; font-weight: 500; }
.security-note { margin: 18px 0 0; color: #50647b; font-size: 8px; text-align: center; }
.setup-link { display: block; margin: 15px 0 0; color: var(--cyan); font-size: 9px; text-align: center; }
.password-rule { margin: -6px 0 18px; color: #61758d; font-size: 8px; line-height: 1.45; }

@media (max-width: 1100px) {
    .metric-grid { grid-template-columns: repeat(2, 1fr); }
    .cinema-grid { grid-template-columns: repeat(2, 1fr); }
    .role-grid { grid-template-columns: repeat(2, 1fr); }
    .permission-groups { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
    .topbar { height: 64px; padding: 0 15px; }.brand { min-width: 0; }.brand img { width: 65px; }.brand-divider,.brand > span:last-child { display: none; }.profile-chip { display: none; }.mobile-menu { display: block; }
    .workspace { padding-top: 64px; display: block; }.sidebar { top: 64px; width: min(82vw, 280px); transform: translateX(-105%); transition: transform .2s ease; box-shadow: 30px 0 80px rgba(0,0,0,.45); }.sidebar.open { transform: translateX(0); }
    .main-content { padding: 25px 15px 55px; }.page-head { align-items: flex-start; flex-direction: column; }.updated-box { align-self: stretch; }.safety-banner { align-items: flex-start; }.mode-badge { display: none; }
    .metric-grid { gap: 9px; }.metric-card { min-height: 123px; padding: 16px; }.cinema-grid,.lower-grid,.form-layout,.role-grid { grid-template-columns: 1fr; }.field-grid,.permission-groups { grid-template-columns: 1fr; }.section-title { align-items: flex-start; flex-direction: column; }
    .login-grid { grid-template-columns: 1fr; }.login-story { min-height: 37vh; padding: 28px 24px; border-right: 0; border-bottom: 1px solid var(--line); }.story-copy h1 { font-size: 39px; }.story-copy > p:last-child { display: none; }.story-status { display: none; }.login-panel { padding: 38px 23px; place-items: start center; }
}

@media (max-width: 480px) {
    .live-pill { font-size: 8px; padding: 0 9px; }.metric-grid { grid-template-columns: 1fr 1fr; }.metric-card { min-height: 116px; }.metric-card strong { font-size: 23px; }.metric-card small { max-width: 100px; }.cinema-stats { grid-template-columns: 1.2fr .6fr 1fr; }
    .responsive-table table,.responsive-table tbody,.responsive-table tr,.responsive-table td { display: block; }.responsive-table thead { display: none; }.responsive-table tr { padding: 10px 14px; border-bottom: 1px solid var(--line-soft); }.responsive-table td { display: grid; grid-template-columns: 110px 1fr; padding: 7px 0; border: 0; }.responsive-table td::before { content: attr(data-label); color: #60758c; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
}
