:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5b6671;
  --line: #d7dde3;
  --paper: #ffffff;
  --wash: #f3f6f8;
  --accent: #126a70;
  --accent-strong: #0c4f54;
  --fresh: #176b3a;
  --stale: #9a3412;
}

* { box-sizing: border-box; }
html { background: var(--wash); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--wash);
  font: 15px/1.52 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--accent-strong); }
.wrap { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.site-header {
  padding: 28px 0 0;
  color: white;
  background: linear-gradient(135deg, #103741, #126a70);
}
.eyebrow { margin: 0; font-size: .78rem; font-weight: 750; letter-spacing: .16em; }
h1 { margin: 3px 0 4px; max-width: 100%; font-size: clamp(1.15rem, 2.05vw, 2.05rem); line-height: 1.15; white-space: normal !important; overflow-wrap: anywhere; word-break: normal; }
.site-header .doc-subtitle {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.25;
  font-weight: 650;
}

.site-header .doc-link {
  margin: 8px 0 0;
  font-size: .9rem;
  line-height: 1.25;
}
.site-header .doc-link a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.site-header .doc-link a:hover {
  color: #d9f2ed;
}

.update-cadence {
  margin: -2px 0 6px;
  color: #d9f2ed;
  font-size: 0.92rem;
}

.publication-time {
  display: inline-flex;
  margin: 10px 0 0;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 8px;
  color: var(--accent-strong);
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0,0,0,.16);
  font-weight: 800;
}
.status { margin: 6px 0 12px; color: #d9f2ed; }
.site-tabs { display: flex; gap: 9px; margin: 24px 0 14px; flex-wrap: wrap; }
.site-tabs a {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 7px;
  color: white;
  text-decoration: none;
  background: rgba(255,255,255,.12);
  font-weight: 700;
}
.site-tabs a:hover, .site-tabs a.is-active { color: var(--ink); background: var(--paper); }
.status-stale { color: #ffd6c9; font-weight: 700; }
.region-tabs { display: flex; gap: 4px; overflow-x: auto; border-bottom: 0; margin-bottom: 18px; }
.region-tab {
  appearance: none;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  padding: 12px 18px;
  color: var(--accent-strong);
  background: #e7eff0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.region-tab:hover, .region-tab.is-active { color: var(--ink); background: var(--paper); }
.report { padding-block: 24px 56px; }
.report-panel {
  padding: clamp(18px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(23,33,43,.06);
}
.report-panel h2 { margin: 1.65em 0 .5em; font-size: 1.22em; padding-bottom: .3em; border-bottom: 1px solid var(--line); }
.report-panel h2:first-child { margin-top: 0; }
.report-panel h3 { margin: 1.35em 0 .45em; color: var(--accent-strong); font-size: 1.02em; }
.report-panel ol, .report-panel ul { margin: .5em 0 1em; }
.report-panel ol li, .report-panel ul li { padding-left: .15em; }
.report-panel ol li::marker { color: var(--accent); font-weight: 700; }
.table-scroll {
  margin: 1rem 0 1.4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  min-width: 0;
  table-layout: auto;
  border-collapse: collapse;
  font-size: .77rem;
}
th, td {
  min-width: 0;
  padding: 5px 7px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: break-word;
  word-break: normal;
}
th {
  background: #d6e3e6;
  line-height: 1.3;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}
/* Soft semantic emphasis for the solar and radio-blackout tables. */
.report-panel td.index-green { background: #eaf6d8; }
.report-panel td.index-yellow { background: #fff6c7; }
.report-panel td.index-orange { background: #ffe2bd; }
.report-panel td.index-red { background: #ffd6d6; }
.report-panel td.index-better { background: #d9f2d3; }
.report-panel td.index-best { background: #d4f0eb; }

td { overflow-wrap: break-word; word-break: normal; }
tbody tr:nth-child(even) { background: #fafbfc; }
li + li { margin-top: .38rem; }
ol, ul { padding-left: 1.35rem; }
.report-panel p { margin: .7em 0; }
code { padding: .1em .3em; border-radius: 4px; background: #edf1f4; }
.notice { padding: 24px; border: 1px solid #b9c9ce; border-radius: 8px; background: #eef6f6; }
.notice h2 { margin-top: 0; }
.notice-paused { border-color: #e1c6a5; background: #fff7ed; }
.site-footer { padding: 24px 0 36px; color: var(--muted); border-top: 1px solid var(--line); background: #e9eef1; }
.site-footer p { margin: .25rem 0; }

@media (max-width: 720px) {
  .wrap { width: min(100% - 20px, 1180px); }
  .site-header { padding-top: 20px; }
  .region-tab { padding: 10px 13px; }
  .report { padding-top: 12px; }
  .report-panel { border-radius: 6px; }
  table { font-size: .71rem; }
  th, td { min-width: 4rem; padding: 5px 6px; }
}

.quick-card {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 0;
}


/* EA2EWL radio dashboard layer */
:root {
  --ink: #102630;
  --muted: #5b6b73;
  --line: #cbd8dc;
  --paper: #ffffff;
  --wash: #edf3f4;
  --accent: #0d6970;
  --accent-strong: #084b52;
  --signal: #e8a52b;
  --signal-soft: #fff3d4;
}
body {
  background:
    radial-gradient(circle at 15% 0%, rgba(232,165,43,.08), transparent 28rem),
    var(--wash);
}
.site-header {
  padding-top: 34px;
  background:
    linear-gradient(115deg, rgba(4,35,43,.98), rgba(13,105,112,.96)),
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(255,255,255,.025) 6px);
}
.site-header h1 { letter-spacing: -.025em; }
.eyebrow { color: #f5c968; }
.publication-time { border-color: rgba(245,201,104,.85); }
.site-tabs a { border-radius: 5px; }
.site-tabs a.is-active { box-shadow: 0 0 0 2px rgba(232,165,43,.5); }
.report { padding-top: 34px; }
.report-panel {
  border: 0;
  border-top: 4px solid var(--signal);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(16,38,48,.11);
}
.report-panel h2 {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  margin-top: 2.1em;
  color: var(--accent-strong);
  border-bottom: 1px solid var(--line);
}
.report-panel h2:first-child { margin-top: 0; }
.report-panel h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--signal), transparent);
}
.report-panel h3 { color: var(--accent); }
.quick-report {
  max-width: 980px;
  margin: 0 auto;
}
.quick-report h2 { color: var(--accent-strong); font-size: 1.55rem; }
.quick-lead {
  padding: 14px 16px;
  border-left: 4px solid var(--signal);
  border-radius: 6px;
  background: var(--signal-soft);
}
.quick-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, #f7fbfb);
  box-shadow: 0 8px 22px rgba(16,38,48,.07);
}
.quick-card h3 { grid-column: 1 / -1; margin: 0; color: var(--accent-strong); }
.quick-column {
  padding: 16px;
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  background: #f1f7f7;
}
.quick-column h4 { margin: 0 0 10px; color: var(--accent-strong); }
.quick-column p { margin: 8px 0; }
.version-entry {
  border-left-color: var(--signal);
  background: #fbfdfd;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
}
.site-footer { background: #dfe9eb; }
@media (max-width: 720px) {
  .quick-card { grid-template-columns: 1fr; padding: 16px; }
  .quick-card h3 { grid-column: auto; }
}


/* Hidden panels must remain hidden even when a component defines display:grid. */
[hidden] { display: none !important; }


.quick-summary {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 7px;
  color: var(--accent-strong);
  background: #e6f1f0;
  border: 1px solid #c4ddda;
}
.quick-summary span { flex: 1 1 240px; }
.quick-freshness {
  color: var(--muted);
  font-size: .92rem;
}


.section-kicker {
  margin-top: 28px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hf-matrix {
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fbfb;
}
.hf-matrix h2 { margin-top: 6px; }
.hf-matrix table { background: var(--paper); }
.band-status {
  display: inline-block;
  margin-right: 4px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}
.band-status.primary { color: #14532d; background: #dff4df; }
.band-status.alternative { color: #854d0e; background: #fff0c2; }
.band-status.backup { color: #164e63; background: #dceff5; }
.band-status.experimental { color: #6b21a8; background: #f1e4fa; }
.hf-matrix-note { color: var(--muted); font-size: .9rem; }


.source-freshness {
  margin-top: 14px;
  padding: 11px 13px;
  border-left: 3px solid var(--signal);
  border-radius: 5px;
  color: var(--muted);
  background: #fffaf0;
  font-size: .88rem;
}


.link-analysis { max-width: 980px; margin-inline: auto; }
.link-form { margin-top: 22px; }
.link-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.link-form label { display: grid; gap: 6px; color: var(--accent-strong); font-weight: 750; }
.link-form input, .link-form select {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 6px;
  color: var(--ink); background: #fff; font: inherit;
}
.analysis-button {
  margin-top: 18px; padding: 11px 18px; border: 0; border-radius: 6px;
  color: #fff; background: var(--accent-strong); cursor: pointer; font: inherit; font-weight: 800;
}
.analysis-button:hover { background: var(--accent); }
.link-result { margin-top: 26px; padding: 20px; border: 1px solid var(--line); border-top: 4px solid var(--signal); border-radius: 8px; background: #f8fbfb; }
.analysis-result-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 20px; }
.analysis-note { margin-top: 22px; padding: 13px 15px; border-left: 3px solid var(--signal); background: #fffaf0; color: var(--muted); }
@media (max-width: 720px) {
  .link-form-grid, .analysis-result-grid { grid-template-columns: 1fr; }
}


.link-map { min-height: 420px; margin-top: 24px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #dce9eb; }
.map-message { padding: 24px; color: var(--muted); }

/* Análisis de enlace HF: lectura técnica y validación visible */
.point-box{border:1px solid #c7d8dc;border-radius:10px;padding:1rem;background:#f7fbfb}.point-box legend{font-weight:700;color:#075b66;padding:0 .35rem}.coordinate-grid,.dms-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.7rem}.dms-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.analysis-result-cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;margin:1rem 0}.analysis-result-cards article{border:1px solid #c5dadd;border-left:4px solid #0d6970;border-radius:8px;padding:1rem;background:#f4f9f9}.result-lead{font-size:1.35rem;font-weight:700;color:#075b66}.analysis-warnings{background:#fff8e4;border-left:3px solid #f0a51a;padding:.75rem 1.2rem}.analysis-button.secondary{background:#edf4f4;color:#075b66;margin-left:.5rem}@media(max-width:700px){.analysis-result-cards,.coordinate-grid,.dms-grid{grid-template-columns:1fr}.dms-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}

.map-selection-tools{display:flex;align-items:center;gap:.55rem;flex-wrap:wrap;margin:.7rem 0;color:#075b66}.map-selection-tools .analysis-button{margin:0;padding:.45rem .75rem}.map-selection-tools .is-selected{background:#f0a51a;color:#17333a}

.link-result h3{margin-top:1.5rem;color:#075b66}.link-result .analysis-result-grid{gap:.75rem;margin:1rem 0}.link-result .analysis-result-grid p{margin:0;padding:.8rem .9rem;border:1px solid #d5e2e4;border-radius:8px;background:#f8fbfb;line-height:1.45}.link-result .analysis-result-grid p strong{display:block;color:#075b66;font-size:.82rem;text-transform:uppercase;letter-spacing:.04em;margin-bottom:.25rem}.link-result .analysis-result-cards article{box-shadow:0 3px 10px rgba(7,55,61,.06)}.link-result .analysis-warnings{margin-top:.5rem;border-radius:7px;line-height:1.5}

.map-live-readout{margin:.65rem 0 1rem;padding:.75rem 1rem;border:1px solid #c5dadd;border-radius:8px;background:#f4f9f9;color:#075b66}.map-live-readout strong{font-weight:700}

.band-verdict{margin-top:.8rem;padding:.7rem .8rem;border-left:3px solid #f0a51a;background:#fff8e4;border-radius:5px;color:#17333a}.band-verdict strong{color:#075b66}

.leaflet-marker-icon{cursor:grab}.leaflet-marker-icon:active{cursor:grabbing}

.analysis-actions{display:flex;gap:.65rem;flex-wrap:wrap}.analysis-actions .analysis-button{margin:0}@media(max-width:600px){.analysis-actions .analysis-button{width:100%}}

.source-status{margin:1.2rem 0;padding:1rem;border:1px solid #c5dadd;border-radius:8px;background:#f4f9f9}.source-status h3{margin-top:0}.source-status-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem}.source-status-grid p{margin:0;padding:.65rem .75rem;background:#fff;border-radius:6px;font-size:.9rem}.source-status-grid strong{color:#075b66}@media(max-width:600px){.source-status-grid{grid-template-columns:1fr}}

.link-marker{border:3px solid #fff;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:.75rem;box-shadow:0 2px 7px rgba(0,0,0,.35)}.link-marker-a{background:#1677d2}.link-marker-b{background:#d83b3b}

.map-legend{display:flex;gap:1rem;flex-wrap:wrap;align-items:center;margin:.65rem 0;color:#075b66;font-size:.9rem}.legend-dot{display:inline-block;width:12px;height:12px;border-radius:50%;vertical-align:-1px;margin-right:.3rem}.legend-a{background:#1677d2}.legend-b{background:#d83b3b}.legend-line{display:inline-block;width:24px;height:3px;background:#0d6970;vertical-align:middle;margin-right:.3rem}

.source-status-note{grid-column:1/-1;border-left:3px solid #f0a51a!important;background:#fff8e4!important;color:#17333a}


.technical-overview{margin:1rem 0 1.25rem;padding:1.2rem 1.35rem;background:#f7fbfb;border:1px solid #c7dadd;border-top:3px solid #f0a51a;border-radius:8px}.technical-overview h2{margin:.25rem 0 1rem}.technical-status-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.7rem;margin-bottom:.8rem}.technical-status-grid>div{display:grid;gap:.25rem;padding:.7rem;background:#fff;border:1px solid #d7e5e7;border-radius:5px}.technical-status-grid span{color:#48636a}.technical-status-grid .status{display:inline-block;padding:.2rem .45rem;border-radius:4px;font-size:.82rem}.technical-legend{display:grid;grid-template-columns:repeat(3,1fr);gap:.7rem;margin:.9rem 0}.technical-legend>div{display:grid;gap:.25rem;padding:.65rem .75rem;background:#fff;border-left:3px solid #197c68}.technical-legend .observed{color:#197c68}.technical-legend .inferred{color:#b87900}.technical-legend .theoretical{color:#526b73}.technical-warning{margin:0;padding:.7rem .85rem;background:#fff8e4;border-left:3px solid #f0a51a}@media(max-width:700px){.technical-status-grid,.technical-legend{grid-template-columns:1fr}}


.technical-toc{display:flex;flex-wrap:wrap;gap:.45rem .7rem;align-items:center;margin:0 0 1rem;padding:.75rem 1rem;background:#fff;border:1px solid #c7dadd;border-radius:6px;font-size:.82rem}.technical-toc strong{color:#173c48}.technical-toc a{color:#086b73;text-decoration:none;border-bottom:1px dotted #086b73}.technical-toc a:hover{text-decoration:underline}.back-to-top{max-width:var(--content-width,1100px);margin:1rem auto;text-align:right;font-size:.8rem}.back-to-top a{color:#086b73}


.technical-toc ul{display:flex;flex-wrap:wrap;gap:.35rem 1.2rem;margin:.45rem 0 0;padding-left:1.2rem;width:100%}.technical-toc li{margin:0}.section-back{font-size:.68em;color:#086b73;text-decoration:none;opacity:.7;margin-left:.35rem}.section-back:hover{opacity:1;text-decoration:underline}


.technical-toc{display:block}.technical-toc>strong{display:block;margin-bottom:.45rem}.technical-toc ul{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.28rem 1.5rem;margin:0;padding-left:1.35rem;width:auto}.technical-toc li{padding-left:.15rem}@media(max-width:650px){.technical-toc ul{grid-template-columns:1fr}}


.technical-toc>ul{display:block!important;margin:.45rem 0 0!important;padding-left:1.35rem!important;width:auto!important}.technical-toc>ul>li{display:list-item!important;margin:.22rem 0!important;padding:0!important}


/* Jerarquía tipográfica del informe técnico */
.report-panel h2{font-size:clamp(1.28rem,2.2vw,1.62rem);line-height:1.2;margin-top:1.8rem;margin-bottom:.8rem;color:#063f4d;font-weight:800;letter-spacing:-.01em;border-bottom:2px solid #d6e5e7;padding-bottom:.35rem}.report-panel h3{font-size:clamp(1.08rem,1.7vw,1.28rem);line-height:1.25;margin-top:1.35rem;margin-bottom:.6rem;color:#07596a;font-weight:800}.report-panel h4{font-size:1rem;line-height:1.3;margin-top:1rem;margin-bottom:.45rem;color:#174d5a;font-weight:750}.technical-overview h2{margin-top:.25rem;border-bottom:0;padding-bottom:0}


.technical-toc>strong{font-size:1.08rem!important;line-height:1.25;color:#063f4d;font-weight:800;letter-spacing:-.01em}


.section-back{display:inline-flex;align-items:center;justify-content:center;width:1.45rem;height:1.45rem;margin-left:.5rem;border:1px solid #e0a11a;border-radius:50%;background:#fff8e4;color:#8a5a00!important;font-size:.95rem!important;font-weight:800;line-height:1;text-decoration:none;opacity:1;vertical-align:middle;box-shadow:0 1px 2px rgba(0,0,0,.12)}.section-back:hover{background:#f0a51a;color:#173c48!important;text-decoration:none}


.section-kind{display:inline-block;margin-right:.5rem;padding:.18rem .42rem;border-radius:4px;font-size:.58em;line-height:1;vertical-align:middle;letter-spacing:.02em;text-transform:uppercase;font-weight:800}.section-kind.observed{background:#d9f0e8;color:#176d59}.section-kind.inferred{background:#fff0c9;color:#8a5a00}.section-kind.theoretical{background:#e5edf0;color:#526b73}.report-table td:has(> strong){font-weight:600}.report-table td{transition:background .15s}.report-table td:not(:empty){ }


.classification-guide{margin:.8rem 0;padding:.7rem .85rem;background:#eef6f5;border-left:3px solid #197c68;font-size:.86rem}.classification-table th:last-child,.classification-table td:last-child{white-space:nowrap}


.classification-table{table-layout:fixed}.classification-table th:nth-child(1),.classification-table td:nth-child(1){width:8%}.classification-table th:nth-child(2),.classification-table td:nth-child(2){width:9%}.classification-table th:nth-child(3),.classification-table td:nth-child(3),.classification-table th:nth-child(4),.classification-table td:nth-child(4),.classification-table th:nth-child(5),.classification-table td:nth-child(5){width:9%}.classification-table th:nth-child(6),.classification-table td:nth-child(6){width:10%}.classification-table th:nth-child(7),.classification-table td:nth-child(7){width:38%}.classification-table th:nth-child(8),.classification-table td:nth-child(8){width:18%}.provenance-observed,.provenance-inferred{display:inline-block;padding:.12rem .28rem;border-radius:3px;font-size:.78em;font-weight:700}.provenance-observed{background:#d9f0e8;color:#176d59}.provenance-inferred{background:#fff0c9;color:#8a5a00}


.classification-table th:nth-child(1),.classification-table td:nth-child(1){width:8%!important}.classification-table th:nth-child(2),.classification-table td:nth-child(2){width:9%!important}.classification-table th:nth-child(3),.classification-table td:nth-child(3),.classification-table th:nth-child(4),.classification-table td:nth-child(4),.classification-table th:nth-child(5),.classification-table td:nth-child(5){width:9%!important}.classification-table th:nth-child(6),.classification-table td:nth-child(6){width:9%!important}.classification-table th:nth-child(7),.classification-table td:nth-child(7){width:32%!important}.classification-table th:nth-child(8),.classification-table td:nth-child(8){width:15%!important}


.classification-table th:nth-child(1),.classification-table td:nth-child(1){width:7%!important}.classification-table th:nth-child(2),.classification-table td:nth-child(2){width:8%!important}.classification-table th:nth-child(3),.classification-table td:nth-child(3),.classification-table th:nth-child(4),.classification-table td:nth-child(4),.classification-table th:nth-child(5),.classification-table td:nth-child(5),.classification-table th:nth-child(6),.classification-table td:nth-child(6){width:8%!important}.classification-table th:nth-child(7),.classification-table td:nth-child(7){width:10%!important}.classification-table th:nth-child(8),.classification-table td:nth-child(8){width:33%!important}.classification-table th:nth-child(9),.classification-table td:nth-child(9){width:10%!important}


/* Documentación: índice interno y retorno al inicio */
.documentation-index{
  margin:0 0 1.6rem;
  padding:1rem 1.25rem 1.1rem;
  border:1px solid #c7d9dd;
  border-left:4px solid #e7a21a;
  border-radius:8px;
  background:#f4f8f8;
}
.documentation-index h2{
  margin:0 0 .65rem;
  font-size:1.15rem;
  color:#075866;
}
.documentation-index ol{
  margin:0;
  padding-left:1.35rem;
  columns:2;
  column-gap:2.5rem;
}
.documentation-index li{
  margin:.28rem 0;
  break-inside:avoid;
}
.documentation-index a{
  text-decoration:underline;
  text-decoration-style:dotted;
  text-underline-offset:2px;
}
.section-back{
  margin:-.45rem 0 .8rem;
  text-align:right;
  font-size:.78rem;
}
.section-back a{
  display:inline-block;
  padding:.15rem .45rem;
  border-radius:4px;
  color:#075866;
  background:#edf5f5;
  text-decoration:none;
}
.section-back a:hover,.section-back a:focus{
  color:#fff;
  background:#075866;
}
@media (max-width:700px){
  .documentation-index ol{columns:1}
  .section-back{text-align:left}
}


/* La documentación usa un enlace textual completo, no el icono circular del informe técnico */
.report-panel .section-back{
  display:block;
  width:auto;
  height:auto;
  margin:-.45rem 0 .8rem;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  text-align:right;
  font-size:.78rem!important;
  line-height:1.3;
  font-weight:400;
  opacity:1;
  box-shadow:none;
  vertical-align:baseline;
}
.report-panel .section-back a{
  display:inline-block;
  width:auto;
  white-space:nowrap;
  padding:.18rem .5rem;
  border:1px solid #c7d9dd;
  border-radius:4px;
  background:#edf5f5;
  color:#075866!important;
  text-decoration:none;
}
.report-panel .section-back a:hover,
.report-panel .section-back a:focus{
  background:#075866;
  color:#fff!important;
}
@media (max-width:700px){
  .report-panel .section-back{text-align:left}
}


/* v0.7.0 · pulido general de experiencia de uso */
:root{
  --ux-ink:#073f50;
  --ux-petrol:#075866;
  --ux-amber:#e7a21a;
  --ux-line:#c7d9dd;
  --ux-soft:#f3f8f8;
  --ux-muted:#536d76;
}
html{scroll-behavior:smooth}
body{
  color:var(--ux-ink);
  font-size:clamp(.92rem, .22vw + .82rem, 1rem);
  line-height:1.55;
}
.wrap{width:min(1180px,calc(100% - 2rem));margin-inline:auto}
.site-header{
  box-shadow:0 2px 14px rgba(5,54,66,.12);
}
.site-header .wrap{padding-block:1.1rem .85rem}
.site-header h1{
  max-width:100%;
  margin:.15rem 0 .2rem;
  line-height:1.08;
}
.doc-subtitle{margin:.25rem 0 .8rem;line-height:1.35}
.site-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:.45rem;
  align-items:center;
}
.site-tabs a{
  min-height:2.2rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.45rem .78rem;
  border-radius:6px;
  transition:background-color .15s ease,color .15s ease,border-color .15s ease,transform .15s ease;
}
.site-tabs a:hover{transform:translateY(-1px)}
.site-tabs a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
a:focus-visible{
  outline:3px solid rgba(231,162,26,.72);
  outline-offset:2px;
}
.report{padding-block:1.6rem 2.5rem}
.report-panel{
  border-color:var(--ux-line);
  box-shadow:0 10px 28px rgba(5,54,66,.08);
}
.report-panel h2{
  font-size:clamp(1.25rem,1.1vw + .9rem,1.7rem);
  line-height:1.2;
  margin-top:2rem;
  scroll-margin-top:1rem;
}
.report-panel h3{
  font-size:clamp(1.05rem,.55vw + .85rem,1.25rem);
  line-height:1.25;
  margin-top:1.45rem;
  scroll-margin-top:1rem;
}
.report-panel h2:first-child{margin-top:0}
.report-panel p,.report-panel li{max-width:78ch}
.notice,.quick-lead,.warning,.analysis-warning{
  border-left-width:4px;
  border-left-color:var(--ux-amber);
  border-radius:6px;
}
.quick-lead{
  padding:1rem 1.1rem;
  background:#fff7df;
  margin-bottom:1.25rem;
}
.report-panel table{
  font-size:.92rem;
}
.report-panel th{
  font-weight:750;
}
.analysis-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
  margin-top:1.2rem;
}
.analysis-button,button{
  min-height:2.55rem;
  border-radius:6px;
  cursor:pointer;
  transition:transform .15s ease,box-shadow .15s ease,background-color .15s ease;
}
.analysis-button:hover,button:hover{
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(5,54,66,.16);
}
.point-box{
  border-color:var(--ux-line);
  border-radius:8px;
  background:linear-gradient(180deg,#fff,var(--ux-soft));
}
.point-box legend{
  color:var(--ux-petrol);
  font-weight:750;
}
input,select,textarea{
  min-height:2.35rem;
  border-radius:5px;
  border-color:#b7cdd2;
}
input:invalid,select:invalid{border-color:#c85b4d}
.site-footer{
  border-top:1px solid var(--ux-line);
}
@media (max-width:760px){
  .wrap{width:min(100% - 1rem,1180px)}
  .site-header .wrap{padding-block:.85rem .7rem}
  .site-header h1{font-size:clamp(1.45rem,6vw,2rem)}
  .site-tabs{
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:.25rem;
    scrollbar-width:thin;
  }
  .site-tabs a{flex:0 0 auto;white-space:nowrap}
  .report{padding-block:1rem 1.75rem}
  .report-panel{padding:1rem}
  .report-panel table{
    display:block;
    max-width:100%;
    overflow-x:auto;
    white-space:nowrap;
  }
  .analysis-actions>*{width:100%}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*:before,*:after{transition:none!important;animation:none!important}
}


/* Ajuste UX: el informe técnico debe aprovechar el ancho completo del panel */
.report-panel > p,
.report-panel > ul,
.report-panel > ol,
.report-panel > dl,
.report-panel > .notice,
.report-panel > .quick-lead,
.report-panel > .technical-overview,
.report-panel > .technical-toc{
  max-width:none;
}
.report-panel p,
.report-panel li{
  max-width:none;
}
.documentation-current p,
.documentation-current li{
  max-width:88ch;
}

.technical-maps{margin:1.25rem 0;padding:1.2rem 1.35rem;border:1px solid #c7dadd;border-radius:8px;background:#f7fbfb}
.technical-maps h2{margin:.25rem 0 .65rem}.technical-maps-lead{max-width:78ch}
.map-layer-tabs{display:flex;flex-wrap:wrap;gap:.5rem;margin:.8rem 0}.map-layer-tab{border:1px solid #b8ced1;background:#fff;color:#075866;padding:.55rem .8rem;border-radius:5px;cursor:pointer}.map-layer-tab.is-active{background:#075866;color:#fff;border-color:#075866}
.technical-map{height:390px;border:1px solid #b8ced1;border-radius:7px;overflow:hidden;background:#dcecef}.technical-map-legend{display:flex;gap:1rem;flex-wrap:wrap;margin:.65rem 0;color:#536d76;font-size:.86rem}.technical-map-caption{font-size:.86rem;color:#536d76;margin-bottom:0}.map-mark{border:2px solid #fff;border-radius:50%;box-shadow:0 1px 4px rgba(0,0,0,.35)}.map-label{background:rgba(255,255,255,.9);border:0;border-radius:3px;padding:2px 4px;color:#123b43;font-weight:700;font-size:11px;box-shadow:0 1px 3px rgba(0,0,0,.18)}
@media(max-width:700px){.technical-maps{padding:1rem}.technical-map{height:310px}.map-layer-tab{flex:1 1 auto}}

.local-map{position:relative;max-width:980px;border:1px solid #b8ced1;border-radius:7px;overflow:hidden;background:#d8edf0}.local-map>img{display:block;width:100%;height:auto}.local-map #map-layer-overlay{position:absolute;inset:0}.map-layer-mark{position:absolute;transform:translate(-50%,-50%);border:2px solid #fff;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#17333a;font-size:10px;font-weight:700;box-shadow:0 1px 5px rgba(0,0,0,.3);opacity:.88}.observation-controls{display:flex;align-items:center;gap:.6rem;flex-wrap:wrap;margin:.75rem 0;padding:.65rem .8rem;border-left:3px solid #e7a21a;background:#fff8e4;color:#536d76}.observation-controls select{min-height:2rem;padding:.25rem .5rem}.map-layer-tab{font-weight:600}.technical-map-caption{max-width:85ch}
