.dcv-document {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--fg-2);
  font-family: var(--font-sans);
}

.dcv-overview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dcv-overview__headline {
  margin: 0;
  color: var(--fg-1);
  font-size: clamp(19px, 3vw, 24px);
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: -.015em;
  text-wrap: balance;
}

.dcv-overview__lead,
.dcv-paragraph,
.dcv-section__description {
  margin: 0;
  color: var(--fg-2);
  font-size: 14.5px;
  line-height: 1.72;
  text-wrap: pretty;
}

.dcv-overview__lead {
  color: var(--fg-3);
}

.dcv-takeaways,
.dcv-list,
.dcv-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dcv-takeaways {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dcv-takeaway,
.dcv-list__item {
  position: relative;
  padding-left: 26px;
  color: var(--fg-2);
  font-size: 14.5px;
  line-height: 1.68;
}

.dcv-takeaway::before,
.dcv-list--unordered .dcv-list__item::before,
.dcv-list--checklist .dcv-list__item::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 14px;
  height: 4px;
  border-radius: 3px;
  background: var(--accent, #2ea373);
  content: '';
}

.dcv-list--checklist .dcv-list__item::before {
  top: .48em;
  width: 15px;
  height: 15px;
  border: 1px solid var(--accent-strong, #22805a);
  border-radius: 4px;
  background: var(--accent-soft, #e3f4ec);
}

.dcv-list--ordered .dcv-list {
  counter-reset: dcv-list;
}

.dcv-list--ordered .dcv-list__item {
  counter-increment: dcv-list;
  padding-left: 32px;
}

.dcv-list--ordered .dcv-list__item::before {
  position: absolute;
  top: .2em;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--border-default);
  border-radius: 50%;
  color: var(--accent-strong, #22805a);
  content: counter(dcv-list);
  font: 600 11px/20px var(--font-mono);
  text-align: center;
}

.dcv-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.dcv-section {
  min-width: 0;
}

.dcv-section + .dcv-section {
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.dcv-section__title {
  margin: 0 0 10px;
  color: var(--fg-1);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.dcv-section__description {
  margin: -3px 0 12px;
  color: var(--fg-3);
  font-size: 13px;
}

.dcv-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dcv-table-shell {
  overflow: visible;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background: var(--bg-0);
}

.dcv-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.dcv-table th,
.dcv-table td {
  padding: 12px 13px;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.dcv-table tr:last-child > * {
  border-bottom: 0;
}

.dcv-table tr > *:last-child {
  border-right: 0;
}

.dcv-table__group:not(:last-of-type) > tr:last-child > * {
  border-bottom: 1px solid var(--border-subtle);
}

.dcv-table thead th {
  background: var(--bg-1);
  color: var(--fg-3);
  font: 600 10.5px/1.4 var(--font-mono);
  letter-spacing: .04em;
}

.dcv-table__name {
  width: 24%;
}

.dcv-table__item {
  color: var(--fg-1);
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.55;
}

.dcv-table__value {
  color: var(--fg-2);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.62;
}

.dcv-table__mobile-label {
  display: none;
}

.dcv-column--detail {
  color: var(--fg-3);
}

.dcv-table__detail-cell {
  padding: 0 13px 12px !important;
  border-right: 0 !important;
  background: color-mix(in srgb, var(--bg-1) 58%, var(--bg-0));
}

.dcv-table__quick-actions {
  margin: 10px 0 2px;
}

.dcv-table__more {
  min-width: 0;
}

.dcv-table__more-summary {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 2px 6px;
  border-top: 1px solid var(--border-subtle);
  color: var(--fg-3);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.dcv-table__more-summary::-webkit-details-marker {
  display: none;
}

.dcv-table__more-summary::after {
  width: 7px;
  height: 7px;
  flex: none;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: '';
  transform: rotate(45deg) translate(-2px, 2px);
  transition: transform .16s var(--ease-out);
}

.dcv-table__more[open] .dcv-table__more-summary::after {
  transform: rotate(225deg) translate(-1px, 1px);
}

.dcv-table__more-summary:hover {
  color: var(--accent-strong, #22805a);
}

.dcv-table__more-summary:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--accent-bright, #57bd91);
  outline-offset: 2px;
}

.dcv-table__more-label,
.dcv-table__extra-label,
.dcv-table__notes-label {
  font: 600 10.5px/1.4 var(--font-mono);
  letter-spacing: .04em;
}

.dcv-table__more-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 2px 2px;
}

.dcv-table__extra-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: 9px;
}

.dcv-table__extra-field {
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-0);
}

.dcv-table__extra-label,
.dcv-table__notes-label {
  margin-bottom: 4px;
  color: var(--fg-4);
}

.dcv-table__extra-value {
  color: var(--fg-2);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.62;
}

.dcv-table__notes-list {
  margin: 0;
  padding-left: 17px;
  color: var(--fg-3);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.dcv-table .dcv-resource {
  align-items: stretch;
  flex-direction: column;
}

.dcv-table .dcv-resource__actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dcv-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dcv-step {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 11px;
}

.dcv-step__marker {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--fg-1);
  color: var(--bg-0);
  font: 600 12px/1 var(--font-mono);
}

.dcv-step__title {
  margin: 2px 0 3px;
  color: var(--fg-1);
  font-size: 13.5px;
  font-weight: 650;
}

.dcv-callout {
  padding: 13px 15px !important;
  border: 1px solid color-mix(in srgb, var(--accent, #2ea373) 34%, var(--border-default)) !important;
  border-left: 4px solid var(--accent, #2ea373) !important;
  border-radius: var(--radius-md);
  background: var(--accent-soft, #e3f4ec);
}

.dcv-callout--warning {
  border-color: color-mix(in srgb, var(--amber-500) 42%, var(--border-default)) !important;
  border-left-color: var(--amber-500) !important;
  background: color-mix(in srgb, var(--amber-500) 12%, var(--bg-1));
}

.dcv-callout--success {
  border-left-color: var(--moss-500) !important;
}

.dcv-details {
  overflow: hidden;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background: var(--bg-0);
}

.dcv-details__summary {
  display: grid;
  grid-template-columns: minmax(120px, auto) minmax(0, 1fr);
  gap: 12px;
  padding: 13px 15px;
  color: var(--fg-1);
  cursor: pointer;
  list-style-position: inside;
}

.dcv-details__summary:focus-visible,
.dcv-action:focus-visible,
.dcv-topic:focus-visible,
.dcv-term:focus-visible {
  outline: 2px solid var(--accent-bright, #57bd91);
  outline-offset: 2px;
}

.dcv-details__title {
  font-size: 13.5px;
  font-weight: 650;
}

.dcv-details__lead {
  color: var(--fg-3);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.55;
}

.dcv-details__list {
  padding: 0 15px 15px;
}

.dcv-media {
  margin: 0;
}

.dcv-media__image {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-1);
}

.dcv-media__missing {
  padding: 22px;
  border: 1px dashed var(--border-default);
  border-radius: var(--radius-md);
  background: var(--bg-1);
  color: var(--fg-3);
  font-size: 12.5px;
  text-align: center;
}

.dcv-media__caption {
  margin-top: 7px;
  color: var(--fg-3);
  font-size: 11.5px;
  line-height: 1.55;
}

.dcv-resources {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 8px;
}

.dcv-resource {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 9px 8px 11px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-1);
}

.dcv-resource__main {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 3px;
}

.dcv-resource__label {
  color: var(--fg-3);
  font-size: 10.5px;
  font-weight: 600;
}

.dcv-resource__value {
  overflow-wrap: anywhere;
  color: var(--fg-1);
  font: 500 11.5px/1.5 var(--font-mono);
  white-space: pre-wrap;
}

.dcv-resource__actions {
  display: flex;
  flex: none;
  gap: 5px;
}

.dcv-resource--compact {
  width: fit-content;
  padding: 3px;
  border: 0;
  background: transparent;
}

.dcv-action,
.dcv-topic {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
  background: var(--bg-0);
  color: var(--fg-2);
  font: 600 11.5px/1.2 var(--font-sans);
  text-decoration: none;
  cursor: pointer;
}

.dcv-action:hover,
.dcv-topic:hover {
  border-color: var(--accent-strong, #22805a);
  color: var(--accent-strong, #22805a);
  text-decoration: none;
}

.dcv-action--open {
  background: var(--fg-1);
  color: var(--bg-0);
}

.dcv-action--open:hover {
  border-color: var(--fg-1);
  background: var(--fg-2);
  color: var(--bg-0);
}

.dcv-resource-shelf,
.dcv-glossary {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.dcv-glossary {
  padding: 14px 16px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--accent-soft, #e3f4ec);
}

.dcv-glossary__title {
  margin: 0 0 9px;
  color: var(--accent-strong, #22805a);
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dcv-glossary__list {
  display: grid;
  grid-template-columns: minmax(100px, auto) minmax(0, 1fr);
  gap: 7px 12px;
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
}

.dcv-glossary__list dt {
  color: var(--fg-1);
  font-weight: 650;
}

.dcv-glossary__list dd {
  margin: 0;
  color: var(--fg-2);
}

.dcv-highlight {
  padding: 1px .16em;
  border-radius: 4px;
  background: var(--accent-soft, #e3f4ec);
  color: var(--fg-1);
  font-weight: 650;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.dcv-term {
  position: relative;
  display: inline;
  padding: 0;
  border: 0;
  border-bottom: 1px dotted var(--accent-strong, #22805a);
  background: transparent;
  color: var(--fg-1);
  font: inherit;
  font-weight: 650;
  line-height: inherit;
  vertical-align: baseline;
  cursor: help;
}

.dcv-term.dcv-highlight {
  padding: 1px .16em;
  border-radius: 4px;
  background: var(--accent-soft, #e3f4ec);
}

.dcv-term::after {
  position: absolute;
  bottom: calc(100% + 9px);
  left: 50%;
  z-index: 30;
  width: max-content;
  max-width: min(300px, 76vw);
  padding: 9px 11px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--ink-950);
  box-shadow: var(--shadow-lg);
  color: var(--ink-100);
  content: attr(data-tip);
  font-size: 12px;
  font-weight: 450;
  line-height: 1.5;
  opacity: 0;
  overflow-wrap: anywhere;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity .14s var(--ease-out), transform .14s var(--ease-out), visibility .14s;
  visibility: hidden;
  white-space: normal;
}

.dcv-term:hover::after,
.dcv-term:focus-visible::after,
.dcv-term[aria-expanded="true"]::after {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

.dcv-related__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dcv-related__item {
  min-width: 0;
}

.dcv-topic {
  min-height: 34px;
  padding-inline: 13px;
  background: var(--accent-soft, #e3f4ec);
  color: var(--accent-strong, #22805a);
}

.dcv-topic__explanation {
  max-width: 520px;
  margin: 8px 0 0;
  padding: 9px 11px;
  border-left: 3px solid var(--accent, #2ea373);
  color: var(--fg-2);
  font-size: 12.5px;
  line-height: 1.6;
}

.dcv-sr-only {
  position: absolute !important;
  width: 1px !important;
  max-width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  border: 0 !important;
}

.dcv-copy-fallback {
  position: fixed;
  top: -1000px;
  left: -1000px;
}

@media (max-width: 720px) {
  .dcv-table-shell {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .dcv-table,
  .dcv-table tbody,
  .dcv-table tr,
  .dcv-table th,
  .dcv-table td {
    display: block;
    width: 100%;
  }

  .dcv-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .dcv-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .dcv-table tbody {
    display: block;
    overflow: visible;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    background: var(--bg-0);
  }

  .dcv-table tr {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .dcv-table th,
  .dcv-table td {
    padding: 11px 13px;
    border-right: 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .dcv-table__group:not(:last-of-type) > tr:last-child > * {
    border-bottom: 0;
  }

  .dcv-table__detail-cell {
    padding: 0 13px 12px !important;
  }

  .dcv-table__more-summary {
    min-height: 44px;
  }

  .dcv-table__extra-fields {
    grid-template-columns: 1fr;
  }

  .dcv-table__mobile-label {
    display: block;
    margin-bottom: 4px;
    color: var(--fg-4);
    font: 600 10px/1.4 var(--font-mono);
    letter-spacing: .04em;
  }

  .dcv-details__summary {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .dcv-overview__headline {
    font-size: 19px;
  }

  .dcv-overview__lead,
  .dcv-paragraph,
  .dcv-takeaway,
  .dcv-list__item {
    font-size: 13.5px;
  }

  .dcv-resource {
    align-items: stretch;
    flex-direction: column;
  }

  .dcv-resource__actions {
    justify-content: flex-end;
  }

  .dcv-action {
    min-height: 34px;
  }

  .dcv-glossary__list {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .dcv-glossary__list dd + dt {
    margin-top: 6px;
  }
}

@media (hover: none), (max-width: 640px) {
  .dcv-term::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dcv-term::after,
  .dcv-table__more-summary::after {
    transition: none;
  }
}
