:root {
  --petrol-950: #002f30;
  --petrol-900: #003a3a;
  --petrol-800: #004848;
  --emerald-500: #27d66f;
  --emerald-600: #18a85d;
  --mint-100: #ecf9f0;
  --mint-200: #dff3e6;
  --paper: #ffffff;
  --canvas: #f2f5f3;
  --ink: #172625;
  --muted: #5e6e6b;
  --line: #d9e3df;
  --line-strong: #b9c9c3;
  --warning: #a66f14;
  --font-sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --document-width: 70rem;
  --measure: 47rem;
  --page-padding-x: clamp(2rem, 6vw, 5.75rem);
  --page-padding-y: clamp(3rem, 7vw, 6.5rem);
  --radius: 0.15rem;
  --shadow: 0 1.25rem 4rem rgba(0, 47, 48, 0.09);
}

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

[hidden] {
  display: none !important;
}

html {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.72;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(0, 63, 63, 0.018) 1px, transparent 1px) 0 0 / 4rem 4rem,
    var(--canvas);
}

body:not(.is-unlocked) {
  min-height: 100vh;
  background: var(--petrol-950);
}

.access-gate {
  display: grid;
  min-height: 100vh;
  padding: clamp(1.25rem, 5vw, 4rem);
  place-items: center;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 18%, rgba(39, 214, 111, 0.12), transparent 22rem),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--petrol-950);
  background-size: auto, 4rem 4rem, 4rem 4rem, auto;
}

.access-panel {
  width: min(100%, 35rem);
  padding: clamp(2rem, 6vw, 4rem);
  border-top: 0.3rem solid var(--emerald-500);
  background: rgba(0, 47, 48, 0.9);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.22);
}

.access-eyebrow {
  margin: 0 0 0.75rem;
  color: var(--emerald-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.access-panel h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 7vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.access-panel > p:not(.access-eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.access-form {
  margin-top: 2rem;
}

.access-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.access-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.access-controls input,
.access-controls button {
  min-height: 3.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.access-controls input {
  min-width: 0;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.15rem;
  letter-spacing: 0.16em;
}

.access-controls button {
  padding: 0.75rem 1.4rem;
  border-color: var(--emerald-500);
  color: var(--petrol-950);
  background: var(--emerald-500);
  cursor: pointer;
  font-weight: 800;
}

.access-form.is-loading .access-controls button {
  opacity: 0.65;
  pointer-events: none;
}

.access-error {
  min-height: 1.5rem;
  margin: 0.65rem 0 0;
  color: #ffb9b9;
  font-size: 0.82rem;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration-color: var(--emerald-600);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: var(--emerald-500);
}

:focus-visible {
  outline: 0.2rem solid var(--emerald-500);
  outline-offset: 0.2rem;
}

::selection {
  color: var(--petrol-950);
  background: rgba(39, 214, 111, 0.3);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.85rem;
  color: var(--paper);
  background: var(--petrol-950);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.document-tools {
  position: fixed;
  right: max(1rem, calc((100vw - var(--document-width)) / 2 - 13rem));
  bottom: 1.5rem;
  z-index: 20;
}

.print-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.2rem;
  color: var(--paper);
  background: var(--petrol-950);
  box-shadow: 0 0.7rem 2rem rgba(0, 47, 48, 0.2);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.print-button svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.print-button:hover {
  color: var(--petrol-950);
  background: var(--emerald-500);
}

main {
  padding: clamp(1rem, 3.5vw, 3rem);
}

.proposal {
  width: min(100%, var(--document-width));
  margin: 0 auto;
}

.sheet {
  position: relative;
  margin: 0 0 clamp(1rem, 2vw, 1.75rem);
  padding: var(--page-padding-y) var(--page-padding-x);
  overflow: hidden;
  border: 1px solid rgba(0, 63, 63, 0.07);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.chapter::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.3rem;
  height: 8.5rem;
  background: var(--emerald-500);
  content: "";
}

.cover {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(14rem, 0.65fr);
  grid-template-rows: 1fr auto auto;
  min-height: min(79rem, calc(100vh - 6rem));
  padding: clamp(3rem, 7vw, 7rem);
  border: 0;
  color: var(--paper);
  background: var(--petrol-950);
  isolation: isolate;
}

.cover::before,
.cover::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.cover::before {
  right: -12rem;
  bottom: -14rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(39, 214, 111, 0.35);
  border-radius: 50%;
}

.cover::after {
  right: 5.5rem;
  bottom: 5.5rem;
  width: 9rem;
  height: 0.35rem;
  background: var(--emerald-500);
}

.cover-grid {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 44%;
  height: 56%;
  opacity: 0.75;
}

.cover-grid::before,
.cover-grid::after {
  position: absolute;
  content: "";
}

.cover-grid::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 3.25rem 3.25rem;
  mask-image: linear-gradient(135deg, #000, transparent 78%);
}

.node {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border: 0.15rem solid var(--emerald-500);
  border-radius: 50%;
  background: var(--petrol-950);
}

.node-a { top: 18%; right: 20%; }
.node-b { top: 42%; right: 43%; }
.node-c { top: 66%; right: 18%; }
.node-d { top: 78%; right: 58%; }

.connector {
  position: absolute;
  height: 1px;
  background: rgba(39, 214, 111, 0.65);
  transform-origin: left center;
}

.connector-a {
  top: 42.5%;
  right: 20.5%;
  width: 27%;
  transform: rotate(-37deg);
}

.connector-b {
  top: 66.5%;
  right: 19.5%;
  width: 44%;
  transform: rotate(16deg);
}

.cover-title {
  grid-column: 1 / -1;
  align-self: center;
  max-width: 49rem;
  padding: clamp(5rem, 11vh, 9rem) 0 4rem;
}

.section-kicker {
  margin: 0 0 1.25rem;
  color: var(--emerald-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cover h1 {
  max-width: 44rem;
  margin: 0 0 2rem;
  font-size: clamp(2.6rem, 6.6vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.99;
  text-wrap: balance;
}

.cover-subtitle,
.cover-directed,
.cover-scope,
.cover-description {
  max-width: 43rem;
}

.cover-subtitle {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.cover-directed {
  margin: 2rem 0 0.25rem;
  color: var(--emerald-500);
  font-size: 1rem;
}

.cover-scope {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.cover-description {
  margin: 2rem 0 0;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.cover-author {
  align-self: end;
  line-height: 1.4;
}

.cover-author p {
  margin: 0.25rem 0;
}

.cover-author p:first-child {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.cover-author p:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.cover-contact {
  align-self: end;
  justify-self: end;
  font-size: 0.82rem;
  font-style: normal;
  text-align: right;
}

.cover-contact p {
  margin: 0.25rem 0 0;
}

.cover-date {
  grid-column: 1 / -1;
  margin: clamp(3.5rem, 8vh, 7rem) 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.chapter-heading {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.25rem, 3vw, 2.4rem);
  margin: 0 0 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.chapter-number {
  color: var(--emerald-600);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.chapter h2,
.annex h2 {
  margin: 0;
  color: var(--petrol-950);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.chapter h3 {
  max-width: 50rem;
  margin: 3.6rem 0 1.25rem;
  color: var(--petrol-900);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
  text-wrap: pretty;
}

.chapter h4 {
  max-width: var(--measure);
  margin: 2.4rem 0 0.8rem;
  color: var(--petrol-800);
  font-size: 1rem;
  line-height: 1.45;
}

.chapter p,
.chapter > ul {
  max-width: var(--measure);
}

.chapter p {
  margin: 0 0 1.15rem;
  color: var(--ink);
  font-size: 0.985rem;
  text-wrap: pretty;
}

.chapter p + p {
  margin-top: 0.15rem;
}

.editorial-list {
  margin: 1.35rem 0 2rem;
  padding: 0;
  list-style: none;
}

.editorial-list li {
  position: relative;
  margin: 0.75rem 0;
  padding-left: 1.45rem;
}

.editorial-list li::before {
  position: absolute;
  top: 0.73em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid var(--emerald-600);
  border-radius: 50%;
  content: "";
}

.editorial-list strong {
  color: var(--petrol-900);
}

.phase-heading {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  max-width: 52rem;
  margin: 4rem 0 1.4rem;
}

.phase-heading + p,
.phase-heading + .content-label {
  margin-top: 0;
}

.phase-heading h3 {
  margin: 0;
}

.phase-number {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid var(--emerald-600);
  border-radius: 50%;
  color: var(--petrol-900);
  background: var(--mint-100);
  font-size: 0.84rem;
  font-weight: 800;
}

.content-label {
  display: inline-block;
  margin: 1.8rem 0 0.8rem !important;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--emerald-500);
  color: var(--petrol-900) !important;
  font-size: 0.72rem !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.subsection-title {
  padding-left: 1rem;
  border-left: 0.2rem solid var(--emerald-500);
}

.table-scroll {
  width: 100%;
  margin: 2rem 0 3.25rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--paper);
  scrollbar-color: var(--emerald-600) var(--mint-100);
  scrollbar-width: thin;
}

table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
  font-size: 0.79rem;
  line-height: 1.45;
  font-variant-numeric: tabular-nums lining-nums;
}

thead {
  color: var(--paper);
  background: var(--petrol-900);
}

th,
td {
  padding: 0.85rem 0.9rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th:last-child,
td:last-child {
  border-right: 0;
}

thead th {
  border-color: rgba(255, 255, 255, 0.18);
  font-weight: 700;
}

tbody th {
  color: var(--petrol-900);
  background: var(--mint-100);
  font-weight: 700;
}

tbody tr:nth-child(even) td {
  background: rgba(236, 249, 240, 0.46);
}

tbody tr:has(> th:first-child:nth-last-child(4)):has(> td:first-of-type:nth-last-child(3)) th,
tbody tr:has(> th:first-child:nth-last-child(5)):has(> td:first-of-type:nth-last-child(4)) th {
  white-space: nowrap;
}

.annex {
  --annex-accent: var(--emerald-600);
}

.annex:nth-of-type(10) {
  --annex-accent: #138f71;
}

.annex:nth-of-type(11) {
  --annex-accent: #397d67;
}

.annex-opener {
  position: relative;
  min-height: 20rem;
  margin: calc(var(--page-padding-y) * -1) calc(var(--page-padding-x) * -1) 4rem;
  padding: clamp(4rem, 8vw, 7rem) var(--page-padding-x);
  overflow: hidden;
  color: var(--paper);
  background: var(--petrol-950);
}

.annex-opener::before,
.annex-opener::after {
  position: absolute;
  content: "";
}

.annex-opener::before {
  top: -6rem;
  right: -4rem;
  width: 23rem;
  height: 23rem;
  border: 1px solid color-mix(in srgb, var(--annex-accent) 65%, transparent);
  transform: rotate(45deg);
}

.annex-opener::after {
  right: 10rem;
  bottom: 0;
  width: 1px;
  height: 54%;
  background: color-mix(in srgb, var(--annex-accent) 70%, transparent);
}

.annex-opener .section-kicker {
  color: var(--emerald-500);
}

.annex-opener h2 {
  position: relative;
  z-index: 1;
  max-width: 49rem;
  color: var(--paper);
}

.annex-rule {
  display: block;
  width: 7rem;
  height: 0.25rem;
  margin-top: 2.5rem;
  background: var(--emerald-500);
}

.annex > .content-label:first-of-type {
  margin-top: 0 !important;
}

@media (max-width: 88rem) {
  .document-tools {
    right: 1.25rem;
  }
}

@media (max-width: 62rem) {
  :root {
    --page-padding-x: clamp(1.75rem, 6vw, 3.75rem);
  }

  main {
    padding: 1rem;
  }

  .document-tools {
    position: static;
    width: min(calc(100% - 2rem), var(--document-width));
    margin: 1rem auto 0;
    text-align: right;
  }

  .cover {
    grid-template-columns: 1fr;
    min-height: 58rem;
  }

  .cover-title,
  .cover-author,
  .cover-contact,
  .cover-date {
    grid-column: 1;
  }

  .cover-contact {
    justify-self: start;
    margin-top: 2rem;
    text-align: left;
  }

  .cover-grid {
    width: 62%;
  }
}

@media (max-width: 48rem) {
  :root {
    --page-padding-x: clamp(1.25rem, 5vw, 2rem);
    --page-padding-y: clamp(2.5rem, 8vw, 4rem);
  }

  html {
    line-height: 1.65;
  }

  body {
    background: var(--paper);
  }

  main {
    padding: 0;
  }

  .document-tools {
    width: 100%;
    margin: 0;
    padding: 0.75rem 1rem;
    background: var(--canvas);
  }

  .print-button {
    width: 100%;
    justify-content: center;
  }

  .sheet {
    margin: 0;
    border: 0;
    border-bottom: 0.55rem solid var(--canvas);
    box-shadow: none;
  }

  .cover {
    min-height: auto;
    padding: 3rem var(--page-padding-x);
  }

  .cover-title {
    padding: 6rem 0 3rem;
  }

  .cover h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .cover::after {
    right: 2rem;
    bottom: 3rem;
    width: 4rem;
  }

  .cover-grid {
    width: 86%;
    height: 44%;
  }

  .chapter-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .chapter-number {
    font-size: 2.2rem;
  }

  .chapter h2,
  .annex h2 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
    overflow-wrap: anywhere;
  }

  .chapter h3 {
    margin-top: 3rem;
  }

  .phase-heading {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .phase-number {
    width: 2.25rem;
    height: 2.25rem;
  }

  .annex-opener {
    min-height: 17rem;
    margin-bottom: 3rem;
  }

  .annex-opener::before {
    right: -12rem;
  }

  .annex-opener::after {
    right: 3rem;
  }

  .table-scroll {
    margin-right: calc(var(--page-padding-x) * -1);
    margin-left: calc(var(--page-padding-x) * -1);
    width: calc(100% + (var(--page-padding-x) * 2));
    border-right: 0;
    border-left: 0;
    overflow: visible;
  }

  table {
    display: block;
    min-width: 0;
    font-size: 0.8rem;
  }

  thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }

  tbody tr {
    padding: 0.45rem 0;
    border-bottom: 0.45rem solid var(--canvas);
    background: var(--paper);
  }

  tbody th,
  tbody td {
    display: grid;
    grid-template-columns: minmax(6.75rem, 34%) minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.65rem var(--page-padding-x);
    border: 0;
    background: var(--paper) !important;
  }

  tbody th::before,
  tbody td::before {
    color: var(--muted);
    content: attr(data-label);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .access-controls {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .cover-contact,
  .cover-contact a,
  .chapter p,
  .editorial-list li,
  th,
  td {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 23.75rem) {
  .cover-subtitle {
    font-size: 0.95rem;
  }

  .chapter h2,
  .annex h2 {
    font-size: 1.75rem;
  }

  .phase-heading {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@page {
  size: Letter;
  margin: 0.58in;
}

@media print {
  :root {
    --page-padding-x: 0;
    --page-padding-y: 0;
  }

  html,
  body {
    width: auto;
    min-width: 0;
    background: var(--paper);
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  body {
    font-size: 9.4pt;
  }

  .skip-link,
  .document-tools {
    display: none !important;
  }

  main,
  .proposal {
    width: auto;
    margin: 0;
    padding: 0;
  }

  .sheet {
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    background: var(--paper);
    box-shadow: none;
  }

  .sheet + .sheet {
    margin-top: 0.4in;
  }

  .cover {
    display: grid;
    min-height: 9.82in;
    margin: -0.58in;
    padding: 0.72in;
    color: var(--paper);
    background: var(--petrol-950) !important;
    break-after: page;
    page-break-after: always;
  }

  .cover h1 {
    font-size: 34pt;
  }

  .cover-title {
    padding: 0.8in 0 0.4in;
  }

  .cover-date {
    margin-top: 0.6in;
  }

  .chapter::before {
    display: none;
  }

  .chapter-heading {
    grid-template-columns: 0.55in 1fr;
    margin-bottom: 0.28in;
    padding-bottom: 0.18in;
    break-after: avoid-page;
    page-break-after: avoid;
  }

  .chapter-number {
    font-size: 28pt;
  }

  .chapter h2,
  .annex h2 {
    font-size: 22pt;
  }

  .chapter h3 {
    margin: 0.25in 0 0.08in;
    font-size: 13pt;
    break-after: avoid-page;
    page-break-after: avoid;
  }

  .chapter h4,
  .phase-heading,
  .content-label,
  .subsection-title {
    break-after: avoid-page;
    page-break-after: avoid;
  }

  .chapter p {
    margin-bottom: 0.09in;
    font-size: 9.4pt;
    line-height: 1.52;
    orphans: 3;
    widows: 3;
  }

  .editorial-list {
    margin: 0.11in 0 0.18in;
  }

  .editorial-list li {
    margin: 0.05in 0;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .phase-heading {
    margin: 0.3in 0 0.1in;
  }

  .table-scroll {
    width: 100%;
    margin: 0.16in 0 0.26in;
    overflow: visible;
    border-color: var(--line-strong);
    break-inside: auto;
  }

  table {
    width: 100%;
    min-width: 0;
    font-size: 7.2pt;
  }

  thead {
    display: table-header-group;
  }

  tr,
  th,
  td {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  th,
  td {
    padding: 0.08in;
  }

  .annex {
    break-before: page;
    page-break-before: always;
  }

  .annex-opener {
    min-height: 2.65in;
    margin: 0 0 0.32in;
    padding: 0.55in;
    color: var(--paper);
    background: var(--petrol-950) !important;
    break-after: avoid-page;
    page-break-after: avoid;
  }

  .annex-opener h2 {
    font-size: 23pt;
  }

  a {
    color: inherit;
    text-decoration: none;
  }
}
