*,
*::before,
*::after {
  box-sizing: border-box;
}

.ll-portal-grid {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr) 205px;
  gap: 8px;
  align-items: start;
}

.ll-portal-main {
  container-name: portal-main;
  container-type: inline-size;
}

.ll-web-panel__title,
.portal-titlebar,
.mini-titlebar {
  display: flex;
  min-height: 30px;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  line-height: 1.2;
}

.ll-current-footer {
  display: block;
  width: 100%;
  margin: 8px 0 0;
}

.ll-portal-grid > *,
.ll-portal-main > *,
.content-article-shell > *,
.content-article__header > *,
.content-article__sections > *,
.manifestation-workspace-shell > *,
.manifestation-workspace__body > *,
.self-test-shell > *,
.report-grid > *,
.reports-hub-grid > * {
  min-width: 0;
}

.content-article-shell,
.manifestation-workspace-shell,
.self-test-shell {
  width: 100%;
  max-width: 100%;
  color: var(--portal-ink, #421c3b);
}

.content-article,
.manifestation-workspace {
  border: 1px solid var(--portal-line, #8b5478);
  background: var(--portal-paper, #fff8fb);
  box-shadow: 5px 5px 0 var(--portal-shadow, #d7c8ff);
}

.content-article__header {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
  gap: 18px;
  align-items: stretch;
  padding: clamp(18px, 3vw, 34px);
  border-bottom: 1px solid var(--portal-line, #8b5478);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--portal-pink, #ff80c2) 18%, white), transparent 54%),
    var(--portal-paper, #fff8fb);
}

.content-article__heading {
  align-self: center;
}

.content-article__label,
.content-article__meta {
  margin: 0;
  color: var(--portal-accent-dark, #72345d);
  font: 700 12px/1.3 var(--font-ui, Arial, sans-serif);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.content-article__heading h1,
.manifestation-workspace__header h1 {
  margin: 8px 0 12px;
  max-width: 16ch;
  font: 700 clamp(38px, 5vw, 68px)/.95 var(--font-display, Georgia, serif);
  letter-spacing: 0;
  overflow-wrap: normal;
}

.content-article__intro,
.manifestation-workspace__header > div {
  max-width: 70ch;
  font-size: clamp(15.5px, 1.3vw, 17px);
  line-height: 1.65;
}

.content-article__intro p,
.manifestation-workspace__header p {
  margin: 0 0 10px;
}

.content-article__visual {
  display: grid;
  min-height: 250px;
  place-items: center;
  overflow: hidden;
  border: 1px solid currentColor;
  background-color: color-mix(in srgb, var(--portal-cyan, #9ee8ef) 24%, white);
  background-image:
    linear-gradient(color-mix(in srgb, currentColor 9%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, currentColor 9%, transparent) 1px, transparent 1px);
  background-size: 22px 22px;
}

.content-article__visual :is(.ll-system-wheel, .ll-diagram, .ll-landing-focal, .ll-world-widget) {
  width: min(100%, 320px);
  margin: 0;
}

.content-article__summary,
.content-article__sections,
.content-article-faq,
.content-article-related,
.content-article-note,
.manifestation-workspace__body {
  padding: clamp(18px, 3vw, 34px);
}

.content-article__summary + .content-article__sections,
.content-article__sections + .content-article-faq,
.content-article-faq + .content-article-related,
.content-article-related + .content-article-note {
  border-top: 1px solid var(--portal-line, #8b5478);
}

.content-article-section {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px dotted color-mix(in srgb, currentColor 42%, transparent);
}

.content-article-section:last-child {
  border-bottom: 0;
}

.content-article-section__number {
  margin: 3px 0 0;
  font: 800 12px/1 var(--font-ui, Arial, sans-serif);
}

.content-article-section__copy h2,
.content-article-faq h2,
.content-article-related h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.05;
  letter-spacing: 0;
}

.content-article-section__copy :is(p, li),
.content-article-faq :is(p, summary),
.content-article-related a,
.content-article-note {
  font-size: clamp(15.5px, 1.3vw, 17px);
  line-height: 1.65;
}

.content-article-faq details {
  padding: 13px 0;
  border-bottom: 1px dotted currentColor;
}

.content-article-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.content-article-related ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-article-related a {
  display: block;
  height: 100%;
  padding: 12px;
  border: 1px solid currentColor;
  background: white;
}

.content-article-related small {
  display: block;
  margin-top: 4px;
}

.content-article-note {
  background: color-mix(in srgb, var(--portal-lilac, #cabdff) 20%, white);
}

/* Generated category landing pages use a twelve-column editorial mosaic. Any
   long-form modules that follow the mosaic must own a full row explicitly. */
.ll-portal-shell[data-lunar-shell="portal-v7"] .ll-zine-landing > :is(
  .content-article-faq,
  .content-article-related,
  .content-article-note
) {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}

/* The chart is embedded inside the portal's centre column, so viewport-based
   widths make it wider than its actual layout owner. */
.content-article-shell [data-free-tool="basic-birth-chart"].chart-workspace,
.content-article-shell [data-free-tool="sun-moon-rising"].chart-workspace {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

.content-article-shell :is(
  .chart-form-panel,
  .chart-view-panel,
  .natal-chart-layout,
  .natal-chart-data-grid,
  .calculation-details,
  .result-share-section,
  .result-conversion-bridge
) {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.ll-portal-shell[data-lunar-shell="portal-v7"] .draw-shell,
.ll-portal-shell[data-lunar-shell="portal-v7"] .draw-immersive {
  height: auto;
  min-height: 0;
}

.ll-portal-shell[data-lunar-shell="portal-v7"] .ll-portal-main > main.daily-draw-app {
  height: auto;
  min-height: 420px !important;
}

.ll-portal-shell[data-lunar-shell="portal-v7"] .ll-portal-main .zodiac-strip {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.content-article-shell--astrology { --portal-paper: #f3fbff; --portal-accent-dark: #175a72; --portal-line: #31748b; --portal-shadow: #8ed9ef; }
.content-article-shell--tarot { --portal-paper: #fff5fb; --portal-accent-dark: #8b245f; --portal-line: #aa4f83; --portal-shadow: #ffa9d5; }
.content-article-shell--bazi { --portal-paper: #fffdf1; --portal-accent-dark: #145e57; --portal-line: #26736a; --portal-shadow: #9de7dc; }
.content-article-shell--manifestation,
.manifestation-workspace-shell { --portal-paper: #fff5fb; --portal-accent-dark: #743457; --portal-line: #a84e7b; --portal-shadow: #b8dcff; }
.content-article-shell--self,
.self-test-shell { --portal-paper: #f8f5ff; --portal-accent-dark: #5f3d7a; --portal-line: #7c6094; --portal-shadow: #a8e9ee; }
.content-article-shell--library { --portal-paper: #fffdf8; --portal-accent-dark: #5d4557; --portal-line: #795f72; --portal-shadow: #ffc0dd; }

.manifestation-workspace__header {
  padding: clamp(18px, 3vw, 34px);
  border-bottom: 1px solid var(--portal-line, #a84e7b);
  background:
    radial-gradient(circle at 90% 18%, #9ee8ef 0 5px, transparent 6px),
    radial-gradient(circle at 84% 30%, #ff86c8 0 4px, transparent 5px),
    linear-gradient(135deg, #fff4fb, #eefbff);
}

.manifestation-workspace__body > :first-child {
  margin-top: 0;
}

.self-test-shell {
  display: block;
}

.self-test-shell :is(.tool-hero, .tool-section, form, .result-panel, [data-tool-result]) {
  max-width: 100%;
}

.time-capsule-device {
  position: relative;
  display: grid;
  width: min(100%, 330px);
  aspect-ratio: 4 / 5;
  place-items: center;
  border: 1px solid #743457;
  background:
    radial-gradient(circle at 50% 38%, #fff 0 13%, #ffd0e8 13.5% 22%, transparent 22.5%),
    linear-gradient(135deg, #a8ebf3, #d9c8ff 48%, #ff9bcf);
  box-shadow: 8px 8px 0 #743457;
}

.time-capsule-device::before {
  content: "FUTURE MAIL";
  position: absolute;
  top: 18px;
  left: 18px;
  font: 800 12px/1 var(--font-ui, Arial, sans-serif);
}

.time-capsule-device span {
  display: grid;
  width: 72%;
  min-height: 120px;
  place-items: center;
  padding: 18px;
  border: 1px solid #743457;
  background: #fffdf8;
  color: #743457;
  font: 700 24px/1.1 var(--font-display, Georgia, serif);
  text-align: center;
}

body.ll-portalized--manifestation .time-capsule-main.manifestation-workspace-shell {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

body.ll-portalized--manifestation .time-capsule-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .65fr);
  gap: 18px;
  min-height: 0;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--portal-line, #a84e7b);
  background: linear-gradient(135deg, #fff5fb, #ecfbff);
}

body.ll-portalized--manifestation .time-capsule-hero-object {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

body.ll-portalized--manifestation .time-capsule-workspace {
  min-height: 0;
  margin-top: 10px;
  border-color: var(--portal-line, #a84e7b);
  background: #fffafd;
}

/* ReportGrid and ReportCard are the only report catalogue layout owners. */
body.ll-portalized--reports .reports-hub-group {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding: 14px;
  border: 1px solid var(--portal-line, #7c6094);
  background: #fffafd;
  container-type: inline-size;
}

.ll-zine-index {
  align-items: start;
}

.ll-portal-shell[data-lunar-shell="portal-v7"] .ll-zine-landing > #ll-zine-index {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

.ll-portal-shell[data-lunar-shell="portal-v7"] .ll-zine-landing > #ll-zine-index > .ll-zine-index {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)) !important;
  align-items: start !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

.ll-portal-shell[data-lunar-shell="portal-v7"] .ll-zine-landing .ll-zine-index-group {
  height: auto !important;
  overflow: visible !important;
}

@container portal-main (max-width: 1050px) {
  body.ll-portalized--home .portal-mosaic #start-here.ll-home-zine > .home-discovery {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.ll-portalized--home .portal-mosaic #start-here.ll-home-zine .home-discovery nav {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 130px), 1fr)) !important;
  }

  body.ll-portalized--home .portal-mosaic #start-here.ll-home-zine .ll-world-preview.ll-world-preview {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    grid-template-columns: minmax(0, 1fr) 118px !important;
  }

  body.ll-portalized--home .portal-mosaic #start-here.ll-home-zine .ll-world-preview--tarot.ll-world-preview {
    grid-template-columns: 92px minmax(0, 1fr) !important;
  }

  body.ll-portalized--home .portal-mosaic #start-here.ll-home-zine .ll-worlds-footer {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }

  .ll-portal-main :is(.self-test-grid, .discovery-product-grid) {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)) !important;
  }

  .ll-portal-main :is(.quiz-category-strip, .astrology-directory, .explore-system-grid, .timing-catalogue) {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)) !important;
  }

  .ll-portal-main :is(
    .question-grid,
    .tool-grid,
    .product-grid,
    .product-card-grid,
    .article-grid,
    .today-grid,
    .path-grid,
    .faq-grid,
    .standard-grid,
    .focus-grid,
    .archive-grid,
    .editorial-list
  ) {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)) !important;
    align-items: start !important;
  }

  .ll-portal-main :is(
    .question-grid,
    .tool-grid,
    .product-grid,
    .product-card-grid,
    .article-grid,
    .today-grid,
    .path-grid,
    .faq-grid,
    .standard-grid,
    .focus-grid,
    .archive-grid,
    .editorial-list
  ) > * {
    grid-column: auto !important;
    min-width: 0;
    height: auto;
    align-self: start;
  }

  .ll-portal-main :is(.replay-info, .life-book-info) {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)) !important;
    align-items: start;
  }

  .ll-portal-main :is(.replay-info, .life-book-info) > article,
  .ll-portal-main .product-detail-flow > article {
    min-width: 0;
    height: auto;
    align-self: start;
  }

  .ll-portal-main .product-detail-flow,
  .ll-portal-main .concern-prompts {
    align-items: start;
  }

  .ll-portal-main .product-explain-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    align-items: start;
  }

  .ll-portal-main .product-explain-grid > article {
    min-width: 0;
    height: auto;
    align-self: start;
  }

  .ll-portal-main .concern-prompts {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)) !important;
  }

  .ll-portal-main .concern-prompts > article {
    min-width: 0;
    height: auto;
    align-self: start;
  }

  .ll-portal-main .replay-template-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  }

  body.ll-portalized--manifestation .time-capsule-explainer,
  body.ll-portalized--manifestation .time-capsule-editorial,
  body.ll-portalized--manifestation .time-capsule-related {
    height: auto;
    min-height: 0;
    padding-block: clamp(44px, 6vw, 76px);
    align-self: start;
  }

  body.ll-portalized--manifestation .time-capsule-explainer ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  body.ll-portalized--manifestation .time-capsule-explainer li,
  body.ll-portalized--manifestation .time-capsule-related a {
    height: auto;
    align-self: start;
  }

  body.ll-portalized--manifestation .time-capsule-editorial {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  body.ll-portalized--manifestation .time-capsule-editorial > div:last-child {
    padding-top: 0;
  }

  body.ll-portalized--manifestation .time-capsule-related > div {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    align-items: start;
  }

  .ll-portal-main .ll-library-zine .library-topic {
    grid-template-columns: 135px minmax(0, 1fr) !important;
    gap: 16px !important;
  }

  .ll-portal-main .ll-library-zine .library-topic > .section-heading {
    grid-column: 1 / -1;
  }

  .ll-portal-main .ll-library-zine .editorial-list {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.ll-portalized--reports .report-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@container portal-main (min-width: 431px) and (max-width: 1050px) {
  body.ll-portalized--home .portal-mosaic #start-here.ll-home-zine .ll-world-preview--astrology .ll-world-preview__body,
  body.ll-portalized--home .portal-mosaic #start-here.ll-home-zine .ll-world-preview--bazi .ll-world-preview__body,
  body.ll-portalized--home .portal-mosaic #start-here.ll-home-zine .ll-world-preview--manifestation .ll-world-preview__body {
    grid-column: 1 !important;
    grid-row: 1 !important;
    order: 0 !important;
  }

  body.ll-portalized--home .portal-mosaic #start-here.ll-home-zine .ll-world-preview--astrology figure,
  body.ll-portalized--home .portal-mosaic #start-here.ll-home-zine .ll-world-preview--bazi figure,
  body.ll-portalized--home .portal-mosaic #start-here.ll-home-zine .ll-world-preview--manifestation figure {
    grid-column: 2 !important;
    grid-row: 1 !important;
    order: 1 !important;
  }
}

@container portal-main (max-width: 650px) {
  body.ll-portalized--home .portal-mosaic #start-here.ll-home-zine > .ll-asset-hero {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
  }

  body.ll-portalized--home .portal-mosaic #start-here.ll-home-zine > .ll-asset-today {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
  }

  body.ll-portalized--home .portal-mosaic #start-here.ll-home-zine .ll-asset-hero__copy,
  .ll-portal-main :is(.ll-zine-hero, .discovery-hero, .content-article__header) {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .ll-portal-main .astrology-focal {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .ll-portal-main :is(.relationship-method-split, .discovery-method) {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .ll-portal-main :is(.replay-info, .life-book-info),
  body.ll-portalized--manifestation .time-capsule-explainer ol,
  body.ll-portalized--manifestation .time-capsule-related > div {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.ll-portalized--home .portal-mosaic #start-here.ll-home-zine .ll-home-launchpad {
    grid-column: 1 !important;
    grid-row: auto !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@container portal-main (max-width: 430px) {
  .ll-portal-shell[data-lunar-shell="portal-v7"] .portal-mosaic > main:not(.ll-home-zine) {
    padding-inline: 4px !important;
  }

  body.ll-portalized--home .portal-mosaic #start-here.ll-home-zine .ll-world-preview.ll-world-preview {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .ll-portal-main .ll-library-zine .library-topic {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .ll-portal-main .ll-library-zine .editorial-list,
  .ll-portal-main :is(.product-grid, .product-card-grid, .article-grid) {
    grid-column: 1 !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .ll-portal-main :is(.product-card, .article-card) {
    padding-inline: 4px !important;
  }

  .ll-portal-main .faq-grid > article {
    padding-inline: 10px !important;
  }

  .ll-portal-main .product-detail-flow > article {
    padding-inline: 8px !important;
  }

  .ll-portal-main .search-page-results a {
    padding-inline: 8px !important;
  }

  .ll-portal-main :is(.section-block, .checkout-flow, .reports-hub-group) {
    padding-inline: 4px !important;
  }

  body.ll-portalized--reports .ll-portal-main .reports-hub-group {
    padding-inline: 4px !important;
  }

  .ll-portal-main :is(.discovery-product-card, .self-test-card, .report-card, .tool-result) {
    padding-inline: 10px !important;
  }

  body.ll-portalized--reports .ll-portal-main .report-card {
    padding-inline: 6px !important;
  }

  .content-article__summary,
  .content-article__sections,
  .content-article-faq,
  .content-article-related,
  .content-article-note,
  .manifestation-workspace__body {
    padding-inline: 8px;
  }

  .content-article-section {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  .content-article-section__number {
    margin-top: 0;
  }

  .ll-portal-main .seo-step-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .ll-portal-main .concern-prompts > article {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    padding-inline: 14px;
  }

  .ll-portal-main .discovery-hero {
    padding-inline: 5px !important;
  }

  .ll-portal-shell[data-lunar-shell="portal-v7"] .ll-portal-main.portal-mosaic > main.discovery-main {
    padding-inline: 0 !important;
  }

  .ll-portal-main .discovery-hero > div > p:last-child {
    font-size: 15.5px;
  }

  .ll-portal-main .service-hero > div > p:not(.eyebrow) {
    font-size: 15.5px;
  }
}

@media (max-width: 430px) {
  .ll-portal-main.portal-mosaic {
    padding-inline: 3px !important;
  }

  .ll-portal-shell[data-lunar-shell="portal-v7"] .ll-portal-main > main.daily-draw-app {
    min-height: 820px !important;
  }
}

body.ll-portalized--reports .reports-hub-group > header {
  width: 100%;
  margin: 0 0 14px;
  padding: 8px;
}

body.ll-portalized--reports .report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  min-width: 0;
  align-items: stretch;
  background: transparent;
}

body.ll-portalized--reports .report-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-width: 0;
  max-width: none;
  height: auto;
  margin: 0;
  padding: 12px;
  transform: none;
  border: 1px solid #734a69;
  border-radius: 0;
  background: #fff;
  box-shadow: 4px 4px 0 #c8b7ff;
}

body.ll-portalized--reports .report-card > .ll-edition-cover {
  width: min(100%, 220px);
  min-height: 0;
  margin: 0 auto 4px;
  aspect-ratio: 3 / 4;
}

body.ll-portalized--reports .report-card :is(h2, h3, p, dl, ul, .reports-hub-actions, .product-report-cta) {
  width: 100%;
  min-width: 0;
}

body.ll-portalized--reports .report-card .reports-hub-actions,
body.ll-portalized--reports .report-card .product-report-cta {
  margin-top: auto;
}

@media (max-width: 1180px) {
  body.ll-portalized--reports .report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@container (max-width: 760px) {
  body.ll-portalized--reports .report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@container (max-width: 440px) {
  body.ll-portalized--reports .report-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 1050px) {
  .ll-portal-grid {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .ll-portal-sidebar--right {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-article-shell [data-free-tool="basic-birth-chart"].chart-workspace,
  .content-article-shell [data-free-tool="sun-moon-rising"].chart-workspace {
    grid-template-columns: minmax(0, 1fr);
  }

  .ll-portal-main .ll-library-zine .library-topic {
    grid-template-columns: 135px minmax(0, 1fr);
    gap: 16px;
  }

  .ll-portal-main .ll-library-zine .library-topic > .section-heading {
    grid-column: 1 / -1;
  }

  .ll-portal-main .ll-library-zine .editorial-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 850px) {
  .ll-portal-shell[data-lunar-shell="portal-v7"] .portal-mosaic > main.archive-shell > .ll-zine-landing {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .ll-portal-shell[data-lunar-shell="portal-v7"] .portal-mosaic > main.archive-shell > .ll-zine-landing > * {
    grid-column: 1 !important;
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .ll-portal-shell[data-lunar-shell="portal-v7"] .ll-zine-landing > :is(
    .ll-category-frame,
    #ll-zine-index,
    .ll-visual-ledger,
    .ll-zine-longform
  ) {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }
}

@media (max-width: 620px) {
  body.ll-portalized--reports .report-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .ll-portal-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ll-portal-sidebar--left,
  .ll-portal-main,
  .ll-portal-sidebar--right {
    grid-column: 1;
  }

  .ll-portal-sidebar--right {
    grid-template-columns: minmax(0, 1fr);
  }

  body.ll-portalized--manifestation .time-capsule-hero {
    grid-template-columns: 1fr;
  }

  .content-article__header {
    grid-template-columns: 1fr;
  }

  .content-article__heading h1,
  .manifestation-workspace__header h1 {
    max-width: none;
    font-size: clamp(36px, 12vw, 54px);
  }

  .content-article__visual {
    min-height: 220px;
  }

  .content-article-section {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
  }

  .content-article-related ul {
    grid-template-columns: 1fr;
  }
}
