:root {
  --bg: #eff1ea;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --line: rgba(38, 56, 47, 0.12);
  --text: #1e2c25;
  --muted: #5d6e66;
  --accent: #0d6c5f;
  --accent-soft: #d8efe8;
  --danger: #b94f44;
  --warn: #c9861d;
  --shadow: 0 24px 60px rgba(33, 47, 40, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --font-display: "Bahnschrift", "Segoe UI Variable Display", "Aptos Display", sans-serif;
  --font-body: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 108, 95, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(201, 134, 29, 0.12), transparent 24%),
    linear-gradient(180deg, #f6f7f2 0%, var(--bg) 100%);
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.auth-shell.hidden {
  display: none;
}

.auth-card {
  width: min(720px, 100%);
  padding: 32px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 244, 0.88));
  box-shadow: var(--shadow);
}

.auth-card h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.auth-copy {
  max-width: 64ch;
  margin: 18px 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.auth-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.auth-submit {
  align-self: end;
}

.auth-message {
  min-height: 24px;
  margin: 18px 0 0;
  font-weight: 600;
  color: var(--muted);
}

.auth-message.error {
  color: var(--danger);
}

.auth-message.success {
  color: var(--accent);
}

.auth-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.auth-note-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.auth-note-card h3 {
  margin: 0;
}

.auth-note-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.app-shell {
  max-width: 1500px;
  margin: 0 auto;
  padding: 32px 24px 72px;
}

.app-shell-hidden {
  display: none;
}

.top-nav-panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(250, 251, 247, 0.86);
  box-shadow: 0 16px 38px rgba(20, 34, 27, 0.08);
}

.top-nav-copy p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 76ch;
}

.top-nav-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.session-panel {
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(13, 108, 95, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.session-panel strong {
  font-size: 0.98rem;
}

.session-panel span {
  color: var(--muted);
  font-size: 0.88rem;
}

.tab-switcher {
  display: inline-flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(13, 108, 95, 0.08);
  border: 1px solid rgba(13, 108, 95, 0.12);
}

.tab-button,
.primary-button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.tab-button {
  color: var(--muted);
  background: transparent;
}

.tab-button.active {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(13, 108, 95, 0.24);
}

.primary-button {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(13, 108, 95, 0.18);
}

.secondary-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(13, 108, 95, 0.18);
  border-radius: 999px;
  font-weight: 700;
  color: var(--text);
  background: rgba(216, 239, 232, 0.86);
  cursor: pointer;
}

.tab-view {
  display: none;
}

.tab-view.active {
  display: block;
}

.hero,
.filters-panel,
.panel {
  backdrop-filter: blur(14px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 247, 0.76));
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.hero h1,
.section-heading h2,
.filters-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.95;
}

.hero-text,
.panel-header p,
.section-heading p,
.filters-header p {
  color: var(--muted);
}

.hero-text {
  max-width: 72ch;
  margin: 18px 0 22px;
  font-size: 1rem;
  line-height: 1.65;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-alerts {
  display: grid;
  gap: 14px;
}

.alert-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.alert-card.warning {
  border-color: rgba(201, 134, 29, 0.22);
  background: rgba(251, 243, 225, 0.88);
}

.alert-card.info {
  border-color: rgba(13, 108, 95, 0.18);
}

.alert-card h3,
.panel-header h3 {
  margin: 0;
  font-size: 1rem;
}

.alert-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.filters-panel {
  position: sticky;
  top: 18px;
  z-index: 20;
  margin: 28px 0 34px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(251, 252, 249, 0.9);
  box-shadow: 0 18px 38px rgba(20, 34, 27, 0.08);
}

.filters-header,
.section-heading,
.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.filters-grid,
.metric-grid,
.panel-grid,
.quality-grid,
.table-grid,
.story-grid {
  display: grid;
  gap: 18px;
}

.filters-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 18px;
}

.filters-grid label,
.inline-filter {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
button {
  font: inherit;
}

input,
select {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(30, 44, 37, 0.14);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
}

input:focus,
select:focus {
  outline: 2px solid rgba(13, 108, 95, 0.16);
  border-color: rgba(13, 108, 95, 0.34);
}

.ghost-button {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(13, 108, 95, 0.22);
  background: rgba(13, 108, 95, 0.06);
  color: var(--accent);
  cursor: pointer;
}

.primary-button,
.secondary-button,
.ghost-button,
.tab-button {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    opacity 160ms ease;
}

.ghost-button:hover {
  background: rgba(13, 108, 95, 0.1);
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, #0d6c5f, #126d84);
  box-shadow: 0 14px 32px rgba(13, 108, 95, 0.24);
}

.primary-button:hover {
  filter: brightness(1.02);
}

.primary-button:active,
.secondary-button:active,
.ghost-button:active,
.tab-button:active {
  transform: translateY(1px);
}

.primary-button:disabled,
.secondary-button:disabled,
.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  box-shadow: none;
}

.primary-button.is-busy,
.secondary-button.is-busy,
.ghost-button.is-busy {
  position: relative;
  isolation: isolate;
}

.primary-button.is-busy::after,
.secondary-button.is-busy::after,
.ghost-button.is-busy::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-100%);
  animation: button-busy-sheen 1.1s linear infinite;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.filter-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.content-grid {
  display: grid;
  gap: 42px;
}

.technical-hero-block {
  margin-bottom: 36px;
}

.technical-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.technical-runtime-panel {
  display: grid;
  gap: 20px;
}

.technical-refresh-guide {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.technical-summary-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.technical-runtime-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 18px;
}

.technical-status-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.technical-status-card h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.technical-status-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.runtime-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(13, 108, 95, 0.08);
  color: var(--accent);
  font-weight: 700;
}

.runtime-badge.warning {
  background: rgba(201, 134, 29, 0.16);
  color: var(--warn);
}

.runtime-badge.error {
  background: rgba(185, 79, 68, 0.14);
  color: var(--danger);
}

.progress-shell {
  position: relative;
  width: 100%;
  height: 16px;
  margin: 16px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(13, 108, 95, 0.08);
  box-shadow: inset 0 0 0 1px rgba(13, 108, 95, 0.06);
}

.progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0d6c5f, #cfdc85);
  transition: width 0.35s ease;
  position: relative;
}

.progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 35%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: translateX(-100%);
  animation: progress-shimmer 1.8s linear infinite;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.progress-header strong {
  font-size: 1rem;
}

.progress-header span {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.96rem;
}

.progress-detail {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.5;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.progress-step {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(248, 250, 247, 0.86);
}

.progress-step .step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(13, 108, 95, 0.08);
  color: var(--accent);
}

.progress-step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.progress-step span {
  color: var(--muted);
  font-size: 0.84rem;
}

.progress-step.completed {
  border-color: rgba(13, 108, 95, 0.18);
  background: rgba(216, 239, 232, 0.7);
}

.progress-step.completed .step-index {
  background: var(--accent);
  color: #fff;
}

.progress-step.active {
  border-color: rgba(201, 134, 29, 0.26);
  background: rgba(251, 243, 225, 0.9);
  box-shadow: 0 10px 20px rgba(201, 134, 29, 0.12);
}

.progress-step.active .step-index {
  background: var(--warn);
  color: #fff;
}

.progress-step.error {
  border-color: rgba(185, 79, 68, 0.2);
  background: rgba(252, 236, 234, 0.92);
}

.progress-step.error .step-index {
  background: var(--danger);
  color: #fff;
}

@keyframes progress-shimmer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes button-busy-sheen {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.technical-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.technical-meta-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 108, 95, 0.08);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.technical-alert-stack {
  display: grid;
  gap: 12px;
}

.technical-alert-card {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(248, 250, 247, 0.9);
}

.technical-alert-card.warning {
  border-color: rgba(201, 134, 29, 0.22);
  background: rgba(251, 243, 225, 0.88);
}

.technical-alert-card.error {
  border-color: rgba(185, 79, 68, 0.22);
  background: rgba(252, 236, 234, 0.9);
}

.technical-alert-card h4 {
  margin: 0 0 8px;
  font-size: 0.98rem;
}

.technical-alert-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.review-card-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.review-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
}

.review-card.warning {
  border-color: rgba(201, 134, 29, 0.22);
  background: rgba(251, 243, 225, 0.78);
}

.review-card.high {
  border-color: rgba(185, 79, 68, 0.22);
  background: rgba(252, 236, 234, 0.88);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card-header h4 {
  margin: 0;
  font-size: 1rem;
}

.severity-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(13, 108, 95, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.severity-pill.high {
  background: rgba(185, 79, 68, 0.16);
  color: var(--danger);
}

.severity-pill.medium {
  background: rgba(201, 134, 29, 0.18);
  color: var(--warn);
}

.review-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
}

.review-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.review-card p b {
  color: var(--text);
}

.review-samples {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(30, 44, 37, 0.08);
}

.review-samples h5 {
  margin: 0 0 8px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.review-samples ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.review-samples li {
  margin-bottom: 6px;
  line-height: 1.45;
}

.detailed-review-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.detailed-review-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
}

.detailed-review-card.high {
  border-color: rgba(185, 79, 68, 0.22);
  background: rgba(252, 236, 234, 0.88);
}

.detailed-review-card.medium {
  border-color: rgba(201, 134, 29, 0.22);
  background: rgba(251, 243, 225, 0.84);
}

.detailed-review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.detailed-review-card-header h4 {
  margin: 0;
  font-size: 1.08rem;
}

.detailed-review-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.8rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.detail-block {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(248, 250, 247, 0.92);
}

.detail-block h5 {
  margin: 0 0 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.detail-block p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.source-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
}

.source-card h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.source-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.section-block {
  display: grid;
  gap: 20px;
}

.metric-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.metric-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-card,
.story-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  box-shadow: 0 8px 20px rgba(28, 41, 35, 0.06);
}

.metric-card h3,
.story-card h3 {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.metric-card span {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

.panel-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-span-full {
  grid-column: 1 / -1;
}

.quality-grid {
  grid-template-columns: 1.2fr 1.2fr 0.8fr;
}

.table-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 32px rgba(31, 42, 36, 0.07);
}

.panel-header p {
  margin: 6px 0 0;
  max-width: 48ch;
}

.chart {
  width: 100%;
  height: 360px;
  margin-top: 18px;
}

.story-grid {
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.story-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.inline-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.table-wrap {
  margin-top: 18px;
  overflow: auto;
}

.priority-pill,
.area-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.priority-pill {
  background: rgba(13, 108, 95, 0.08);
  color: var(--accent);
}

.priority-pill.alto {
  background: rgba(185, 79, 68, 0.16);
  color: var(--danger);
}

.priority-pill.medio {
  background: rgba(201, 134, 29, 0.18);
  color: var(--warn);
}

.priority-pill.bajo {
  background: rgba(13, 108, 95, 0.08);
  color: var(--accent);
}

.area-pill {
  background: rgba(30, 44, 37, 0.08);
  color: var(--text);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(30, 44, 37, 0.08);
  text-align: left;
  font-size: 0.92rem;
}

th {
  position: sticky;
  top: 0;
  background: rgba(248, 250, 246, 0.94);
  z-index: 1;
  color: var(--muted);
}

.table-empty {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
}

@media (max-width: 1240px) {
  .auth-form,
  .auth-notes {
    grid-template-columns: 1fr;
  }

  .top-nav-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .hero,
  .quality-grid,
  .table-grid,
  .panel-grid-2,
  .metric-grid,
  .filters-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technical-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .technical-runtime-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .app-shell {
    padding: 18px 14px 56px;
  }

  .auth-card {
    padding: 24px 20px;
  }

  .hero,
  .quality-grid,
  .table-grid,
  .panel-grid-2,
  .metric-grid,
  .filters-grid {
    grid-template-columns: 1fr;
  }

  .technical-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters-panel {
    position: static;
  }

  .hero {
    padding: 24px;
  }

  .chart {
    height: 320px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .tab-switcher,
  .technical-actions,
  .top-nav-toolbar {
    width: 100%;
    flex-direction: column;
  }

  .tab-button,
  .primary-button,
  .secondary-button,
  .ghost-button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .technical-summary-grid {
    grid-template-columns: 1fr;
  }

  .technical-refresh-guide {
    grid-template-columns: 1fr;
  }
}
