/* LuckMuse-aligned: dark header, white content, gold accent (jewellery / editorial) */
  :root {
    --lm-black: #111111;
    --lm-black-soft: #1a1a1a;
    --lm-text: #222222;
    --lm-muted: #666666;
    --lm-line: #e8e8e8;
    --lm-bg: #ffffff;
    --lm-bg-subtle: #f7f7f7;
    --lm-gold: #b8860b;
    --lm-gold-hover: #9a7209;
    --lm-teal: #2a6a5e;
    --lm-teal-soft: #e8f3f0;
    --lm-indigo: #3d4a6b;
    --lm-indigo-soft: #e9ecf5;
    --radius: 2px;
    --radius-lg: 6px;
    --font-en: "Inter", system-ui, -apple-system, sans-serif;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-cn: "Noto Serif SC", "Songti SC", serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: var(--font-en);
    background: var(--lm-bg-subtle);
    color: var(--lm-text);
    line-height: 1.65;
    font-size: 15px;
  }

  .lm-header {
    background: var(--lm-black);
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .lm-header a {
    color: #fff;
    text-decoration: none;
  }
  .lm-header a:hover { color: #e8c76b; }
  .lm-logo {
    font-weight: 600;
    letter-spacing: 0.18em;
  }
  .lm-header-nav { display: flex; gap: 20px; align-items: center; }
  .lm-header-nav a { font-size: 11px; letter-spacing: 0.1em; }

  .breadcrumb {
    max-width: 1120px;
    margin: 0 auto;
    padding: 14px 24px;
    font-size: 12px;
    color: var(--lm-muted);
  }
  .breadcrumb a { color: var(--lm-teal); text-decoration: none; }
  .breadcrumb a:hover { text-decoration: underline; }

  .layout {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px 64px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: start;
  }

  @media (max-width: 900px) {
    .layout { grid-template-columns: 1fr; }
  }

  .main { min-width: 0; }

  .aside {
    position: sticky;
    top: 16px;
    background: var(--lm-bg);
    border: 1px solid var(--lm-line);
    border-radius: var(--radius-lg);
    padding: 20px;
  }
  .aside h2 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lm-muted);
    margin-bottom: 12px;
  }
  .date-jump label {
    display: block;
    font-size: 12px;
    color: var(--lm-muted);
    margin-bottom: 6px;
  }
  .date-jump .date-selects {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }
  .date-jump select {
    width: 100%;
    padding: 10px 10px;
    border: 1px solid var(--lm-line);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 13px;
    background: var(--lm-bg);
    color: var(--lm-text);
  }
  .date-jump button {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    background: var(--lm-black);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .date-jump button:hover { background: var(--lm-black-soft); }

  .mini-cal { margin-top: 20px; }
  .mini-cal-caption {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--lm-text);
  }
  .mini-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    font-size: 10px;
    text-align: center;
    color: var(--lm-muted);
  }
  .mini-cal-grid .dow { font-weight: 600; padding: 4px 0; }
  .mini-cal-grid a,
  .mini-cal-grid span.cell {
    display: block;
    padding: 6px 0;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--lm-text);
    font-size: 12px;
  }
  .mini-cal-grid a { border: 1px solid transparent; }
  .mini-cal-grid a:hover { border-color: var(--lm-line); background: var(--lm-bg-subtle); }
  .mini-cal-grid a.is-selected {
    background: var(--lm-black);
    color: #fff;
    font-weight: 600;
  }
  .mini-cal-grid span.pad { visibility: hidden; }

  .hero {
    background: var(--lm-bg);
    border: 1px solid var(--lm-line);
    border-radius: var(--radius-lg);
    padding: 36px 28px 32px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
  }
  .hero-eyebrow {
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 2px;
  }
  .hero-archive-label {
    color: var(--lm-gold);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 12px;
  }
  .hero-eyebrow-sep {
    color: var(--lm-line);
    font-weight: 500;
    letter-spacing: 0.06em;
  }
  .hero-eyebrow-rest {
    color: var(--lm-muted);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 11px;
  }
  .hero-date {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--lm-black);
  }
  .hero-date em { font-style: italic; color: var(--lm-gold); }
  .hero-meta {
    margin-top: 12px;
    font-size: 13px;
    color: var(--lm-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
  }
  .hero-meta .sep { color: var(--lm-line); }

  .hero-badge {
    text-align: center;
    padding: 18px 22px;
    border: 1px solid var(--lm-line);
    border-radius: var(--radius-lg);
    background: var(--lm-bg-subtle);
  }
  .hero-badge .g { font-size: 36px; line-height: 1; }
  .hero-badge .n { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lm-gold); margin-top: 8px; font-weight: 600; }

  .section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 36px 0 16px;
  }
  .section-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
  }
  .tag-west { background: var(--lm-indigo-soft); color: var(--lm-indigo); }
  .tag-facts { background: #f0f0f0; color: var(--lm-muted); }
  .tag-fortune { background: var(--lm-teal-soft); color: var(--lm-teal); }
  .tag-east { background: #faf6e9; color: #7a5a10; font-family: var(--font-cn); letter-spacing: 0.08em; }
  .section-line { flex: 1; height: 1px; background: var(--lm-line); }
  .section-note { font-size: 11px; color: var(--lm-muted); }

  .card-row { display: grid; gap: 10px; margin-bottom: 12px; }
  .g3 { grid-template-columns: repeat(3, 1fr); }
  .g4 { grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 720px) {
    .g3, .g4 { grid-template-columns: repeat(2, 1fr); }
    .hero { grid-template-columns: 1fr; }
  }

  .mini-card {
    background: var(--lm-bg);
    border: 1px solid var(--lm-line);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
  }
  .mini-card.accent { border-color: #e0d4b8; background: #fdfcf8; }
  .mini-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lm-muted); margin-bottom: 4px; }
  .mini-value { font-size: 17px; font-weight: 600; color: var(--lm-black); }
  .mini-sub { font-size: 11px; color: var(--lm-muted); margin-top: 4px; }

  .card {
    background: var(--lm-bg);
    border: 1px solid var(--lm-line);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    margin-bottom: 12px;
  }
  .card-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lm-muted);
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .planet-table, .aspect-table { width: 100%; border-collapse: collapse; }
  .planet-table td, .aspect-table td { padding: 8px 6px; font-size: 13px; border-bottom: 1px solid var(--lm-line); vertical-align: middle; }
  .planet-table tr:last-child td, .aspect-table tr:last-child td { border-bottom: none; }
  .col-glyph { width: 32px; text-align: center; font-size: 16px; }
  .col-name { color: var(--lm-muted); width: 72px; font-size: 12px; }
  .col-pos { font-variant-numeric: tabular-nums; font-size: 12px; font-weight: 500; width: 100px; }
  .col-sign { width: 88px; font-size: 12px; }
  .sign-glyph-inline { margin-right: 4px; font-size: 1.15em; line-height: 1; }
  /* 避免父级中文字体把 Emoji 压成单色或方框 */
  .zodiac-emoji {
    margin-right: 6px;
    font-size: 1.25em;
    line-height: 1;
    vertical-align: -0.08em;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  }
  .zodiac-emoji-img {
    width: 22px;
    height: 22px;
    margin-right: 6px;
    vertical-align: -5px;
    display: inline-block;
    object-fit: contain;
  }
  .col-aspect { text-align: right; }
  .pill {
    display: inline-block;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 500;
  }
  .pill-gold { background: #faf6e9; color: #7a5a10; }
  .pill-teal { background: var(--lm-teal-soft); color: var(--lm-teal); }
  .pill-rose { background: #f8e8ec; color: #8a3545; }
  .pill-blue { background: var(--lm-indigo-soft); color: var(--lm-indigo); }
  .pill-gray { background: #f3f3f3; color: var(--lm-muted); font-size: 9px; }

  .facts-source {
    font-size: 12px;
    color: var(--lm-muted);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--lm-line);
  }
  .facts-separator {
    margin: 28px 0 8px;
    padding: 12px 16px;
    background: var(--lm-bg-subtle);
    border-radius: var(--radius-lg);
    font-size: 12px;
    color: var(--lm-muted);
    border-left: 3px solid var(--lm-gold);
  }

  .cn-block {
    font-family: var(--font-cn);
  }
  .cn-block .card-title { font-family: var(--font-en); }

  .bazi-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
  .bazi-table th, .bazi-table td {
    border: 1px solid var(--lm-line);
    padding: 8px;
    text-align: center;
    font-size: 14px;
  }
  .bazi-table th { background: var(--lm-bg-subtle); color: var(--lm-muted); font-weight: 600; font-size: 11px; }
  .bazi-char { font-size: 20px; font-weight: 600; }
  .bazi-ten-god { color: var(--lm-gold); font-size: 12px; }
  .bazi-hidden { color: var(--lm-muted); font-size: 12px; }

  .sfc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  @media (max-width: 600px) { .sfc-row { grid-template-columns: 1fr; } }
  .sfc { background: var(--lm-bg); border: 1px solid var(--lm-line); border-radius: var(--radius-lg); padding: 16px 18px; }
  .sfc-title { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lm-muted); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
  .sfc-title .dot { width: 6px; height: 6px; border-radius: 50%; }
  .sfc-text { font-size: 14px; color: var(--lm-text); line-height: 1.6; }

  .chart-wrap {
    background: var(--lm-bg);
    border: 1px solid var(--lm-line);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    margin-bottom: 12px;
  }
  .chart-svg-area {
    aspect-ratio: 1;
    max-width: 420px;
    margin: 16px auto 0;
    border: 1px dashed var(--lm-line);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lm-muted);
    font-size: 13px;
    text-align: center;
    padding: 24px;
  }

  .star-rating { display: flex; gap: 2px; margin-top: 6px; }
  .star { color: var(--lm-line); font-size: 15px; }
  .star.filled { color: var(--lm-gold); }

  .nine-star-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--lm-line);
    border: 1px solid var(--lm-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 240px;
    margin: 10px auto 0;
  }
  .nine-star-grid .cell {
    background: var(--lm-bg);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .nine-star-grid .num { font-size: 17px; font-weight: 600; color: var(--lm-black); }
  .nine-star-grid .name { font-size: 10px; color: var(--lm-muted); font-family: var(--font-cn); }

  .deep-dive-inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: start;
  }
  @media (max-width: 640px) {
    .deep-dive-inner { grid-template-columns: 1fr; }
  }
  .deep-dive-copy {
    font-size: 14px;
    color: var(--lm-text);
    line-height: 1.85;
  }
  .deep-dive-copy p { margin-bottom: 14px; }

  .page-footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--lm-line);
  }
  .page-footer-nav a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lm-teal);
    text-decoration: none;
  }
  .page-footer-nav a:hover { text-decoration: underline; }

  .disclaimer {
    font-size: 12px;
    color: var(--lm-muted);
    line-height: 1.7;
    margin-top: 8px;
  }
  .cta-row { margin-top: 20px; }
  .cta-btn {
    display: inline-block;
    padding: 12px 22px;
    background: var(--lm-gold);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius);
  }
  .cta-btn:hover { background: var(--lm-gold-hover); color: #fff; }

  details summary {
    cursor: pointer;
    list-style: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lm-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  details summary::-webkit-details-marker { display: none; }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .preview-banner { background:#fff8e6;border:2px dashed var(--lm-gold);color:#5c4a12;padding:12px 14px;margin:12px 0;font-size:12px;border-radius:var(--radius-lg);}

  .chart-svg-area.has-svg {
    aspect-ratio: auto;
    border-style: solid;
    padding: 12px;
    max-width: 100%;
  }
  .chart-svg-area.has-svg svg {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .mini-cal-grid span.cell-muted {
    display: block;
    padding: 6px 0;
    border-radius: var(--radius);
    color: var(--lm-line);
    font-size: 12px;
    cursor: default;
  }
  .aspect-table td.col-type { width: 96px; }

  /* ---- Home landing (public/home.php) ---- */
  .home-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px 72px;
  }
  .home-hero {
    padding: 28px 0 8px;
  }
  .home-kicker {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lm-muted);
    margin-bottom: 10px;
  }
  .home-h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 600;
    color: var(--lm-black);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .home-lead {
    font-size: 16px;
    color: var(--lm-text);
    max-width: 68ch;
  }
  .home-lead a { color: var(--lm-teal); text-decoration: none; }
  .home-lead a:hover { text-decoration: underline; }

  .home-promise {
    margin: 28px 0;
    padding: 22px 24px;
    border: 1px solid var(--lm-line);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #fdfcf8 0%, #f7f9fc 100%);
    border-left: 4px solid var(--lm-gold);
  }
  .home-promise-text {
    font-size: 16px;
    color: var(--lm-black-soft);
    margin-bottom: 12px;
    line-height: 1.65;
  }
  .home-promise-note {
    font-size: 13px;
    color: var(--lm-muted);
    margin-bottom: 18px;
    line-height: 1.6;
  }
  .home-promise-note a { color: var(--lm-teal); }

  .home-birth-lookup {
    margin-bottom: 20px;
    padding: 18px 0 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
  .home-birth-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lm-black);
    margin: 0 0 8px;
  }
  .home-birth-hint {
    font-size: 12px;
    color: var(--lm-muted);
    line-height: 1.55;
    margin: 0 0 14px;
    max-width: 52ch;
  }
  .home-birth-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 14px;
    margin-bottom: 12px;
  }
  @media (max-width: 520px) {
    .home-birth-grid {
      grid-template-columns: 1fr 1fr;
    }
    .home-birth-field-wide {
      grid-column: 1 / -1;
    }
  }
  .home-birth-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--lm-black-soft);
    margin-bottom: 6px;
  }
  .home-birth-field select {
    width: 100%;
    font-size: 14px;
    padding: 10px 12px;
    border: 1px solid var(--lm-line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--lm-text);
    font-family: inherit;
  }
  .home-birth-field select:focus {
    outline: 2px solid var(--lm-teal);
    outline-offset: 1px;
  }
  .home-birth-error {
    font-size: 13px;
    color: #b42318;
    margin: 0 0 10px;
  }
  .home-birth-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }

  .home-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
  .cta-btn-outline {
    background: transparent !important;
    color: var(--lm-black) !important;
    border: 1px solid var(--lm-line);
  }
  .cta-btn-outline:hover {
    border-color: var(--lm-gold);
    color: var(--lm-gold-hover) !important;
  }

  .home-grid {
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
  }
  @media (min-width: 720px) {
    .home-grid { grid-template-columns: 1fr 1fr; }
  }
  .home-card .home-h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--lm-black);
    margin-bottom: 12px;
  }
  .home-card p {
    font-size: 14px;
    color: var(--lm-text);
    margin-bottom: 12px;
    line-height: 1.7;
  }
  .home-card p:last-child { margin-bottom: 0; }
  .home-card a { color: var(--lm-teal); text-decoration: none; }
  .home-card a:hover { text-decoration: underline; }
  .home-wide { margin-bottom: 32px; }
  .home-list {
    margin: 12px 0 0 1.2rem;
    font-size: 14px;
    color: var(--lm-text);
    line-height: 1.75;
  }
  .home-disclaimer {
    font-size: 12px;
    color: var(--lm-muted);
    max-width: 68ch;
    line-height: 1.6;
  }

  .home-articles-intro {
    font-size: 14px;
    color: var(--lm-text);
    margin: -4px 0 16px;
    line-height: 1.6;
  }
  .home-article-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .home-article-item {
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--lm-line);
  }
  .home-article-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .home-article-link {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--lm-teal);
    text-decoration: none;
  }
  .home-article-link:hover { text-decoration: underline; }
  .home-article-desc {
    font-size: 14px;
    color: var(--lm-text);
    margin: 8px 0 0;
    line-height: 1.65;
  }
  .home-article-date {
    font-size: 12px;
    color: var(--lm-muted);
    margin: 6px 0 0;
  }

  .home-faq-list { margin-top: 4px; }
  .home-faq-item {
    border-bottom: 1px solid var(--lm-line);
    padding: 12px 0;
  }
  .home-faq-item:last-child { border-bottom: 0; }
  .home-faq-item summary {
    font-size: 15px;
    font-weight: 600;
    color: var(--lm-black);
    cursor: pointer;
    list-style-position: outside;
    padding-right: 8px;
    line-height: 1.45;
  }
  .home-faq-item summary::-webkit-details-marker { color: var(--lm-gold); }
  .home-faq-answer {
    margin-top: 10px;
    padding-left: 0;
  }
  .home-faq-answer p {
    font-size: 14px;
    color: var(--lm-text);
    line-height: 1.7;
    margin: 0;
  }

  /* ---- Shop promo (static JSON → luckmuse.com, no Woo API) ---- */
  .lm-shop-promo {
    box-sizing: border-box;
  }
  .lm-shop-promo-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--lm-black);
    margin: 0 0 8px;
    letter-spacing: 0.02em;
  }
  .lm-shop-promo-intro {
    font-size: 13px;
    color: var(--lm-text);
    line-height: 1.55;
    margin: 0 0 12px;
  }
  .lm-shop-promo-cta {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px;
  }
  .lm-shop-promo-links {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 1.55;
  }
  .lm-shop-promo-links li {
    margin: 0 0 6px;
    padding: 0;
  }
  .lm-shop-promo-links a {
    color: var(--lm-teal);
    text-decoration: none;
  }
  .lm-shop-promo-links a:hover {
    text-decoration: underline;
  }
  .lm-shop-promo--compact {
    margin: 0 0 20px;
    padding: 18px 20px;
    border: 1px solid var(--lm-line);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--lm-gold);
    background: linear-gradient(135deg, #fdfcf8 0%, #f8fafc 100%);
  }
  .lm-shop-promo--compact .lm-shop-promo-cta {
    width: 100%;
    box-sizing: border-box;
  }
  .lm-shop-promo--aside {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--lm-line);
  }
  .lm-shop-promo--aside .lm-shop-promo-cta {
    width: 100%;
    box-sizing: border-box;
  }
