:root {
    --lm-bg: #f6f8fb;
    --lm-surface: #ffffff;
    --lm-surface-soft: #eef4f8;
    --lm-border: #d9e2ea;
    --lm-text: #172033;
    --lm-muted: #64748b;
    --lm-cyan: #0091ff;
    --lm-cyan-soft: rgba(0, 145, 255, 0.12);
    --lm-green: #16a34a;
    --lm-amber: #d97706;
    --lm-red: #dc2626;
    --lm-radius: 8px;
    --lm-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
}

.dark {
    --lm-bg: #06111d;
    --lm-surface: #0b1826;
    --lm-surface-soft: #101f2f;
    --lm-border: #223448;
    --lm-text: #e7edf5;
    --lm-muted: #94a3b8;
    --lm-cyan-soft: rgba(0, 145, 255, 0.16);
    --lm-shadow: none;
}

body.lm-site {
    margin: 0;
    min-height: 100vh;
    background: var(--lm-bg);
    color: var(--lm-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

.lm-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.lm-main {
    min-height: 60vh;
}

.lm-topbar {
    background: #050b12;
    color: #b7c5d4;
    border-bottom: 1px solid rgba(0, 145, 255, 0.22);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 12px;
}

.lm-topbar__inner,
.lm-header__inner,
.lm-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.lm-topbar__inner {
    min-height: 32px;
}

.lm-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 248, 251, 0.92);
    border-bottom: 1px solid var(--lm-border);
    backdrop-filter: blur(14px);
}

.dark .lm-header {
    background: rgba(6, 17, 29, 0.9);
}

.lm-header__inner {
    min-height: 72px;
}

.lm-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--lm-text);
    text-decoration: none;
}

.lm-brand__mark {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
}

.lm-brand__mark svg {
    width: 100%;
    height: 100%;
}

.lm-brand__text,
.lm-footer__brand {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lm-nav__list,
.lm-footer__links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lm-nav-toggle {
    display: none;
}

.lm-nav__list a,
.lm-footer__links a {
    color: var(--lm-muted);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.lm-nav__list a:hover,
.lm-footer__links a:hover {
    color: var(--lm-cyan);
}

.lm-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.lm-icon-button,
.lm-header-cta,
.lm-button,
.lm-button-secondary {
    min-height: 38px;
    border-radius: 6px;
    border: 1px solid var(--lm-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
}

.lm-icon-button {
    width: 38px;
    background: var(--lm-surface);
    color: var(--lm-muted);
    cursor: pointer;
}

.dark .lm-icon-button__sun,
.lm-icon-button__moon {
    display: none;
}

.dark .lm-icon-button__moon {
    display: inline;
}

.lm-header-cta,
.lm-button {
    background: var(--lm-cyan);
    color: #03101c;
    border-color: var(--lm-cyan);
    padding: 0 16px;
    font-size: 13px;
}

.lm-button-secondary {
    background: var(--lm-surface);
    color: var(--lm-text);
    padding: 0 16px;
    font-size: 13px;
}

.lm-section {
    padding: 64px 0;
}

.lm-section--tight {
    padding: 36px 0;
}

.lm-page {
    padding: 54px 0 72px;
}

.lm-eyebrow {
    color: var(--lm-cyan);
    display: inline-block;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.lm-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.lm-hero h1,
.lm-page-header h1 {
    color: var(--lm-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 20px;
}

.lm-hero p,
.lm-page-header p,
.lm-lead {
    color: var(--lm-muted);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.lm-hero__panel,
.lm-card,
.lm-callout,
.lm-table-wrap,
.lm-article-card {
    background: var(--lm-surface);
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius);
    box-shadow: var(--lm-shadow);
}

.lm-hero__copy,
.lm-hero__panel {
    padding: 32px;
}

.lm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.lm-grid {
    display: grid;
    gap: 18px;
}

.lm-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lm-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lm-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lm-card,
.lm-article-card {
    padding: 22px;
}

.lm-card h2,
.lm-card h3,
.lm-article-card h3,
.lm-section-header h2 {
    color: var(--lm-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0 0 10px;
}

.lm-card p,
.lm-article-card p,
.lm-muted {
    color: var(--lm-muted);
    line-height: 1.65;
    margin: 0;
}

.lm-post-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lm-post-card__meta,
.lm-single__meta {
    align-items: center;
    color: var(--lm-muted);
    display: flex;
    flex-wrap: wrap;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 12px;
    gap: 10px;
    text-transform: uppercase;
}

.lm-post-card__link {
    color: var(--lm-cyan);
    font-size: 13px;
    font-weight: 800;
    margin-top: auto;
}

.lm-single__header {
    max-width: 860px;
}

.lm-single__media {
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius);
    margin-top: 26px;
    overflow: hidden;
}

.lm-single__media img {
    display: block;
    height: auto;
    width: 100%;
}

.lm-single__content {
    max-width: 860px;
}

.lm-single__content > * + * {
    margin-top: 1.1em;
}

.lm-single__content h2,
.lm-single__content h3,
.lm-single__content h4 {
    color: var(--lm-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.25;
    margin-top: 1.6em;
}

.lm-single__content h2 {
    font-size: clamp(24px, 3vw, 34px);
}

.lm-single__content h3 {
    font-size: 22px;
}

.lm-single__content p,
.lm-single__content li {
    color: var(--lm-muted);
    font-size: 17px;
    line-height: 1.78;
}

.lm-single__content ul,
.lm-single__content ol {
    padding-left: 1.2em;
}

.lm-single__content ul {
    list-style: disc;
}

.lm-single__content ol {
    list-style: decimal;
}

.lm-single__content blockquote {
    border-left: 4px solid var(--lm-cyan);
    color: var(--lm-muted);
    padding-left: 18px;
}

.lm-section-header {
    margin-bottom: 22px;
    max-width: 760px;
}

.lm-section-header h2 {
    font-size: clamp(24px, 3vw, 34px);
}

.lm-section-header p {
    color: var(--lm-muted);
    line-height: 1.7;
    margin: 0;
}

.lm-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--lm-border);
}

.lm-stat:last-child {
    border-bottom: 0;
}

.lm-stat__label,
.lm-table th,
.lm-small-label {
    color: var(--lm-muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
}

.lm-stat__value {
    color: var(--lm-text);
    font-weight: 800;
}

.lm-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid var(--lm-border);
    padding: 4px 10px;
    color: var(--lm-muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 12px;
    font-weight: 700;
}

.lm-badge--neutral {
    background: var(--lm-cyan-soft);
    border-color: rgba(0, 145, 255, 0.35);
    color: var(--lm-cyan);
}

.lm-badge--green {
    background: rgba(22, 163, 74, 0.12);
    border-color: rgba(22, 163, 74, 0.35);
    color: var(--lm-green);
}

.lm-badge--amber {
    background: rgba(217, 119, 6, 0.12);
    border-color: rgba(217, 119, 6, 0.35);
    color: var(--lm-amber);
}

.lm-badge--content {
    background: rgba(100, 116, 139, 0.1);
    border-color: rgba(100, 116, 139, 0.28);
    color: var(--lm-muted);
}

.lm-badge--market {
    background: var(--lm-cyan-soft);
    border-color: rgba(0, 145, 255, 0.35);
    color: var(--lm-cyan);
}

.lm-table-wrap {
    overflow-x: auto;
    position: relative;
}

.lm-table-wrap::after {
    content: "Seitlich scrollen";
    display: none;
    color: var(--lm-muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 11px;
    padding: 10px 14px 0;
    text-transform: uppercase;
}

.lm-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.lm-table th,
.lm-table td {
    border-bottom: 1px solid var(--lm-border);
    padding: 15px 16px;
    text-align: left;
    vertical-align: top;
}

.lm-table td {
    color: var(--lm-muted);
    line-height: 1.5;
}

.lm-table tr:last-child td {
    border-bottom: 0;
}

.lm-callout {
    border-left: 4px solid var(--lm-cyan);
    padding: 18px 20px;
}

.lm-callout strong {
    color: var(--lm-text);
}

.lm-home-hero-section {
    padding: 38px 0 20px;
}

.lm-hero--compact {
    grid-template-columns: minmax(0, 900px);
}

.lm-hero--compact .lm-hero__copy {
    padding: 28px 32px;
}

.lm-hero--compact h1 {
    margin-bottom: 14px;
}

.lm-hero--compact p {
    max-width: 820px;
}

.lm-home-desk-section {
    padding-top: 18px;
}

.lm-home-desk {
    align-items: stretch;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

.lm-home-desk--solo {
    grid-template-columns: minmax(0, 1fr);
}

.lm-home-panel-header {
    margin-bottom: 14px;
}

.lm-home-panel-header h2 {
    color: var(--lm-text);
    font-size: clamp(22px, 2.5vw, 30px);
    line-height: 1.15;
    margin: 0 0 8px;
}

.lm-home-panel-header p {
    color: var(--lm-muted);
    line-height: 1.5;
    margin: 0;
}

.lm-market-board,
.lm-latest-research {
    display: flex;
    flex-direction: column;
}

.lm-market-status-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lm-market-status {
    background: var(--lm-surface-soft);
    border: 1px solid var(--lm-border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-height: 72px;
    padding: 12px;
}

.lm-market-status strong {
    color: var(--lm-text);
    font-size: 16px;
}

.lm-watchlist-compact {
    border-top: 1px solid var(--lm-border);
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    margin-top: 14px;
    padding-top: 14px;
}

.lm-watchlist-compact h3 {
    color: var(--lm-text);
    font-size: 17px;
    margin: 4px 0 0;
}

.lm-watchlist-compact ul {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lm-watchlist-compact li {
    align-items: center;
    border-bottom: 1px solid var(--lm-border);
    color: var(--lm-muted);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding-bottom: 8px;
}

.lm-watchlist-compact li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.lm-featured-article,
.lm-compact-article {
    color: inherit;
    text-decoration: none;
}

.lm-featured-article {
    background: linear-gradient(180deg, var(--lm-surface-soft), var(--lm-surface));
    border: 1px solid var(--lm-border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 22px;
}

.lm-featured-article h3 {
    color: var(--lm-text);
    font-size: clamp(21px, 2.4vw, 28px);
    line-height: 1.18;
    margin: 0;
}

.lm-featured-article p {
    color: var(--lm-muted);
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.lm-compact-article-list {
    border-top: 1px solid var(--lm-border);
    display: grid;
    gap: 0;
    margin-top: 14px;
    padding-top: 2px;
}

.lm-compact-article {
    border-bottom: 1px solid var(--lm-border);
    display: grid;
    gap: 6px;
    padding: 14px 0;
}

.lm-compact-article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.lm-compact-article strong {
    color: var(--lm-text);
    display: block;
    font-weight: 800;
    line-height: 1.35;
}

.lm-compact-article small {
    color: var(--lm-muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
}

.lm-compact-article__link {
    color: var(--lm-cyan);
    font-size: 13px;
    font-weight: 800;
}

.lm-portfolio-preview {
    align-items: center;
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1fr);
}

.lm-portfolio-preview__copy h2 {
    margin-bottom: 8px;
}

.lm-portfolio-preview__chart {
    margin: 14px 0 0;
    max-height: 170px;
    object-fit: contain;
}

.lm-portfolio-preview__metrics {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lm-portfolio-preview__metrics h3 {
    color: var(--lm-text);
    margin: 4px 0 0;
}

.lm-portfolio-preview__metrics p,
.lm-portfolio-preview__metrics .lm-actions {
    grid-column: 1 / -1;
}

.lm-visual-card {
    background: var(--lm-surface);
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius);
    box-shadow: var(--lm-shadow);
    overflow: hidden;
}

.lm-visual-card + .lm-grid,
.lm-visual-card + .lm-callout,
.lm-chart-status + .lm-callout,
.lm-grid + .lm-visual-card {
    margin-top: 18px;
}

.lm-visual-card__body {
    padding: 18px 20px 20px;
}

.lm-visual {
    background: var(--lm-surface-soft);
    border-bottom: 1px solid var(--lm-border);
    width: 100%;
}

.lm-visual img {
    display: block;
    height: auto;
    width: 100%;
}

.lm-inline-visual {
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius);
    margin: 18px 0;
    width: 100%;
}

.lm-chart-status {
    border: 1px dashed rgba(0, 145, 255, 0.38);
    border-radius: var(--lm-radius);
    padding: 20px;
    background: var(--lm-cyan-soft);
}

.lm-chart-status h3 {
    margin: 0 0 8px;
    color: var(--lm-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.lm-editorial-band {
    background: var(--lm-surface-soft);
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius);
    padding: 24px;
}

.lm-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.lm-timeline {
    display: grid;
    gap: 14px;
    counter-reset: series;
}

.lm-timeline__item {
    position: relative;
    padding: 18px 18px 18px 58px;
    background: var(--lm-surface);
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius);
}

.lm-timeline__item::before {
    counter-increment: series;
    content: counter(series);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--lm-cyan-soft);
    color: var(--lm-cyan);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 12px;
    font-weight: 800;
}

.lm-footer {
    background: #050b12;
    color: #c7d2df;
    margin-top: 40px;
    padding: 40px 0 20px;
}

.lm-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, auto);
    gap: 32px;
}

.lm-footer__brand {
    color: #ffffff;
    display: inline-block;
    margin-bottom: 12px;
    text-decoration: none;
}

.lm-footer__text,
.lm-footer__note {
    color: #91a3b7;
    line-height: 1.65;
    margin: 0 0 8px;
    max-width: 620px;
}

.lm-footer__note {
    font-size: 13px;
}

.lm-footer__links {
    align-items: flex-start;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lm-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #8091a6;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 12px;
    margin-top: 28px;
    padding-top: 18px;
}

@media (min-width: 1024px) {
    .lm-home-desk {
        grid-template-columns: minmax(0, 1.63fr) minmax(340px, 1fr);
    }

    .lm-home-desk--solo {
        grid-template-columns: minmax(0, 1fr);
    }

    .lm-market-board {
        padding: 18px;
    }

    .lm-latest-research {
        padding: 24px;
    }

    .lm-market-board .lm-home-panel-header h2 {
        font-size: 24px;
    }

    .lm-market-board .lm-home-panel-header p {
        font-size: 14px;
    }

    .lm-featured-article h3 {
        font-size: clamp(26px, 2.2vw, 34px);
        line-height: 1.12;
    }

    .lm-portfolio-preview {
        grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.7fr);
        padding: 18px 20px;
    }

    .lm-portfolio-preview__chart {
        max-height: 145px;
    }
}

@media (max-width: 980px) {
    .lm-header__inner {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .lm-nav {
        order: 3;
        width: 100%;
    }

    .lm-nav__list {
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .lm-hero,
    .lm-home-desk,
    .lm-portfolio-preview,
    .lm-grid--3,
    .lm-grid--4,
    .lm-footer__grid {
        grid-template-columns: 1fr;
    }

    .lm-watchlist-compact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .lm-container {
        width: min(100% - 24px, 1180px);
    }

    .lm-topbar__inner {
        min-height: 28px;
    }

    .lm-topbar__inner span + span {
        display: none;
    }

    .lm-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .lm-header__inner {
        align-items: center;
        min-height: 58px;
        padding: 10px 0;
    }

    .lm-brand__mark {
        height: 34px;
        width: 34px;
    }

    .lm-brand__text {
        font-size: 13px;
    }

    .lm-header__actions {
        justify-content: flex-end;
        width: auto;
    }

    .lm-header-cta {
        display: none;
    }

    .lm-nav-toggle {
        align-items: center;
        background: var(--lm-surface);
        border: 1px solid var(--lm-border);
        border-radius: 6px;
        color: var(--lm-text);
        display: inline-flex;
        font-size: 13px;
        font-weight: 800;
        gap: 8px;
        min-height: 38px;
        padding: 0 12px;
    }

    .lm-nav-toggle__bars,
    .lm-nav-toggle__bars::before,
    .lm-nav-toggle__bars::after {
        background: currentColor;
        border-radius: 999px;
        display: block;
        height: 2px;
        width: 15px;
    }

    .lm-nav-toggle__bars {
        position: relative;
    }

    .lm-nav-toggle__bars::before,
    .lm-nav-toggle__bars::after {
        content: "";
        position: absolute;
        left: 0;
    }

    .lm-nav-toggle__bars::before {
        top: -5px;
    }

    .lm-nav-toggle__bars::after {
        top: 5px;
    }

    .lm-nav {
        border-top: 1px solid transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.22s ease, border-color 0.22s ease, padding-top 0.22s ease;
    }

    .lm-nav.is-open {
        border-color: var(--lm-border);
        max-height: 220px;
        padding-top: 12px;
    }

    .lm-nav__list {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lm-nav__list a {
        background: var(--lm-surface);
        border: 1px solid var(--lm-border);
        border-radius: 6px;
        display: block;
        padding: 10px 12px;
    }

    .lm-grid--2 {
        grid-template-columns: 1fr;
    }

    .lm-home-hero-section {
        padding: 28px 0 12px;
    }

    .lm-home-desk-section {
        padding-top: 12px;
    }

    .lm-hero h1,
    .lm-page-header h1 {
        font-size: clamp(32px, 11vw, 44px);
    }

    .lm-hero p,
    .lm-page-header p,
    .lm-lead {
        font-size: 16px;
        line-height: 1.58;
    }

    .lm-hero__copy,
    .lm-hero__panel,
    .lm-card,
    .lm-article-card {
        padding: 20px;
    }

    .lm-hero--compact .lm-hero__copy {
        padding: 22px 20px;
    }

    .lm-market-status {
        min-height: 0;
        padding: 12px;
    }

    .lm-watchlist-compact {
        display: none;
    }

    .lm-featured-article {
        padding: 16px;
    }

    .lm-portfolio-preview {
        gap: 18px;
    }

    .lm-portfolio-preview__chart {
        max-height: 180px;
    }

    .lm-section,
    .lm-page {
        padding: 38px 0;
    }

    .lm-table-wrap {
        overflow: visible;
    }

    .lm-table-wrap::after {
        display: none;
    }

    .lm-table {
        min-width: 0;
    }

    .lm-table thead {
        display: none;
    }

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

    .lm-table tr {
        border: 1px solid var(--lm-border);
        border-radius: var(--lm-radius);
        margin-bottom: 12px;
        overflow: hidden;
    }

    .lm-table td {
        align-items: flex-start;
        border-bottom: 1px solid var(--lm-border);
        display: grid;
        gap: 10px;
        grid-template-columns: minmax(104px, 0.38fr) minmax(0, 1fr);
        padding: 12px 14px;
    }

    .lm-table td::before {
        color: var(--lm-muted);
        content: attr(data-label);
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .lm-table tr:last-child td {
        border-bottom: 1px solid var(--lm-border);
    }

    .lm-table td:last-child {
        border-bottom: 0;
    }

    .lm-editorial-band,
    .lm-chart-status {
        padding: 18px;
    }
}
