/* products.css — Products page styles */

/* Channel presence dots */
.product-channels {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: nowrap;
}
.product-channel-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    opacity: 0.2;
    transition: opacity 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    cursor: default;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}
.product-channel-dot.active {
    opacity: 1;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.06);
}
a.product-channel-dot {
    cursor: pointer;
}
a.product-channel-dot:hover {
    transform: scale(1.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3), 0 0 0 2px var(--accent-soft, rgba(60, 131, 111, 0.25));
}
a.product-channel-dot:focus-visible {
    outline: 2px solid var(--ring, var(--ds-forest));
    outline-offset: 2px;
}


/* Content grade */
.content-grade {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.content-grade-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-soft);
}
.content-grade-dot.filled {
    background: var(--ds-forest, #3C836F);
}

/* Product table overrides */
#products-table {
    width: 100%;
    min-width: 1320px;
    border-collapse: separate;
    border-spacing: 0;
}
#products-table thead th {
    position: sticky;
    top: 0;
    background: var(--surface);
    z-index: 2;
    box-shadow: 0 1px 0 var(--border-soft), 0 4px 12px rgba(0, 0, 0, 0.03);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-tertiary);
    padding: var(--space-12) var(--space-10);
    white-space: nowrap;
}
#products-table thead th.products-th-numeric {
    text-align: right;
}
#products-table th.products-sort {
    cursor: pointer;
    user-select: none;
    transition: color 0.12s ease, background 0.12s ease;
}
#products-table th.products-sort:hover {
    color: var(--ds-forest);
    background: var(--accent-soft);
}
#products-table th.products-sort .sort-icon {
    margin-left: 4px;
    font-size: 0.85em;
}
#products-table th.products-sort .sort-icon::after {
    content: "";
    opacity: 0.35;
}
#products-table th.products-sort.sorted-asc .sort-icon::after {
    content: "↑";
    opacity: 1;
}
#products-table th.products-sort.sorted-desc .sort-icon::after {
    content: "↓";
    opacity: 1;
}
#products-table tbody td {
    vertical-align: top;
    padding: var(--space-12) var(--space-10);
    font-variant-numeric: tabular-nums;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
#products-table tbody tr.product-table-row {
    transition: background 0.12s ease;
}
#products-table tbody tr.product-table-row:nth-child(even) {
    background: rgba(60, 131, 111, 0.028);
}
#products-table tbody tr.product-table-row:hover {
    background: var(--surface-hover, rgba(60, 131, 111, 0.07));
}
#products-table tbody tr.product-table-row:last-child td {
    border-bottom: none;
}

/* Refined product grid (reference layout: segment coverage, multi-line product, Δ vs prior period) */
#products-table.products-table-refined thead th {
    background: #f5f5f5;
    color: #6b7280;
    font-weight: 700;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: none;
    vertical-align: middle;
}
#products-table.products-table-refined thead th:first-child {
    padding-left: var(--space-14);
}
#products-table.products-table-refined thead th.products-th-numeric {
    text-align: right;
    padding-left: var(--space-8);
    padding-right: var(--space-12);
}
#products-table.products-table-refined thead th.products-th-center {
    text-align: center;
    padding-left: var(--space-8);
    padding-right: var(--space-8);
}
#products-table.products-table-refined thead th.products-retailer-th {
    text-align: center;
    padding-left: var(--space-8);
    padding-right: var(--space-8);
}
#products-table.products-table-refined tbody td {
    border-bottom: 1px solid #eee;
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
    padding-left: var(--space-10);
    padding-right: var(--space-10);
    vertical-align: middle;
}
#products-table.products-table-refined tbody td:first-child {
    padding-left: var(--space-14);
}
#products-table.products-table-refined tbody tr.product-table-row:nth-child(even) {
    background: transparent;
}
#products-table.products-table-refined tbody tr.product-table-row:hover {
    background: rgba(0, 0, 0, 0.02);
}
.products-delta-th-sub {
    font-size: 0.72em;
    font-weight: 600;
    color: var(--text-tertiary);
    letter-spacing: 0.02em;
}
.products-name-cell--rich {
    min-width: 200px;
    max-width: min(340px, 36vw);
}
.product-title-strong {
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
    display: block;
}
.product-title-sub {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    font-weight: 500;
    margin-top: 4px;
    line-height: 1.35;
}
.products-sku-chevron {
    color: var(--text-tertiary);
    font-size: var(--text-xs);
    font-weight: 400;
    margin-left: 6px;
    opacity: 0.7;
}
.product-coverage-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.product-coverage-bars {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}
.product-coverage-seg {
    display: inline-block;
    width: 22px;
    height: 6px;
    border-radius: 999px;
    background: #e8eaed;
}
.product-coverage-seg--on {
    background: #2d9b5e;
}
.product-coverage-fraction {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}
.products-coverage-cell {
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    width: 3.5rem;
    min-width: 3.5rem;
    max-width: 3.5rem;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}
.products-retailer-cell {
    text-align: center;
    vertical-align: middle;
    min-width: 72px;
    width: 1%;
    padding-left: var(--space-8);
    padding-right: var(--space-8);
}
.products-retailer-num {
    font-weight: 700;
    color: #111827;
    font-variant-numeric: tabular-nums;
}
.products-retailer-num--muted {
    font-weight: 600;
    color: #9ca3af;
    font-variant-numeric: tabular-nums;
}
.products-retailer-link {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    min-width: 2.75rem;
    padding: 2px 4px 3px;
    box-sizing: border-box;
    text-align: center;
    border-bottom: 1px dotted rgba(17, 24, 39, 0.35);
    line-height: 1.25;
}
.products-retailer-link:hover {
    border-bottom-color: rgba(17, 24, 39, 0.55);
}
.products-retailer-link--muted {
    color: var(--text-tertiary);
    border-bottom-color: rgba(156, 163, 175, 0.7);
}
/* Bare numeric / dash in cells without a PDP link — same width slot as links */
.products-retailer-cell--empty .products-retailer-num,
.products-retailer-cell--empty .products-retailer-num--muted {
    display: inline-block;
    min-width: 2.75rem;
    text-align: center;
    padding: 2px 4px 3px;
    box-sizing: border-box;
    line-height: 1.25;
}
.products-retailer-cell--empty .products-retailer-num--muted {
    border-bottom: 1px dotted rgba(156, 163, 175, 0.45);
}
.products-retailer-em {
    color: #9ca3af;
    font-weight: 500;
    display: inline-block;
    min-width: 2.75rem;
    text-align: right;
}
.products-units-cell {
    text-align: right;
    vertical-align: middle;
    white-space: nowrap;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: #111827;
    min-width: 4.75rem;
    padding-left: var(--space-8);
    padding-right: var(--space-12);
}
.products-revenue-cell {
    text-align: right;
    vertical-align: middle;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    min-width: 7.25rem;
    padding-left: var(--space-8);
    padding-right: var(--space-12);
}
.products-delta-cell {
    text-align: right;
    vertical-align: middle;
    white-space: nowrap;
    min-width: 5rem;
    padding-left: var(--space-8);
    padding-right: var(--space-12);
}
/* Override refined tbody td padding — ID+tbody beats bare class specificity */
#products-table.products-table-refined tbody td.products-units-cell,
#products-table.products-table-refined tbody td.products-revenue-cell,
#products-table.products-table-refined tbody td.products-delta-cell {
    padding-left: var(--space-8);
    padding-right: var(--space-12);
}
#products-table.products-table-refined tbody td.products-coverage-cell {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}
#products-table.products-table-refined tbody td.products-sku-cell {
    padding-left: var(--space-8);
    padding-right: var(--space-10);
}
.product-delta {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.product-delta--pos {
    color: #1e7a3d;
}
.product-delta--neg {
    color: #b45309;
}
.product-delta--na {
    color: #9ca3af;
    font-weight: 600;
}
.products-table-empty {
    text-align: center;
    padding: var(--space-24);
    color: var(--text-muted);
}
.products-sku-cell:focus-visible,
.products-name-cell:focus-visible {
    outline: 2px solid var(--ring, var(--ds-forest));
    outline-offset: -2px;
    border-radius: var(--radius-sm);
}
.products-name-cell {
    min-width: 200px;
    max-width: min(320px, 34vw);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    vertical-align: middle;
}
.products-sku-cell {
    font-family: var(--font-mono, 'Geist Mono', monospace);
    font-size: var(--text-xs);
    color: var(--text-secondary);
    white-space: nowrap;
    vertical-align: middle;
    width: 1%;
    min-width: 5.5rem;
    padding-left: var(--space-8);
    padding-right: var(--space-10);
}

/* KPI summary row */
.products-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-16);
    margin-bottom: var(--space-24);
}

/* Toolbar — light frame, no second “card” shadow (main table is the hero) */
.products-toolbar {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    flex-wrap: wrap;
    padding: var(--space-12) var(--space-16);
    margin-bottom: var(--space-16);
    background: var(--ds-green-near-white, #f5fdfd);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
}
.products-toolbar .os-filter-select:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.products-filter-input {
    min-width: min(220px, 100%);
}
.products-toolbar-checkbox-label {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.products-toolbar-checkbox-label input {
    margin: 0;
}

.products-taxonomy-cell {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    max-width: 10.5rem;
    line-height: 1.35;
    vertical-align: middle;
}

.products-group-header-row td {
    padding: 0;
    border: none;
    background: transparent;
}
.products-group-header {
    padding: var(--space-10) var(--space-10) var(--space-8) var(--space-14);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    background: var(--bg-soft, #f3f4f6);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

/* Product filter bar (legacy hook; merged into toolbar) */
.products-filter-bar {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    flex-wrap: wrap;
    width: 100%;
}

/* Retailer column header abbreviations */
.products-retailer-th {
    text-align: center;
    min-width: 68px;
}

/* Inline edit URL pencil icon */
.edit-url-btn {
    display: inline-block;
    opacity: 0;
    cursor: pointer;
    font-size: 11px;
    color: var(--text-tertiary);
    margin-left: 2px;
    transition: opacity 0.15s;
}
td:hover .edit-url-btn {
    opacity: 0.6;
}
.edit-url-btn:hover {
    opacity: 1 !important;
    color: var(--ds-forest, #3C836F);
}
.edit-url-btn:focus-visible {
    opacity: 1;
    outline: 2px solid var(--ring, var(--ds-forest));
    outline-offset: 2px;
    border-radius: 2px;
}

/* Review stars */
.products-stars {
    color: #d4a017;
    font-size: var(--text-sm);
    letter-spacing: -1px;
    white-space: nowrap;
}
.products-review-count {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin-left: 4px;
}

/* Pillar section cards */
.products-pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-16);
    margin-bottom: var(--space-24);
}
.products-pillar-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-16);
    padding-left: calc(var(--space-16) + 10px);
    box-shadow: var(--elevation-1);
    transition: border-color 0.18s ease;
}
.products-pillar-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: var(--space-10);
    bottom: var(--space-10);
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, var(--ds-forest), var(--ds-sage));
    opacity: 0.75;
}
.products-pillar-card:hover {
    border-color: rgba(60, 131, 111, 0.3);
}
.products-pillar-card .pillar-label {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-4);
}
.products-pillar-card .pillar-value {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
}
.products-pillar-card .pillar-meta {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin-top: var(--space-4);
}

/* Top catalog gainer vs prior — card at top of Products (excl. Costco-exclusive SKUs; revenue excl. Costco channel) */
.products-catalog-top-mover.card {
    margin-bottom: var(--space-16);
}
.products-catalog-top-mover-heading {
    margin: 0 0 var(--space-8) 0;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.products-catalog-top-mover-body {
    margin: 0;
    font-size: var(--text-base);
    color: var(--text-primary);
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35em 0.5em;
}
.products-catalog-top-mover-link {
    display: inline;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    font: inherit;
    color: var(--ds-forest, #166534);
    cursor: pointer;
    text-align: left;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
}
.products-catalog-top-mover-link:hover {
    color: var(--text-primary);
}
.products-catalog-top-mover-sku,
.products-catalog-top-mover-name {
    color: var(--text-tertiary);
    font-size: var(--text-xs);
}

/* Priority filter pills */

/* Seasonal alert banner */
.products-season-alert {
    display: flex;
    align-items: flex-start;
    gap: var(--space-12);
    padding: var(--space-16);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-24);
    font-size: var(--text-sm);
    line-height: 1.6;
    border: 1px solid;
}
.products-season-alert.peak {
    background: rgba(22, 163, 74, 0.06);
    border-color: rgba(22, 163, 74, 0.2);
    color: var(--text-primary);
}
.products-season-alert.peak .season-alert-icon {
    color: #15803d;
}
.products-season-alert.warning {
    background: rgba(234, 179, 8, 0.08);
    border-color: rgba(234, 179, 8, 0.3);
    color: var(--text-primary);
}
.products-season-alert.warning .season-alert-icon {
    color: #b45309;
}
.products-season-alert.off-season {
    background: rgba(100, 116, 139, 0.06);
    border-color: rgba(100, 116, 139, 0.2);
    color: var(--text-primary);
}
.products-season-alert.off-season .season-alert-icon {
    color: #64748b;
}
.products-season-alert.ramping {
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--text-primary);
}
.products-season-alert.ramping .season-alert-icon {
    color: #2563eb;
}
.season-alert-icon {
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}
.season-alert-body strong {
    display: block;
    margin-bottom: 2px;
}
.season-alert-detail {
    color: var(--text-secondary);
    font-size: var(--text-xs);
}

/* PRD-MKT-02 D1: product detail modal — wider than the default 420px to fit
   the per-retailer breakdown table (6 columns). Applied via the
   .product-detail class added in DS.openProductDetailModal. */
#calc-modal.product-detail .modal-box { max-width: 840px; }

/* Needs attention strip */
.needs-attention-header {
    margin-bottom: var(--space-12);
}
.needs-attention-header h3 {
    margin: 0;
    font-size: var(--text-lg);
    font-weight: 700;
    letter-spacing: -0.02em;
}
.needs-attention-header p {
    margin: 6px 0 0 0;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    max-width: 52rem;
    line-height: 1.5;
}
.needs-attention-scroll {
    display: flex;
    gap: var(--space-12);
    overflow-x: auto;
    padding-bottom: var(--space-8);
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(60, 131, 111, 0.35) transparent;
}
.needs-attention-scroll::-webkit-scrollbar {
    height: 5px;
}
.needs-attention-scroll::-webkit-scrollbar-thumb {
    background: rgba(60, 131, 111, 0.35);
    border-radius: 999px;
}
.needs-attention-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.needs-attention-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    padding: var(--space-12);
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.needs-attention-card:hover {
    transform: translateY(-1px);
    box-shadow: var(--elevation-1);
    border-color: rgba(60, 131, 111, 0.25);
}
.needs-attention-card:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.needs-attention-card .needs-attention-sku {
    font-family: var(--font-mono, "Geist Mono", monospace);
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin-bottom: 2px;
}
.needs-attention-card .needs-attention-name {
    font-weight: 600;
    font-size: var(--text-sm);
    margin-bottom: var(--space-8);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-primary);
}

/* Costco warehouse card — align with catalog table polish */
.costco-card {
    border-left: 3px solid var(--ds-forest);
}
.costco-table-wrap {
    overflow-x: auto;
    margin-top: var(--space-8);
}
.costco-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: var(--text-sm);
}
.costco-data-table thead th {
    text-align: left;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-tertiary);
    padding: var(--space-10) var(--space-8);
    border-bottom: 1px solid var(--border-soft);
    white-space: nowrap;
    background: var(--surface);
}
.costco-data-table thead th.costco-th-num {
    text-align: right;
}
.costco-data-table tbody td:nth-child(n + 3) {
    text-align: right;
}
.costco-data-table tbody tr.costco-table-row:hover {
    background: var(--surface-hover, rgba(60, 131, 111, 0.06));
}
.costco-data-table tbody tr.costco-table-row:last-child td {
    border-bottom: none;
}
.costco-sku-link {
    font-family: var(--font-mono, "Geist Mono", monospace);
    font-size: var(--text-xs);
    cursor: pointer;
}
.costco-name-link {
    cursor: pointer;
}
.costco-excl-badge {
    font-size: 9px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid var(--border-soft);
    padding: 1px 4px;
    border-radius: 3px;
    vertical-align: middle;
}

/* Table card: horizontal scroll lives on the card wrapper */
.products-table-card {
    overflow-x: auto;
}

.products-section-label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-tertiary);
    margin: 0 0 var(--space-4) 0;
}
.products-section-title {
    font-size: var(--text-lg);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0 0 var(--space-8) 0;
}
.products-section-sub {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0 0 var(--space-16) 0;
    max-width: 38rem;
    line-height: 1.45;
}
.products-catalog-section {
    border-top: none;
    padding-top: 0;
}
.products-catalog-head {
    margin-bottom: 0;
}
.products-missing-callout {
    margin-top: var(--space-12);
    font-size: var(--text-xs);
    padding: var(--space-12) var(--space-14);
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.28);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    line-height: 1.5;
}
.products-missing-callout strong {
    color: var(--text-primary);
}
.products-missing-callout ul.products-missing-list {
    margin: var(--space-8) 0 0 var(--space-20);
    max-height: 120px;
    overflow-y: auto;
    padding: 0;
}

/* Executive Summary — catalog SKU distribution (non-Costco) */
.overview-catalog-charts-empty {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: 0 0 var(--space-16) 0;
    padding: var(--space-12) var(--space-16);
    background: var(--surface-elevated, rgba(0, 0, 0, 0.03));
    border-radius: var(--radius);
    border: 1px solid var(--border);
    line-height: 1.5;
}
.overview-catalog-charts-section {
    margin-bottom: var(--space-24);
}
.overview-catalog-charts-intro {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin: calc(-1 * var(--space-8)) 0 var(--space-16) 0;
    line-height: 1.45;
}
.overview-catalog-charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--space-16);
    align-items: stretch;
}
.overview-catalog-chart-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 0 !important;
}
.overview-catalog-chart-title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--space-4) 0;
}
.overview-catalog-chart-meta {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    line-height: 1.45;
    margin: 0 0 var(--space-12) 0;
    max-width: 36rem;
}
.overview-catalog-chart-canvas {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 280px;
    min-height: 280px;
}
.overview-catalog-chart-canvas--wide {
    height: 280px;
    min-height: 280px;
}
