/* ============================ Botones ============================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 6px 12px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text);
    font-size: var(--fs-sm);
    line-height: 1.3;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.12s ease, border-color 0.12s ease;
}

.btn:hover {
    background: var(--hover);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn--primary {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--brand-contrast);
    font-weight: 600;
}

.btn--primary:hover {
    background: var(--brand-strong);
    border-color: var(--brand-strong);
}

.btn--ghost {
    border-color: transparent;
    background: transparent;
}

.btn--ghost:hover {
    background: var(--hover);
}

.btn--icon {
    padding: 6px;
    min-width: 32px;
    font-size: var(--fs-lg);
    line-height: 1;
}

.btn--sm {
    padding: 3px 8px;
    font-size: var(--fs-xs);
}

.btn[aria-pressed="true"] {
    background: var(--active);
    border-color: var(--brand);
    color: var(--brand);
    font-weight: 600;
}

.btn-group {
    display: flex;
    gap: var(--sp-1);
}

.btn-group .btn {
    flex: 1;
}

/* ============================ Campos ============================ */

.input {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text);
}

.input::placeholder {
    color: var(--text-faint);
}

.select {
    padding: 5px 8px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--surface);
    font-size: var(--fs-sm);
}

/* ============================ Chips y tags ============================ */

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-1);
}

.chip {
    padding: 3px 9px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text-muted);
    font-size: var(--fs-xs);
    cursor: pointer;
    white-space: nowrap;
}

.chip:hover {
    background: var(--hover);
}

.chip[aria-pressed="true"] {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--brand-contrast);
    font-weight: 600;
}

.tag {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: var(--fs-xs);
    font-weight: 700;
    color: #fff;
    margin-right: 4px;
    white-space: nowrap;
}

.tag--true {
    background: var(--ok);
}

.tag--false {
    background: var(--danger);
}

.tag--neutral {
    background: var(--neutral);
}

.tag--warn {
    background: var(--warn);
}

.tag--brand {
    background: var(--brand);
    color: var(--brand-contrast);
}

.tag--xs {
    font-size: 0.6rem;
    padding: 1px 4px;
}

.tag--outline {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text-muted);
    font-weight: 600;
}

/* ============================ Breadcrumbs ============================ */

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    color: var(--text-muted);
    min-width: 0;
    overflow: hidden;
}

/* Sin `max-width` fijo: el truncado lo decide el flex, así que un nombre largo
   solo se acorta cuando de verdad no cabe en la topbar. */
.breadcrumbs__item {
    background: none;
    border: 0;
    padding: 2px 4px;
    color: var(--brand);
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 8ch;
    flex: 0 1 auto;
}

/* El objeto abierto es el que interesa leer entero, así que los anteriores
   ceden espacio mucho antes. Todos conservan algo de shrink para que el
   recorte lo haga el propio item (con "…") y no el contenedor. */
.breadcrumbs__item:not([aria-current="page"]) {
    flex-shrink: 8;
}

.breadcrumbs__item:hover {
    text-decoration: underline;
}

.breadcrumbs__item[aria-current="page"] {
    color: var(--text);
    font-weight: 600;
    cursor: default;
}

.breadcrumbs__item[aria-current="page"]:hover {
    text-decoration: none;
}

.breadcrumbs__sep {
    color: var(--text-faint);
}

/* ============================ Lista de objetos ============================ */

.objlist {
    position: relative;
}

.objlist__spacer {
    position: relative;
    width: 100%;
}

.objlist__window {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

/* `border: 0` es obligatorio: es un <button> y si no, el navegador le pone su
   borde por defecto a los cuatro lados y cada fila parece una caja. */
.objrow {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    height: var(--row-h);
    padding: 0 var(--sp-2) 0 var(--sp-3);
    border: 0;
    border-bottom: 1px solid var(--separator);
    cursor: pointer;
    width: 100%;
    background: none;
    text-align: left;
    color: inherit;
    min-width: 0;
}

.objrow:last-child {
    border-bottom: 0;
}

.objrow:hover {
    background: var(--hover);
}

.objrow[aria-current="true"] {
    background: var(--active);
    box-shadow: inset 3px 0 0 var(--brand);
}

.objrow__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.objrow__name {
    font-size: var(--fs-sm);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.objrow__label {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.objrow__count {
    font-size: var(--fs-xs);
    color: var(--text-faint);
    flex-shrink: 0;
}

.star {
    background: none;
    border: 0;
    cursor: pointer;
    padding: 2px;
    line-height: 1;
    color: var(--text-faint);
    flex-shrink: 0;
    font-size: var(--fs-md);
}

.star:hover {
    color: var(--warn);
}

.star[aria-pressed="true"] {
    color: var(--warn);
}

.objlist__group {
    padding: var(--sp-2) var(--sp-3) var(--sp-1);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-faint);
    background: var(--surface-2);
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 2;
}

.objrow__matches {
    padding: 0 var(--sp-3) var(--sp-2) var(--sp-5);
    border-bottom: 1px solid var(--separator);
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-1);
}

.fieldpill {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    padding: 1px 6px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: var(--surface);
    cursor: pointer;
    color: var(--text-muted);
}

.fieldpill:hover {
    border-color: var(--brand);
    color: var(--brand);
}

/* ============================ Cabecera de objeto ============================ */

.objhead {
    border-bottom: 2px solid var(--brand);
    padding-bottom: var(--sp-3);
    margin-bottom: var(--sp-4);
}

.objhead__top {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    flex-wrap: wrap;
}

.objhead__titles {
    min-width: 0;
    flex: 1;
}

.objhead__title {
    font-size: var(--fs-xl);
    color: var(--brand);
    display: flex;
    align-items: baseline;
    gap: var(--sp-2);
    flex-wrap: wrap;
}

.objhead__api {
    font-family: var(--font-mono);
    font-size: var(--fs-md);
    color: var(--text-muted);
    font-weight: 400;
}

.objhead__actions {
    display: flex;
    gap: var(--sp-2);
    flex-wrap: wrap;
}

/* ============================ Ficha plegable ============================ */

.overview {
    margin-bottom: var(--sp-4);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-2);
}

.overview__summary {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-2) var(--sp-3);
    cursor: pointer;
    list-style: none;
    font-size: var(--fs-sm);
    flex-wrap: wrap;
}

.overview__summary::-webkit-details-marker {
    display: none;
}

.overview__summary:hover {
    background: var(--hover);
    border-radius: var(--radius);
}

.overview__caret {
    color: var(--text-muted);
    transition: transform 0.12s ease;
    display: inline-block;
}

.overview[open] .overview__caret {
    transform: rotate(90deg);
}

.overview__bits {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    flex-wrap: wrap;
    color: var(--text);
}

.overview__hint {
    margin-left: auto;
    color: var(--text-faint);
    font-size: var(--fs-xs);
}

.overview[open] .overview__hint {
    visibility: hidden;
}

.overview__body {
    padding: 0 var(--sp-3) var(--sp-2);
    border-top: 1px solid var(--border);
}

.overview__body .factgrid,
.overview__body .caps {
    margin-bottom: 0;
    margin-top: var(--sp-3);
}

.overview__body .factgrid {
    border: 0;
    background: transparent;
    padding: 0;
}

.factgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--sp-3);
    background: var(--bg-sunken);
    border: 1px solid var(--border);
    padding: var(--sp-3);
    border-radius: var(--radius);
    margin-bottom: var(--sp-4);
}

.fact {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.fact__label {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.fact__value {
    font-size: var(--fs-md);
    font-weight: 500;
    word-break: break-word;
}

/* Capacidades: el verde/gris distingue "sí/no" sin que un "no" parezca un error.
   El rojo queda reservado a los rasgos que sí son una advertencia (obsoleto). */

.caps {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    align-items: flex-start;
    margin-bottom: var(--sp-5);
}

.caps__traits {
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-1);
}

.caps__group {
    min-width: 200px;
}

.caps__title {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: var(--sp-1);
}

.cap {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: var(--fs-xs);
    border: 1px solid transparent;
    cursor: help;
    white-space: nowrap;
}

.cap__mark {
    font-weight: 700;
}

.cap--yes {
    background: color-mix(in srgb, var(--ok) 14%, transparent);
    border-color: color-mix(in srgb, var(--ok) 40%, transparent);
    color: var(--ok);
}

.cap--no {
    background: transparent;
    border-color: var(--border);
    color: var(--text-faint);
}

/* ============================ Tabs de vista ============================ */

.tabs {
    display: flex;
    gap: var(--sp-1);
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--sp-4);
}

.tab {
    background: none;
    border: 0;
    border-bottom: 2px solid transparent;
    padding: var(--sp-2) var(--sp-3);
    cursor: pointer;
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

.tab:hover {
    color: var(--text);
}

.tab[aria-selected="true"] {
    color: var(--brand);
    border-bottom-color: var(--brand);
    font-weight: 600;
}

/* ============================ Secciones y tablas ============================ */

.section {
    margin-bottom: var(--sp-6);
}

.section__title {
    font-size: var(--fs-lg);
    margin-bottom: var(--sp-3);
    padding-bottom: var(--sp-1);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    flex-wrap: wrap;
}

.section__count {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    font-weight: 400;
}

.toolbar {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    flex-wrap: wrap;
    margin-bottom: var(--sp-2);
}

.toolbar__grow {
    flex: 1;
    min-width: 180px;
}

.ftcolumns summary {
    list-style: none;
    display: inline-flex;
}

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

.tablewrap {
    width: 100%;
    overflow: auto;
    max-height: 70vh;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

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

th,
td {
    padding: var(--cell-pad-y) var(--cell-pad-x);
    text-align: left;
    border-bottom: 1px solid var(--separator);
    font-size: var(--fs-md);
    vertical-align: top;
    overflow-wrap: break-word;
}

th {
    background: var(--surface-2);
    font-weight: 600;
    color: var(--text-muted);
    position: sticky;
    top: 0;
    z-index: 10;
    white-space: nowrap;
    box-shadow: inset 0 -1px 0 var(--border);
}

th.sortable {
    cursor: pointer;
    user-select: none;
}

th.sortable:hover {
    color: var(--text);
}

th[aria-sort="ascending"]::after {
    content: " ▲";
    font-size: 0.7em;
    color: var(--brand);
}

th[aria-sort="descending"]::after {
    content: " ▼";
    font-size: 0.7em;
    color: var(--brand);
}

tbody tr:hover {
    background: var(--hover);
}

tr.is-target {
    background: var(--active);
    box-shadow: inset 3px 0 0 var(--brand);
}

.col-label,
.col-name {
    max-width: 220px;
}

.cell-api {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
}

.reflink {
    background: none;
    border: 0;
    padding: 0;
    color: var(--brand);
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
}

.reflink:hover {
    text-decoration: underline;
}

.rowtoggle {
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--text-muted);
    width: 20px;
    padding: 0;
}

.rowtoggle[aria-expanded="true"] {
    color: var(--brand);
}

.detailrow>td {
    background: var(--bg-sunken);
}

.kvgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--sp-2) var(--sp-4);
    padding: var(--sp-2) 0;
}

.kv {
    display: flex;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    min-width: 0;
}

.kv__k {
    color: var(--text-muted);
    flex-shrink: 0;
}

.kv__v {
    font-weight: 500;
    overflow-wrap: anywhere;
}

.formula {
    grid-column: 1 / -1;
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--sp-2);
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    max-height: 220px;
    overflow: auto;
}

.loadmore {
    display: flex;
    justify-content: center;
    padding: var(--sp-3);
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

/* ============================ Popover de picklist ============================ */

.popover {
    position: fixed;
    z-index: 80;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    box-shadow: var(--shadow-3);
    width: min(380px, 92vw);
    max-height: 60vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.popover__head {
    padding: var(--sp-2);
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: var(--sp-2);
    align-items: center;
}

.popover__body {
    overflow-y: auto;
    padding: var(--sp-1) 0;
}

.pvitem {
    padding: var(--sp-1) var(--sp-3);
    font-size: var(--fs-sm);
    display: flex;
    gap: var(--sp-2);
    align-items: baseline;
}

.pvitem__value {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: var(--fs-xs);
}

.pvitem--inactive {
    opacity: 0.55;
}

/* ============================ Command palette ============================ */

.palette {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--overlay);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12vh;
}

.palette[hidden] {
    display: none;
}

.palette__box {
    width: min(680px, 94vw);
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 70vh;
}

.palette__input {
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: var(--sp-4);
    font-size: var(--fs-lg);
    background: transparent;
}

.palette__input:focus {
    outline: none;
}

.palette__list {
    overflow-y: auto;
}

.palette__item {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    width: 100%;
    background: none;
    border: 0;
    text-align: left;
    padding: var(--sp-2) var(--sp-4);
    cursor: pointer;
    color: inherit;
}

.palette__item[data-active="true"] {
    background: var(--active);
}

.palette__item__main {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.palette__item__sub {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    flex-shrink: 0;
}

.palette__hint {
    padding: var(--sp-2) var(--sp-4);
    border-top: 1px solid var(--border);
    font-size: var(--fs-xs);
    color: var(--text-muted);
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

kbd {
    font-family: var(--font-mono);
    font-size: 0.85em;
    border: 1px solid var(--border-strong);
    border-bottom-width: 2px;
    border-radius: 3px;
    padding: 0 4px;
    background: var(--surface-2);
}

/* ============================ Toasts ============================ */

.toasts {
    position: fixed;
    bottom: var(--sp-4);
    right: var(--sp-4);
    z-index: 120;
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    pointer-events: none;
}

.toast {
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-left: 4px solid var(--brand);
    border-radius: var(--radius);
    box-shadow: var(--shadow-2);
    padding: var(--sp-2) var(--sp-3);
    font-size: var(--fs-sm);
    max-width: 380px;
    animation: toast-in 0.16s ease;
}

.toast--error {
    border-left-color: var(--danger);
}

.toast--ok {
    border-left-color: var(--ok);
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
}

/* ============================ Estados ============================ */

.skeleton {
    background: linear-gradient(90deg, var(--surface-2) 25%, var(--surface-3) 37%, var(--surface-2) 63%);
    background-size: 400% 100%;
    animation: shimmer 1.2s ease-in-out infinite;
    border-radius: var(--radius-sm);
    height: 14px;
    margin-bottom: var(--sp-2);
}

@keyframes shimmer {
    from {
        background-position: 100% 0;
    }

    to {
        background-position: 0 0;
    }
}

.empty {
    padding: var(--sp-6);
    text-align: center;
    color: var(--text-muted);
}

.empty__hint {
    margin-top: var(--sp-4);
}

.empty__title {
    font-size: var(--fs-lg);
    color: var(--text);
    margin-bottom: var(--sp-2);
}

.notice {
    padding: var(--sp-2) var(--sp-3);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface-2);
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-3);
}

.notice--warn {
    border-left: 4px solid var(--warn);
}

.notice--error {
    border-left: 4px solid var(--danger);
}

/* ============================ Grafo ============================ */

.graph {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
}

.graph__toolbar {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    flex-wrap: wrap;
    padding: var(--sp-2);
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
}

.graph__canvas {
    height: min(70vh, 720px);
    width: 100%;
    background: var(--bg-sunken);
}

.graph__legend {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
    padding: var(--sp-2);
    border-top: 1px solid var(--border);
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.legend__swatch {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin-right: 4px;
    vertical-align: middle;
}

.graph__error {
    margin: var(--sp-4);
}

/* ============================ Comparación ============================ */

.cmp__head {
    display: flex;
    gap: var(--sp-3);
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: var(--sp-4);
}

.cmp__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--sp-3);
    margin-bottom: var(--sp-4);
}

.stat {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--sp-3);
    background: var(--surface-2);
}

.stat__n {
    font-size: 1.6rem;
    font-weight: 700;
}

.stat__label {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

td.cmp-only-a {
    box-shadow: inset 3px 0 0 var(--brand);
}

td.cmp-only-b {
    box-shadow: inset -3px 0 0 var(--warn);
}

.cmp-diff {
    color: var(--warn);
    font-weight: 600;
}

.cmp-missing {
    color: var(--text-faint);
    font-style: italic;
}

/* ============================ Documentación (MCP) ============================ */

.doc {
    max-width: 78ch;
    font-size: var(--fs-md);
    line-height: 1.55;
}

.doc p {
    margin: 0 0 var(--sp-3);
    color: var(--text-muted);
}

.doc__lead {
    font-size: var(--fs-lg);
    line-height: 1.5;
}

.doc strong,
.doc code {
    color: var(--text);
}

.doc__facts {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-2);
    padding: var(--sp-3);
    margin-bottom: var(--sp-5);
}

.doc__h {
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--text);
    margin: var(--sp-5) 0 var(--sp-2);
    padding-bottom: var(--sp-1);
    border-bottom: 1px solid var(--border);
}

.doc__note {
    font-size: var(--fs-sm);
    margin-top: var(--sp-3);
}

.doc__args {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.doc__details>summary {
    cursor: pointer;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: var(--sp-2);
}

.doc__details>summary:hover {
    color: var(--text);
}

.snippet {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    margin-bottom: var(--sp-3);
}

.snippet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-2);
    padding: var(--sp-1) var(--sp-2);
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
}

.snippet__label {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.snippet__code {
    padding: var(--sp-3);
    font-size: var(--fs-sm);
    overflow-x: auto;
    color: var(--text);
}
