/* ==========================================================================
   GHM Consulta — design tokens (replica do artifact "GHM Consulta - Material
   Design"). Este arquivo é carregado DEPOIS do Bootstrap e sobrepõe cores,
   raios e sombras dos componentes; classes utilitárias do Bootstrap (d-flex,
   gap-*, text-muted, etc.) continuam funcionando normalmente.
   ========================================================================== */

:root {
    --bg: #EEF1E7;
    --surface: #FFFFFF;
    --ink: #1B1C18;
    --ink-soft: #33352B;
    --muted: #45483D;
    --muted-2: #6B6F60;
    --border: #DDE1D3;
    --border-2: #E1E4D8;
    --border-3: #C9CCC1;
    --border-4: #B7BBAB;
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-tint: #DCEBC0;
    --primary-tint-2: #E4F1DC;
    --info: #1565C0;
    --info-dark: #0D47A1;
    --info-tint: #EAF0FA;
    --warn-ink: #7A5C00;
    --warn-tint: #F1EBD7;
    --danger: #B3261E;
    --danger-tint: #FBEAE9;
    --table-head: #F6F8F1;
    --table-row-border: #EEF0E8;
    --radius-card: 20px;
    --radius-field: 12px;
    --radius-pill: 999px;
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-pop: 0 1px 3px rgba(0, 0, 0, 0.18);
    --shadow-dialog: 0 12px 40px rgba(0, 0, 0, 0.28);
    --scrim: rgba(20, 22, 16, 0.42);
    --font: 'Roboto', system-ui, -apple-system, "Segoe UI", sans-serif;
}

html, body {
    min-height: 100vh;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--ink);
}

a {
    color: var(--info);
    text-decoration: none;
}
a:hover {
    color: var(--info-dark);
}

::selection {
    background: #C8E6A0;
}

/* --------------------------------------------------------------------
   Shell: nav rail + top app bar + conteúdo
   -------------------------------------------------------------------- */
.app-shell {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
}

.rail {
    width: 96px;
    flex-shrink: 0;
    background: var(--surface);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 24px;
    gap: 20px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.rail-logo {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 8px;
}
.rail-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px 8px;
    border-radius: 16px;
    width: 64px;
    box-sizing: border-box;
    color: var(--muted-2);
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.rail-item:hover {
    color: var(--primary-dark);
    text-decoration: none;
}
.rail-item span {
    font-size: 11px;
    font-weight: 500;
}
.rail-item.active {
    background: var(--primary-tint);
    color: #33511A;
}
.rail-item.active span {
    color: #33511A;
}

.app-main {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.topbar {
    height: 72px;
    flex-shrink: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 32px;
    gap: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.topbar-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.2px;
    text-decoration: none;
}
.topbar-title:hover {
    color: var(--ink);
}

.topbar-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}

.topbar-greeting {
    font-size: 17px;
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-spacer {
    flex-grow: 1;
}

.icon-circle-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-pill);
    border: none;
    background: var(--primary-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #33511A;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
}
.icon-circle-btn:hover {
    color: #33511A;
    background: #CFE3AC;
}

.app-content {
    flex-grow: 1;
    padding: 32px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 720px) {
    .rail { width: 72px; }
    .rail-item { width: 52px; }
    .app-content { padding: 20px; }
    .topbar { padding: 0 16px; }
}

/* --------------------------------------------------------------------
   Autenticação (tela cheia, sem rail/topbar)
   -------------------------------------------------------------------- */
.auth-body {
    background: var(--surface);
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
}

.login-box {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 24px;
    box-sizing: border-box;
}

.login-box h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #14213A;
}

.login-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.login-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}
.login-input-group {
    height: 48px;
    border-radius: var(--radius-field);
    border: 1px solid var(--border-3);
    background: var(--surface);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 10px;
    box-sizing: border-box;
}
.login-input-group:focus-within {
    border-color: var(--primary);
}
.login-input-group .icon {
    color: var(--muted-2);
    display: flex;
    flex-shrink: 0;
}
.login-input-group input {
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    flex-grow: 1;
    background: transparent;
    color: var(--ink);
    min-width: 0;
}
.login-input-group input::placeholder {
    color: #8A8D7F;
}

.login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    cursor: pointer;
    width: 100%;
}
.login-remember input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    border-radius: 4px;
    margin: 0;
}

.login-forgot {
    align-self: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--info);
}

.login-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4px;
}
.login-logo img {
    width: 96px;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------
   Botões
   -------------------------------------------------------------------- */
.btn {
    font-family: inherit;
    font-weight: 500;
    box-sizing: border-box;
}

.btn-primary,
.btn-check:checked + .btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    border-radius: var(--radius-pill) !important;
    box-shadow: var(--shadow-pop);
}
.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.btn-outline-primary {
    color: #33511A !important;
    border-color: var(--border-4) !important;
    background: var(--surface) !important;
    border-radius: var(--radius-field) !important;
}
.btn-outline-primary:hover {
    background: var(--primary-tint-2) !important;
    color: #33511A !important;
}

.btn-outline-secondary {
    color: #33511A !important;
    border-color: var(--border-4) !important;
    background: var(--surface) !important;
    border-radius: var(--radius-field) !important;
}
.btn-outline-secondary:hover {
    background: #F1F2EC !important;
    color: #33511A !important;
}

.btn-outline-danger {
    border-radius: var(--radius-field) !important;
}

.btn-outline-success {
    border-radius: var(--radius-field) !important;
}

.btn-login {
    height: 48px;
    border-radius: var(--radius-field);
    background: var(--primary);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-pop);
    box-sizing: border-box;
    width: 100%;
    border: none;
    text-decoration: none;
    cursor: pointer;
}
.btn-login:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn-pill-outline {
    height: 40px;
    padding: 0 20px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-4);
    background: var(--surface);
    color: #33511A;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
}
.btn-pill-outline:hover {
    background: #F1F2EC;
    color: #33511A;
}

.btn-pill-primary {
    height: 48px;
    padding: 0 22px;
    border-radius: var(--radius-pill);
    border: none;
    background: var(--primary);
    color: #FFFFFF;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: var(--shadow-pop);
    box-sizing: border-box;
    text-decoration: none;
}
.btn-pill-primary:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn-bulk-action {
    height: 40px;
    padding: 0 20px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-3);
    background: var(--surface);
    color: var(--muted-2);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: not-allowed;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-bulk-action.active {
    background: var(--info-tint);
    border-color: transparent;
    color: var(--info-dark);
    cursor: pointer;
}
.btn-bulk-action.active:hover {
    background: var(--info);
    color: #fff;
}

.cnpj-nome-link {
    cursor: pointer;
}
.cnpj-nome-link:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------
   Cards, tabelas
   -------------------------------------------------------------------- */
.card {
    border-radius: var(--radius-card) !important;
    border: 1px solid var(--border-2) !important;
    box-shadow: var(--shadow-card) !important;
    overflow: hidden;
}

.table > :not(caption) > * > * {
    background: transparent;
}

.table thead.table-light th {
    background: var(--table-head) !important;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-2) !important;
    vertical-align: middle;
}

.table td {
    border-bottom-color: var(--table-row-border) !important;
    vertical-align: middle;
    font-size: 14px;
    color: var(--ink);
}

.table-hover > tbody > tr:hover > * {
    background-color: #FAFBF7;
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.page-header h1, .page-header h4 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
}

.page-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.search-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.search-box {
    flex-grow: 1;
    max-width: 480px;
    height: 48px;
    border-radius: var(--radius-pill);
    background: var(--surface);
    border: 1px solid var(--border-3);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 10px;
    box-sizing: border-box;
}
.search-box .icon {
    color: var(--muted-2);
    display: flex;
    flex-shrink: 0;
}
.search-box input {
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
    flex-grow: 1;
    min-width: 0;
}
.search-box input::placeholder {
    color: var(--muted-2);
}

/* --------------------------------------------------------------------
   Ícones de ação nas tabelas
   -------------------------------------------------------------------- */
.icon-btn {
    font-size: 1.25rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
}
.icon-btn.disabled {
    opacity: 0.35;
    pointer-events: none;
}

.icon-action {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: none;
    background: var(--info-tint);
    color: var(--info);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}
.icon-action:hover {
    background: #DCE8F8;
    color: var(--info-dark);
}
.icon-action.muted {
    background: #EEF0E8;
    color: var(--muted-2);
    cursor: not-allowed;
}
.icon-action.dim {
    background: #EEF0E8;
    color: var(--muted-2);
}
.icon-action.dim:hover {
    background: #DCE8F8;
    color: var(--info-dark);
}
.icon-action.danger {
    background: var(--danger-tint);
    color: var(--danger);
}
.icon-action.danger:hover {
    background: #F6D9D7;
}
.icon-action.success {
    background: var(--primary-tint-2);
    color: var(--primary);
}
.icon-action.success:hover {
    background: #D3EAC5;
}
.icon-action:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.icon-action-group {
    display: flex;
    justify-content: center;
    gap: 6px;
}

/* --------------------------------------------------------------------
   Badges / status pills
   -------------------------------------------------------------------- */
.badge {
    font-weight: 500 !important;
    border-radius: var(--radius-pill) !important;
}
.badge.bg-secondary {
    background: #E4E7DA !important;
    color: #33352B !important;
}
.badge.bg-primary {
    background: var(--primary-tint-2) !important;
    color: var(--primary-dark) !important;
}
.badge.bg-success {
    background: var(--primary-tint-2) !important;
    color: var(--primary-dark) !important;
}
.badge.bg-danger {
    background: var(--danger-tint) !important;
    color: var(--danger) !important;
}

.pill-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
}
.pill-status.tone-warn {
    background: var(--warn-tint);
    color: var(--warn-ink);
}
.pill-status.tone-muted {
    background: #E4E7DA;
    color: #33352B;
}
.pill-status.tone-primary {
    background: var(--primary-tint-2);
    color: var(--primary-dark);
}

/* --------------------------------------------------------------------
   Switch (geração automática)
   -------------------------------------------------------------------- */
.form-check.form-switch {
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin: 0;
    min-height: 0;
}
.form-check.form-switch .form-check-input {
    width: 40px;
    height: 22px;
    margin: 0;
    border-radius: var(--radius-pill);
    background-color: var(--border-4);
    background-image: none;
    position: relative;
    border: none;
    cursor: pointer;
    box-shadow: none;
}
.form-check.form-switch .form-check-input::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: left 0.15s ease;
}
.form-check.form-switch .form-check-input:checked {
    background-color: var(--primary);
}
.form-check.form-switch .form-check-input:checked::after {
    left: 20px;
}
.form-check.form-switch .form-check-input:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.form-check.form-switch .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.25);
}

/* --------------------------------------------------------------------
   Formulários
   -------------------------------------------------------------------- */
.form-control, .form-select {
    border-radius: var(--radius-field) !important;
    border-color: var(--border-3) !important;
    min-height: 48px;
    font-family: inherit;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15) !important;
}
.form-control[readonly] {
    background: var(--bg) !important;
    color: var(--muted-2);
    cursor: not-allowed;
}
.form-control[readonly]:focus {
    box-shadow: none !important;
}
.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}

/* --------------------------------------------------------------------
   Diálogos / modais (Bootstrap continua controlando show/hide via JS;
   aqui só a aparência é redesenhada para casar com o artifact)
   -------------------------------------------------------------------- */
.modal-backdrop {
    background: var(--scrim) !important;
}
.modal-backdrop.show {
    opacity: 1 !important;
}
.modal-content {
    border-radius: 24px !important;
    border: none !important;
    box-shadow: var(--shadow-dialog) !important;
}
.modal-header {
    border-bottom: none !important;
    padding: 28px 32px 0 !important;
    align-items: flex-start;
}
.modal-header .modal-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
}
.modal-header .btn-close {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-pill);
    background: #F1F2EC url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2345483D' stroke-width='2.2' stroke-linecap='round'%3e%3cpath d='M6 6l12 12'/%3e%3cpath d='M18 6 6 18'/%3e%3c/svg%3e") center/16px no-repeat;
    opacity: 1;
    margin: 0 0 0 auto;
}
.modal-body {
    padding: 18px 32px 28px !important;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
}
.modal-footer {
    border-top: none !important;
    padding: 0 32px 28px !important;
}

/* --------------------------------------------------------------------
   Diálogo de CNPJ (cartão centralizado, mesmo visual do modal do artifact)
   -------------------------------------------------------------------- */
.dialog-page {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dialog-card {
    width: 100%;
    max-width: 480px;
    background: var(--surface);
    border-radius: 24px;
    box-shadow: var(--shadow-dialog);
    box-sizing: border-box;
    padding: 28px 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.dialog-card h2 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
}
.dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 4px;
}
.btn-text {
    height: 40px;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}
.btn-text:hover {
    color: var(--ink);
}

/* --------------------------------------------------------------------
   Stat cards / Consumo
   -------------------------------------------------------------------- */
.stat-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.stat-card {
    flex: 1;
    min-width: 220px;
    background: var(--surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-2);
    box-shadow: var(--shadow-card);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-sizing: border-box;
}
.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-icon.tone-green { background: var(--primary-tint-2); color: var(--primary); }
.stat-icon.tone-blue { background: var(--info-tint); color: var(--info); }
.stat-icon.tone-tan { background: var(--warn-tint); color: var(--warn-ink); }
.stat-card .stat-value {
    font-size: 30px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}
.stat-card .stat-label {
    font-size: 13px;
    color: var(--muted-2);
    margin-top: 4px;
}

.period-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 44px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-3);
    background: var(--surface);
    padding: 0 6px;
    box-sizing: border-box;
}
.period-nav .icon-circle-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    color: var(--muted);
}
.period-nav .icon-circle-btn:hover {
    background: #F1F2EC;
}
.period-nav span {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    padding: 0 6px;
    min-width: 150px;
    text-align: center;
}

.consumo-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: stretch;
}
.chart-card, .breakdown-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-2);
    box-shadow: var(--shadow-card);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.chart-card {
    flex: 1.3;
    min-width: 320px;
    padding: 22px 26px;
    gap: 16px;
}
.breakdown-card {
    flex: 1;
    min-width: 280px;
    overflow: hidden;
}
.chart-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.chart-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
}
.chart-legend {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.chart-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
}
.chart-legend-item .swatch {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    display: inline-block;
}
.swatch.emissao { background: var(--primary); }
.swatch.consulta { background: var(--info); }

.breakdown-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: 0 20px;
    height: 46px;
    align-items: center;
    border-bottom: 1px solid var(--table-row-border);
}
.breakdown-row.head {
    height: 44px;
    background: var(--table-head);
    border-bottom: 1px solid var(--border-2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--muted);
    text-transform: uppercase;
}
.breakdown-row.total {
    background: var(--table-head);
    border-bottom: none;
    font-weight: 700;
    color: var(--ink);
}
.breakdown-row .num {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------
   Diversos
   -------------------------------------------------------------------- */
.alert {
    border-radius: var(--radius-field) !important;
    border: none !important;
}
.alert-success { background: var(--primary-tint-2) !important; color: var(--primary-dark) !important; }
.alert-danger { background: var(--danger-tint) !important; color: var(--danger) !important; }
.alert-warning { background: var(--warn-tint) !important; color: var(--warn-ink) !important; }

#loadingOverlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 22, 16, 0.72);
    color: #fff;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}
.loading-gif {
    width: 140px;
    height: auto;
    border-radius: var(--radius-field);
    background: #fff;
    padding: 12px;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    width: fit-content;
    text-decoration: none;
}
.breadcrumb-link:hover {
    color: var(--ink);
}

.text-eyebrow {
    font-size: 13px;
    color: var(--muted-2);
}
