*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f8f9fb;
  --surface: #ffffff;
  --surface2: #f1f3f7;
  --border: #e4e7ec;
  --border-hover: #c9cfd8;
  --text: #0f1117;
  --text-secondary: #5a6272;
  --text-muted: #9aa0ad;
  --accent: #2563eb;
  --accent-light: #eff4ff;
  --accent-hover: #1d4ed8;
  --critical-bg: #fff1f1; --critical-text: #b91c1c; --critical-border: #fca5a5;
  --high-bg: #fff7ed;     --high-text: #c2540a;    --high-border: #fdba74;
  --medium-bg: #fefce8;   --medium-text: #a16207;  --medium-border: #fde047;
  --info-bg: #f0fdf4;     --info-text: #166534;    --info-border: #86efac;
  --pass-bg: #f0fdf4;     --pass-text: #166534;    --pass-border: #86efac;
  --exposed-bg: #fdf4ff;  --exposed-text: #7e22ce; --exposed-border: #d8b4fe;
  --warn-bg: #fff7ed;     --warn-text: #c2540a;    --warn-border: #fdba74;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --sans: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --ease: 0.2s ease;
}

[data-theme="dark"] {
  --bg: #0f1117;
  --surface: #1a1d27;
  --surface2: #222535;
  --border: #2a2d3e;
  --border-hover: #3d4160;
  --text: #f0f2f8;
  --text-secondary: #9aa3c2;
  --text-muted: #5a6080;
  --accent: #3b82f6;
  --accent-light: #1e2a45;
  --accent-hover: #60a5fa;
  --critical-bg: #2a1212; --critical-text: #f87171; --critical-border: #7f1d1d;
  --high-bg: #2a1a0a;     --high-text: #fb923c;    --high-border: #7c2d12;
  --medium-bg: #221f00;   --medium-text: #fbbf24;  --medium-border: #78350f;
  --info-bg: #0a2218;     --info-text: #4ade80;    --info-border: #14532d;
  --pass-bg: #0a2218;     --pass-text: #4ade80;    --pass-border: #14532d;
  --exposed-bg: #1e0a2a;  --exposed-text: #c084fc; --exposed-border: #581c87;
  --warn-bg: #2a1a0a;     --warn-text: #fb923c;    --warn-border: #7c2d12;
}

html, body { height: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: background 0.25s ease, color 0.25s ease;
}

.hidden { display: none !important; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
@keyframes slideIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.header-inner {
  max-width: 960px; margin: 0 auto; padding: 0 24px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 600; letter-spacing: -0.3px; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-badge { font-size: 12px; font-weight: 500; color: var(--accent); background: var(--accent-light); padding: 4px 10px; border-radius: 20px; border: 1px solid rgba(37,99,235,0.2); }
.icon-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; font-family: var(--sans);
  color: var(--text-secondary); background: var(--surface2);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 6px 12px; cursor: pointer;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }

.history-panel {
  position: fixed; top: 60px; right: 0; width: 320px; height: calc(100vh - 60px);
  background: var(--surface); border-left: 1px solid var(--border);
  z-index: 90; overflow-y: auto;
  animation: slideDown 0.25s ease both;
  transition: background 0.25s ease;
}
.history-overlay {
  position: fixed; inset: 0; top: 60px; z-index: 89;
  background: rgba(0,0,0,0.2);
}
.history-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--surface); z-index: 1;
}
.history-title { font-size: 14px; font-weight: 600; }
.clear-history-btn {
  font-size: 12px; color: var(--critical-text); background: none;
  border: none; cursor: pointer; font-family: var(--sans); padding: 2px 4px;
  border-radius: 4px;
}
.clear-history-btn:hover { background: var(--critical-bg); }
.history-empty { font-size: 13px; color: var(--text-muted); padding: 20px; }
.history-item {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background var(--ease);
}
.history-item:hover { background: var(--surface2); }
.history-item-hostname { font-size: 13.5px; font-weight: 500; font-family: var(--mono); margin-bottom: 4px; }
.history-item-meta { display: flex; align-items: center; gap: 8px; }
.history-item-grade { font-size: 11px; font-weight: 600; font-family: var(--mono); padding: 1px 7px; border-radius: 10px; border: 1px solid; }
.history-item-time { font-size: 11px; color: var(--text-muted); }

.main { flex: 1; max-width: 960px; margin: 0 auto; width: 100%; padding: 0 24px 56px; }

.hero { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 64px 0 52px; gap: 16px; animation: fadeUp 0.45s ease both; }
.hero h1 { font-size: 34px; font-weight: 600; letter-spacing: -0.7px; line-height: 1.2; }
.hero p { font-size: 16px; color: var(--text-secondary); max-width: 460px; }

.input-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-md); width: 100%; max-width: 640px; margin-top: 8px; }
.input-row { display: flex; gap: 10px; }
.input-wrap { flex: 1; position: relative; }
.input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
#url-input {
  width: 100%; height: 46px; padding: 0 14px 0 38px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-family: var(--mono); color: var(--text);
  background: var(--bg); outline: none;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
#url-input::placeholder { font-family: var(--sans); color: var(--text-muted); }
#url-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); background: var(--surface); }
#scan-btn {
  height: 46px; padding: 0 22px; background: var(--accent); color: white;
  border: none; border-radius: var(--radius); font-size: 14px; font-weight: 500;
  font-family: var(--sans); cursor: pointer; display: flex; align-items: center; gap: 7px;
  white-space: nowrap; transition: background var(--ease), transform var(--ease), opacity var(--ease);
}
#scan-btn:hover:not(:disabled) { background: var(--accent-hover); transform: translateY(-1px); }
#scan-btn:active:not(:disabled) { transform: translateY(0); }
#scan-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-spinner { width: 14px; height: 14px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.7s linear infinite; }
.disclaimer { font-size: 12px; color: var(--text-muted); margin-top: 12px; text-align: center; }

.progress-view { padding-top: 44px; animation: fadeUp 0.4s ease both; }
.progress-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.progress-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.progress-label { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 5px; }
.progress-hostname { font-size: 15px; font-weight: 500; font-family: var(--mono); }
.progress-pct { font-size: 24px; font-weight: 600; font-family: var(--mono); color: var(--accent); }
.progress-bar { height: 6px; background: var(--surface2); border-radius: 3px; margin-bottom: 26px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, #2563eb, #60a5fa); border-radius: 3px; width: 0%; transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1); }
.stages { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.stage { display: flex; align-items: center; gap: 8px; }
.stage-dot { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--ease), border-color var(--ease); }
.stage.done .stage-dot { background: #16a34a; border-color: #16a34a; }
.stage.active .stage-dot { border-color: var(--accent); background: var(--accent-light); }
.stage-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 1.2s ease infinite; }
.stage-text { font-size: 13px; color: var(--text-secondary); transition: color var(--ease); }
.stage.done .stage-text { color: var(--text-muted); text-decoration: line-through; text-decoration-color: var(--border-hover); }
.stage.active .stage-text { color: var(--text); font-weight: 500; }

.results-view { padding-top: 36px; display: flex; flex-direction: column; gap: 20px; animation: fadeUp 0.4s ease both; }
.results-topbar { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.results-label { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 4px; }
.results-hostname { font-size: 17px; font-weight: 600; font-family: var(--mono); }
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.action-btn { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; font-family: var(--sans); color: var(--text-secondary); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 9px 14px; cursor: pointer; transition: border-color var(--ease), color var(--ease), transform var(--ease); }
.action-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.rescan-btn { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; font-family: var(--sans); color: var(--text-secondary); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 9px 14px; cursor: pointer; transition: border-color var(--ease), color var(--ease), transform var(--ease); }
.rescan-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

.overview-grid { display: grid; grid-template-columns: auto 1fr; gap: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); align-items: center; }
.dial-card { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.dial-meta { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.dial-grade { font-size: 13px; font-weight: 600; font-family: var(--mono); padding: 4px 14px; border-radius: 20px; border: 1px solid; }
.dial-risk-label { font-size: 13px; font-weight: 500; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat-card { background: var(--surface2); border-radius: var(--radius); padding: 14px; }
.stat-label { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.stat-value { font-size: 24px; font-weight: 600; font-family: var(--mono); line-height: 1; }

.summary-text { font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; padding: 18px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); border-left: 3px solid var(--accent); }

.tabs { display: flex; gap: 2px; border-bottom: 1px solid var(--border); overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; font-family: var(--sans); color: var(--text-muted); background: none; border: none; padding: 10px 14px; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; transition: color var(--ease), border-color var(--ease); }
.tab:hover { color: var(--text-secondary); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-count { font-size: 11px; font-weight: 600; background: var(--surface2); border: 1px solid var(--border); color: var(--text-secondary); padding: 1px 7px; border-radius: 10px; font-family: var(--mono); }
.tab.active .tab-count { background: var(--accent-light); border-color: rgba(37,99,235,0.25); color: var(--accent); }

.tab-panel { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; }
.tab-panel.hidden { display: none; }

.filter-bar { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.filter-btn { font-size: 12px; font-weight: 500; font-family: var(--sans); color: var(--text-secondary); background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 4px 12px; cursor: pointer; transition: all var(--ease); }
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); color: white; border-color: var(--accent); }

.panel-note { font-size: 13px; color: var(--text-secondary); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 16px; margin-bottom: 4px; line-height: 1.6; }

.finding-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: border-color var(--ease), box-shadow var(--ease); animation: slideIn 0.32s ease both; }
.finding-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow); }
.finding-card.filtered { display: none; }
.finding-header { padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; }
.finding-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.finding-bottom { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.finding-title { font-size: 14px; font-weight: 500; flex: 1; }
.finding-chevron { color: var(--text-muted); transition: transform 0.25s ease; flex-shrink: 0; }
.finding-card.open .finding-chevron { transform: rotate(180deg); }
.finding-body { max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1); }
.finding-card.open .finding-body { max-height: 500px; }
.finding-body-inner { padding: 14px 16px 16px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px; }
.finding-section-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 5px; }
.finding-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }
.finding-rec { font-size: 13.5px; color: var(--text); line-height: 1.65; padding: 10px 12px; background: var(--surface2); border-radius: 6px; border-left: 3px solid var(--accent); }
.finding-value { font-size: 12px; font-family: var(--mono); color: var(--text-secondary); background: var(--surface2); border: 1px solid var(--border); border-radius: 6px; padding: 8px 10px; word-break: break-all; line-height: 1.6; }

.severity-badge { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 20px; border: 1px solid; display: flex; align-items: center; gap: 5px; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.severity-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.severity-critical { background: var(--critical-bg); color: var(--critical-text); border-color: var(--critical-border); }
.severity-high     { background: var(--high-bg);     color: var(--high-text);     border-color: var(--high-border); }
.severity-medium   { background: var(--medium-bg);   color: var(--medium-text);   border-color: var(--medium-border); }
.severity-info     { background: var(--info-bg);     color: var(--info-text);     border-color: var(--info-border); }
.severity-pass     { background: var(--pass-bg);     color: var(--pass-text);     border-color: var(--pass-border); }
.severity-exposed  { background: var(--exposed-bg);  color: var(--exposed-text);  border-color: var(--exposed-border); }
.severity-warn     { background: var(--warn-bg);     color: var(--warn-text);     border-color: var(--warn-border); }
.finding-category { font-size: 12px; color: var(--text-muted); background: var(--surface2); padding: 2px 8px; border-radius: 4px; border: 1px solid var(--border); }

.generic-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; animation: slideIn 0.32s ease both; }
.generic-left { display: flex; align-items: flex-start; gap: 12px; flex: 1; min-width: 0; }
.generic-info { min-width: 0; }
.generic-title { font-size: 14px; font-weight: 500; font-family: var(--mono); word-break: break-all; }
.generic-desc { font-size: 12.5px; color: var(--text-secondary); margin-top: 3px; }
.generic-url { display: inline-block; font-size: 12px; font-family: var(--mono); color: var(--accent); text-decoration: none; margin-top: 4px; word-break: break-all; transition: color var(--ease); }
.generic-url:hover { color: var(--accent-hover); text-decoration: underline; }
.generic-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-top: 2px; }

.status-pill { font-size: 11px; font-weight: 600; font-family: var(--mono); padding: 3px 9px; border-radius: 20px; border: 1px solid; white-space: nowrap; }
.status-exposed  { background: var(--exposed-bg); color: var(--exposed-text); border-color: var(--exposed-border); }
.status-open     { background: var(--high-bg);    color: var(--high-text);    border-color: var(--high-border); }
.status-filtered { background: var(--surface2);   color: var(--text-muted);   border-color: var(--border); }
.status-closed   { background: var(--pass-bg);    color: var(--pass-text);    border-color: var(--pass-border); }

.open-btn { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 7px; border: 1px solid var(--border); background: var(--surface2); color: var(--text-muted); text-decoration: none; flex-shrink: 0; transition: border-color var(--ease), color var(--ease), background var(--ease); }
.open-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

.redirect-chain { display: flex; flex-direction: column; gap: 0; }
.redirect-step { display: flex; align-items: flex-start; gap: 12px; }
.redirect-line { display: flex; flex-direction: column; align-items: center; }
.redirect-node { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 5px; }
.redirect-connector { width: 2px; flex: 1; background: var(--border); min-height: 20px; margin: 3px 0; }
.redirect-step:last-child .redirect-connector { display: none; }
.redirect-content { padding-bottom: 16px; flex: 1; min-width: 0; }
.redirect-code { font-size: 11px; font-weight: 600; font-family: var(--mono); padding: 2px 7px; border-radius: 4px; border: 1px solid; display: inline-block; margin-bottom: 4px; }
.redirect-url { font-size: 13px; font-family: var(--mono); color: var(--text); word-break: break-all; }
.redirect-final .redirect-node { background: #16a34a; }

.dns-table { width: 100%; border-collapse: collapse; }
.dns-table th { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); padding: 8px 14px; border-bottom: 1px solid var(--border); text-align: left; background: var(--surface2); }
.dns-table td { font-size: 13px; font-family: var(--mono); padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text); word-break: break-all; }
.dns-table tr:last-child td { border-bottom: none; }
.dns-table tr:hover td { background: var(--surface2); }
.dns-table-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.dns-flag { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; padding: 2px 7px; border-radius: 4px; margin-left: 6px; }
.dns-flag-miss { background: var(--critical-bg); color: var(--critical-text); }
.dns-flag-ok   { background: var(--pass-bg);     color: var(--pass-text); }

.cookie-flags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
.cookie-flag { font-size: 11px; font-weight: 500; padding: 2px 8px; border-radius: 4px; border: 1px solid; }
.flag-ok   { background: var(--pass-bg);     color: var(--pass-text);     border-color: var(--pass-border); }
.flag-miss { background: var(--critical-bg); color: var(--critical-text); border-color: var(--critical-border); }
.flag-warn { background: var(--warn-bg);     color: var(--warn-text);     border-color: var(--warn-border); }

.empty-state { text-align: center; padding: 40px 20px; font-size: 14px; color: var(--text-muted); }

.error-view { display: flex; justify-content: center; padding: 80px 24px; animation: fadeUp 0.35s ease both; }
.error-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; text-align: center; max-width: 420px; width: 100%; box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.error-title { font-size: 16px; font-weight: 600; }
.error-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.retry-btn { margin-top: 8px; font-size: 14px; font-weight: 500; font-family: var(--sans); color: var(--accent); background: var(--accent-light); border: 1px solid rgba(37,99,235,0.25); border-radius: var(--radius); padding: 10px 22px; cursor: pointer; transition: background var(--ease), transform var(--ease); }
.retry-btn:hover { background: var(--accent-light); filter: brightness(0.95); transform: translateY(-1px); }

.footer { border-top: 1px solid var(--border); padding: 16px 24px; text-align: center; }
.footer p { font-size: 12px; color: var(--text-muted); }

@media (max-width: 620px) {
  .stages { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 26px; }
  .history-panel { width: 100%; }
}

@media print {
  .no-print, .header, .footer, .topbar-actions, .tabs, .filter-bar { display: none !important; }
  body { background: white; color: black; }
  .results-view { padding-top: 0; }
  .overview-grid, .summary-text, .finding-card, .generic-card, .dns-table-wrap { break-inside: avoid; }
  .finding-body { max-height: none !important; }
  .tab-panel { display: flex !important; }
  .tab-panel::before { content: attr(data-label); font-size: 16px; font-weight: 600; margin-bottom: 8px; display: block; }
}
