/* =========================================================
   ARTICLE / GAZETTE CSS
   Organized by section. Responsive rules live with each section.
   Breakpoints: 1100 / 900 / 600 / 400 / 380

   Note: .lm-article-hero is the article cover image block,
   not the global website hero system.
   ========================================================= */

/* CONTENTS
   01 Global reset
   02 Article shell layout
   03 Sidebar TOC + article meta
   04 Breadcrumbs
   05 Article typography + media
   06 Notes + In short callouts
   07 Highlights
   08 FAQ + questions
   09 Lists + flow pills
   10 Comparison tables
   11 Note banner
   12 Related compact blocks
   13 Related article carousel
   14 Up/down jump button
   15 Misc / legacy
*/


/* =========================================================
   01 Global reset
   ========================================================= */

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

img,
svg,
video,
canvas,
iframe {
  display: block;
    max-width: 100%;
    height: auto;
}


/* =========================================================
   02 Article shell layout
   ========================================================= */

.lm-article {
  padding: 30px;
    background: #e6d7c3;
    overflow-x: clip;
}

.lm-article-inner {
  position: relative;
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    gap: 44px;

    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px 30px 14px;

    background: #f6efe3;
    border-radius: 40px;
    box-shadow: 0 18px 18px rgba(0, 0, 0, 0.08);
    overflow: visible;
}

.lm-article-inner > * {
  min-width: 0;
}

.lm-article-wide {
  max-width: 1200px;
    margin: 32px auto;
}

.lm-article-section[id] {
  scroll-margin-top: 100px;
}


@media (max-width: 1100px) {

  .lm-article {
    padding: 24px 20px;
  }

  .lm-article-inner {
    grid-template-columns: 280px minmax(0, 1fr);
        gap: 32px;
        padding: 28px 28px 28px 20px;
        border-radius: 34px;
  }

}


@media (max-width: 900px) {

  .lm-article-inner {
    grid-template-columns: 1fr;
        gap: 0;
  }

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

  .lm-article-inner {
    grid-template-columns: 1fr;
        gap: 0;
        padding: 36px;
        border-radius: 30px;
  }

}


@media (max-width: 400px) {

  .lm-article {
    padding: 10px 8px;
  }

  .lm-article-inner {
    padding: 22px;
        border-radius: 20px;
  }

}


/* =========================================================
   03 Sidebar TOC + article meta
   ========================================================= */

.lm-article-toc {
  position: sticky;
    top: 90px;
    align-self: start;

    min-width: 0;
    padding: 0 14px 16px;

    background: #f6efe3;
    border-radius: 26px;
    backdrop-filter: blur(6px);
}

.lm-article-meta {
  position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 12px;
    border-bottom: none;
}

.lm-article-meta::after {
  content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    height: 1px;
    background: rgba(25, 24, 24, 0.12);
}

.lm-article-meta__avatar {
  flex-shrink: 0;
}

.lm-article-meta__avatar img {
  display: block;
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 999px;
    border: 2px solid rgba(25, 24, 24, 0.08);
}

.lm-article-meta__info {
  display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.lm-article-meta__details {
  display: flex;
    flex-direction: column;
    gap: 8px;
}

.lm-article-meta__name,
.lm-article-meta__review,
.lm-article-meta__item {
  display: flex;
    align-items: center;
    color: rgba(25, 24, 24, 0.72);
    font-size: 14px;
    line-height: 1.35;
}

.lm-article-meta__name {
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
}



.lm-article-meta__review {
  gap: 10px;
}

.lm-article-meta__posted {
  display: flex;
    flex-direction: column;
    gap: 8px;
}

.lm-article-meta__item {
  gap: 9px;
}

.lm-meta-icon {
  width: 20px;
    height: 20px;
    flex-shrink: 0;

    color: rgba(25, 24, 24, 0.69);
}

.lm-toc__title {
  margin: 12px 0 8px;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-align: center;
}

.lm-toc__list {
  position: relative;
    margin: 0;
    padding: 0 0 0 16px;
    list-style: none;
}

.lm-toc__list::before,
.lm-toc__list::after {
  content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 3px;
    border-radius: 999px;
}

.lm-toc__list::before {
  bottom: 4px;
    background: rgba(184, 162, 130, 0.36);
}

.lm-toc__list::after {
  height: var(--toc-progress, 0px);
    background: linear-gradient(
      180deg,
      #f6eada 0%,
      #ead7a8 45%,
      #d8b77a 100%
    );
    box-shadow:
      0 6px 16px rgba(216, 183, 122, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: height 0.24s ease;
}

.lm-toc__link {
  display: block;
    min-width: 0;
    padding: 6px 8px 6px 10px;

    color: inherit;
    font-size: 13px;
    line-height: 1.35;
    text-decoration: none;
    opacity: 0.66;

    border-radius: 12px;
    overflow-wrap: anywhere;
}

.lm-toc__link:hover {
  opacity: 1;
    background: rgba(0, 0, 0, 0.03);
}

.lm-toc__link.is-active {
  font-weight: 700;
    opacity: 1;
    background: radial-gradient(
        500px 180px at -5% 0%,
        rgba(246, 234, 218, 0.75),
        transparent 70%
      ),
      linear-gradient(
        180deg,
        rgba(255,255,255,0.24) 0%,
        rgba(255,255,255,0.06) 100%
      ),
      #efe5d8;
}


@media (max-width: 900px) {

  .lm-article-toc {
    position: static;
        padding: 0;
        background: transparent;
        border-radius: 0;
        backdrop-filter: none;
  }

  .lm-toc {
    display: none;
  }

  .lm-article-meta {
    gap: 18px;
        margin: 18px 0 24px;
        padding-bottom: 16px;
  }

  .lm-article-meta::after {
    left: 0;
        right: 0;
  }

  .lm-article-meta__avatar img {
    width: 88px;
        height: 88px;
  }

  .lm-article-meta__name,
  .lm-article-meta__review,
  .lm-article-meta__item {
    font-size: 17px;
  }

  .lm-article-meta {
    gap: 18px;
        margin: 18px 0 24px;
        padding-bottom: 14px;
  }

  .lm-article-meta::after {
    left: 0;
        right: 0;
  }

  .lm-article-meta__avatar img {
    width: 76px;
        height: 76px;
  }

  .lm-article-meta__info {
    gap: 8px;
  }

  .lm-article-meta__details {
    gap: 7px;
  }

  .lm-article-meta__name,
  .lm-article-meta__review,
  .lm-article-meta__item {
    font-size: 15px;
  }

  .lm-meta-icon {
    width: 18px;
        height: 18px;
  }

}


@media (max-width: 600px) {

  .lm-article-meta {
    align-items: flex-start;
        gap: 16px;
        padding-bottom: 20px;
  }

  .lm-article-meta__avatar img {
    width: 74px;
        height: 74px;
  }

  .lm-article-meta__info {
    gap: 8px;
  }

  .lm-article-meta__details {
    gap: 7px;
  }

  .lm-article-meta__name,
  .lm-article-meta__review,
  .lm-article-meta__item {
    font-size: 16px;
        line-height: 1.4;
  }

  .lm-meta-icon {
    width: 18px;
        height: 18px;
  }

  .lm-article-meta {
    gap: 14px;
        margin: 16px 0 22px;
        padding-bottom: 12px;
  }

  .lm-article-meta__avatar img {
    width: 64px;
        height: 64px;
  }

  .lm-article-meta__name,
  .lm-article-meta__review,
  .lm-article-meta__item {
    font-size: 14px;
        line-height: 1.35;
  }

  .lm-meta-icon {
    width: 17px;
        height: 17px;
  }

}


@media (max-width: 400px) {

  .lm-article-meta {
    gap: 14px;
  }

  .lm-article-meta__avatar img {
    width: 66px;
        height: 66px;
  }

  .lm-article-meta__name,
  .lm-article-meta__review,
  .lm-article-meta__item {
    font-size: 15px;
  }

  .lm-meta-icon {
    width: 17px;
        height: 17px;
  }

  .lm-article-meta {
    gap: 12px;
  }

  .lm-article-meta__avatar img {
    width: 56px;
        height: 56px;
  }

  .lm-article-meta__info {
    gap: 6px;
  }

  .lm-article-meta__details {
    gap: 5px;
  }

  .lm-article-meta__name,
  .lm-article-meta__review,
  .lm-article-meta__item {
    font-size: 13px;
  }

  .lm-meta-icon {
    width: 16px;
        height: 16px;
  }

}


/* =========================================================
   04 Breadcrumbs
   ========================================================= */

.lm-breadcrumbs {
  display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;

    margin-bottom: 18px;

    font-size: 13px;
    color: rgba(0, 0, 0, 0.55);
}

.lm-breadcrumbs a {
  color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lm-breadcrumbs a:hover {
  color: #000;
}

.lm-breadcrumbs .sep {
  margin: 0 8px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.75);
}

.lm-breadcrumbs .is-current {
  font-weight: 600;
    color: #000;
}


@media (max-width: 900px) {

  .lm-breadcrumbs {
    font-size: 12px;
  }

}


@media (max-width: 400px) {

  .lm-breadcrumbs {
    font-size: 11px;
  }

}


/* =========================================================
   05 Article typography + media
   ========================================================= */

.lm-article-content,
.lm-article-content * {
  min-width: 0;
}

.lm-article-content,
.lm-article-content li,
.lm-article-content h1,
.lm-article-content h2,
.lm-article-content h3,
.lm-article-content h4,
.lm-note__text,
.lm-fair-use,
.lm-breadcrumbs,
.lm-note-banner__text,
.lm-article-p,
.lm-article-note,
.lm-article__caption {
  overflow-wrap: anywhere;
    word-break: break-word;
}

.lm-article-h1 {
  margin: 0 0 24px;
    font-size: 40px;
    line-height: 1.15;
}

.lm-article-h2 {
  position: relative;
    margin: 16px 0 18px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 600;
}

.lm-article-h2::after {
  content: "";
    display: block;
    height: 1px;
    margin-top: 12px;
    background: rgba(82, 81, 81, 0.35);
    border-radius: 2px;
}

.lm-article-h3 {
  margin: 12px 0;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
}

.lm-article-p {
  max-width: 90ch;
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.85;
}

.lm-article-lead {
  margin-top: 8px;
}

.lm-article-note {
  margin: 0 0 20px;
    max-width: 90ch;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.lm-article-content ul,
.lm-article-content ol {
  max-width: 90ch;
    margin: 0 0 14px;
    padding-left: 28px;
}

.lm-article-content li {
  margin: 8px 0;
    font-size: 18px;
    line-height: 1.8;
}

.lm-key,
.lm-bullets {
  margin: 14px 0 22px;
    padding-left: 22px;
}

.lm-key li,
.lm-bullets li {
  max-width: 90ch;
    margin: 10px 0;
    font-size: 18px;
    line-height: 1.8;
}

.lm-link,
.lm-article-link {
  color: rgba(17, 17, 17, 0.79);
  text-decoration: none;
  border-bottom: 1px solid rgba(144, 141, 138, 0.35);
  transition:
    color .22s ease,
    border-color .22s ease;
}

.lm-link:hover,
.lm-article-link:hover {
  color: #111;
  border-color: rgba(179, 177, 174, 0.9);
}

.lm-article-hero {
  margin: 0 0 26px;
}

.lm-article-hero img,
.lm-article-figure img {
  width: 100%;
    border-radius: 0;
}

.lm-article-figure {
  margin: 16px 0 18px;
}

.lm-article__caption {
  margin-top: 8px;
    font-size: 14px;
    font-style: italic;
    opacity: 0.6;
}

.lm-article-section .lorem {
  margin-top: 30px;
}


@media (max-width: 1100px) {

  .lm-article-h1 {
    font-size: 38px;
  }

  .lm-article-h2 {
    font-size: 26px;
  }

  .lm-article-h3 {
    font-size: 21px;
  }

  .lm-article-p,
  .lm-article-content li,
  .lm-key li,
  .lm-bullets li,
  .lm-faq__list li,
  .lm-note__text {
    font-size: 17px;
  }

}


@media (max-width: 900px) {

  .lm-article-h1 {
    font-size: 32px;
  }

  .lm-article-h2 {
    font-size: 24px;
  }

  .lm-article-h3 {
    font-size: 20px;
  }

  .lm-article-p,
  .lm-article-content li,
  .lm-key li,
  .lm-bullets li,
  .lm-faq__list li,
  .lm-note__text,
  .lm-highlights__list li {
    font-size: 16px;
        line-height: 1.8;
  }

  .lm-article-content {
    max-width: 760px;
        margin: 0 auto;
  }

  .lm-article-p,
  .lm-article-content li,
  .lm-key li,
  .lm-bullets li,
  .lm-faq__list li {
    max-width: 68ch;
        font-size: 17px;
        line-height: 1.75;
  }

  .lm-article-h2 {
    max-width: 68ch;
        font-size: 28px;
        line-height: 1.2;
  }

  .lm-article-content {
    width: 100%;
  }

  .lm-article-content > * {
    max-width: 720px;
        margin-left: auto;
        margin-right: auto;
  }

}


@media (max-width: 600px) {

  .lm-article-p, .lm-article-content li, .lm-key li, .lm-bullets li, .lm-faq__list li {
    font-size: 16px;
  }

}


@media (max-width: 400px) {

  .lm-article-h1 {
    font-size: 25px;
  }

  .lm-article-h2 {
    font-size: 20px;
  }

  .lm-article-h3 {
    font-size: 18px;
  }

  .lm-article-p,
  .lm-article-content li,
  .lm-key li,
  .lm-bullets li,
  .lm-faq__list li,
  .lm-note__text {
    font-size: 15px;
  }

}


/* =========================================================
   06 Notes + In short callouts
   ========================================================= */

.lm-note {
  position: relative;
    margin: 28px 0;
    padding-left: 20px;
}

.lm-note::before {
  content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 2px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.35);
}

.lm-short {
  position: relative;

    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    align-items: center;

    margin: 20px 0 25px;
    padding: 34px 30px;

    background:
      radial-gradient(
        500px 180px at -5% 0%,
        rgba(246, 234, 218, 0.75),
        transparent 70%
      ),
      linear-gradient(
        180deg,
        rgba(255,255,255,0.24) 0%,
        rgba(255,255,255,0.06) 100%
      ),
      #efe5d8;

    border: 1px solid rgba(234, 217, 188, 0.55);
    border-radius: 34px;

    box-shadow:
      0 10px 30px rgba(0,0,0,0.03),
      inset 0 1px 0 rgba(255,255,255,0.42);
}

.lm-short::before {
  content: "";

    position: absolute;
    top: -1px;
    left: 34px;
    right: 34px;

    height: 1px;

    background: linear-gradient(
      90deg,
      transparent,
      rgba(246, 234, 218, 0.95),
      transparent
    );
}

.lm-short__icon-wrap {
  position: relative;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.lm-short__icon-wrap::after {
  content: "";

    position: absolute;
    right: 12px;
    top: 50%;

    width: 1px;
    height: 92px;

    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(25, 25, 24, 0.12) 18%,
      rgba(25,24,24,0.12) 82%,
      transparent 100%
    );

    transform: translateY(-50%);
}

.lm-short__icon {
  width: 69px;
    height: 69px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #cc8d2b;
    background:
      radial-gradient(
        circle at 30% 30%,
        rgba(255,255,255,0.75),
        transparent 60%
      ),
      rgba(246, 234, 218, 0.92);

    border: 1px solid rgba(255,255,255,0.3);

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.35);
}

.lm-short__icon svg {
  width: 64px;
    height: 64px;
}

.lm-short__text {
  margin: 0;

    color: #111;
    font-size: 16px;
    line-height: 1.8;
}

.lm-short__text strong {
  position: relative;

    font-weight: 700;
    color: #111;
}

.lm-fair-use {
  margin-top: 24px;
    padding: 18px 20px;

    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;

    background: radial-gradient(
        500px 180px at -5% 0%,
        rgba(246, 234, 218, 0.75),
        transparent 70%
      ),
      linear-gradient(
        180deg,
        rgba(255,255,255,0.24) 0%,
        rgba(255,255,255,0.06) 100%
      ),
      #efe5d8;
    border: 1px solid rgba(25, 24, 24, 0.05);
    border-radius: 14px;
}


@media (max-width: 900px) {

  .lm-short {
    grid-template-columns: 88px 1fr;
        gap: 26px;

        padding: 28px 28px;
        border-radius: 28px;
  }

  .lm-short__icon {
    width: 78px;
        height: 78px;
  }

  .lm-short__icon svg {
    width: 34px;
        height: 34px;
  }

  .lm-short__text {
    font-size: 22px;
        line-height: 1.68;
  }

  .lm-short__icon-wrap::after {
    right: -14px;
        height: 74px;
  }

  .lm-short {
    grid-template-columns: 96px 1fr;
        gap: 14px;
        padding: 28px 24px;
        border-radius: 28px;
  }

  .lm-short__icon {
    width: 72px;
        height: 72px;
  }

  .lm-short__icon svg {
    width: 52px;
        height: 52px;
  }

  .lm-short__icon-wrap::after {
    right: 10px;
        height: 78px;
  }

  .lm-short__text {
    font-size: 16px;
        line-height: 1.7;
  }

}


@media (max-width: 600px) {

  .lm-short {
    grid-template-columns: 1fr;
        gap: 20px;

        padding: 24px 20px;
        margin: 36px 0 42px;

        border-radius: 24px;
  }

  .lm-short__icon-wrap {
    justify-content: flex-start;
  }

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

  .lm-short__icon {
    width: 72px;
        height: 72px;
  }

  .lm-short__icon svg {
    width: 30px;
        height: 30px;
  }

  .lm-short__text {
    font-size: 19px;
        line-height: 1.62;
  }

  .lm-short {
    grid-template-columns: 69px 1fr;
        gap: 10px;
        margin: 28px 0 34px;
        padding: 24px 20px;
        border-radius: 24px;
  }

  .lm-short__icon-wrap {
    justify-content: center;
  }

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

  .lm-short__icon {
    width: 76px;
        height: 76px;
  }

  .lm-short__icon svg {
    width: 54px;
        height: 54px;
  }

  .lm-short__text {
    font-size: 15px;
        line-height: 1.65;
        text-align: left;
  }

}


@media (max-width: 400px) {

  .lm-short {
    padding: 22px 16px 22px 8px;
        border-radius: 22px;
  }

  .lm-short__icon {
    width: 48px;
        height: 48px;
  }

  .lm-short__text {
    font-size: 14px;
        line-height: 1.6;
  }

}


@media (max-width: 380px) {

  .lm-short {
    padding: 20px 16px;
  }

  .lm-short__text {
    font-size: 17px;
  }

}


/* =========================================================
   07 Highlights
   ========================================================= */

.lm-highlights {
  margin: 28px 0;
    padding: 30px 30px 10px;

    background: radial-gradient(
        500px 180px at -5% 0%,
        rgba(246, 234, 218, 0.75),
        transparent 70%
      ),
      linear-gradient(
        180deg,
        rgba(255,255,255,0.24) 0%,
        rgba(255,255,255,0.06) 100%
      ),
      #efe5d8;
    border: 1px solid rgba(25, 24, 24, 0.05);
    border-radius: 20px;
}

.lm-highlights__title {
  margin: 0 0 14px;
    font-size: 16px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
}

.lm-highlights__list {
  display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding-left: 16px;
}

.lm-highlights__list li {
  margin: 0;
    line-height: 1.8;
    opacity: 0.69;
}


@media (max-width: 600px) {

  .lm-highlights {
    margin: 22px 0;
  }

}


@media (max-width: 400px) {

  .lm-highlights .lm-highlights__list {
    padding-left: 12px;
  }

}


/* =========================================================
   08 FAQ + questions
   ========================================================= */

.lm-faq {
  margin: 28px 0;
}

.lm-faq__question {
  margin: 0 0 10px;
    font-size: 20px;
    font-weight: 800;
}

.lm-faq__list {
  margin: 12px 0 0;
}

.lm-faq__list li {
  max-width: 90ch;
    margin: 10px 0;
    font-size: 18px;
    line-height: 1.8;
}

.lm-article-questions h3 {
  padding: 12px 0;
    font-weight: 600;
}

.lm-article-questions p {
  margin-bottom: 10px;
}


/* =========================================================
   09 Lists + flow pills
   ========================================================= */

.lm-article-steps p {
  margin: 5px 0;
}

.lm-flow-pills {
  display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 25px;
}

.lm-pill {
  position: relative;
    flex: 0 1 auto;
    min-width: 0;
    padding: 12px 14px;

    color: #1e1b18;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 500;
    text-align: center;

    background: linear-gradient(
      135deg,
      rgba(220, 216, 211, 0.38) 0%,
      rgba(246, 234, 218, 0.56) 50%,
      rgba(138, 124, 105, 0.32) 100%
    );
    border: 1px solid rgba(108, 92, 69, 0.1);
    border-radius: 999px;
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.55);

    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}

.lm-flow-arrow {
  flex: 0 0 auto;
    color: #e5ba69;
    font-size: 28px;
    line-height: 1;
}

.lm-list-clean {
  list-style: none;
    padding-left: 0;
}

.lm-list-clean > li {
  margin-left: -12px;
}

.lm-article-list__item .lm-article-p {
  margin-left: -18px;
}

.lm-article-list {
  padding-left: 28px;
}


@media (max-width: 600px) {

  .lm-flow-pills {
    flex-direction: column;
        align-items: center;
        gap: 12px;
        margin: 22px 0 30px;
  }

  .lm-pill {
    width: 86%;
        max-width: 280px;


        display: flex;
        align-items: center;
        justify-content: center;

        padding: 18px 14px;

        font-size: 16px;
        line-height: 1.35;
        text-align: center;

        border-radius: 999px;

        overflow-wrap: normal;
        word-break: normal;

        box-shadow:
          0 14px 34px rgba(0, 0, 0, 0.06),
          inset 0 1px 0 rgba(255, 255, 255, 0.58);
  }

  .lm-flow-arrow {
    align-self: center;

        font-size: 22px;
        line-height: 1;

        transform: rotate(90deg);

        color: #e2bb72;
  }

}


@media (max-width: 400px) {

  .lm-pill {
    padding: 11px 12px;
        font-size: 13px;
  }

}


/* =========================================================
   10 Comparison tables
   ========================================================= */

.lm-compare-grid--2col {
  display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin: 10px 0 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.lm-compare-grid--2col .lm-compare-grid__head,
.lm-compare-grid--2col .lm-compare-grid__feature,
.lm-compare-grid--2col .lm-compare-grid__cell {
  min-width: 0;
    padding: 22px 12px 22px 0;

    color: #111;
    font-size: 18px;
    line-height: 1.5;
    text-align: left;

    border-bottom: 1px solid rgba(0, 0, 0, 0.18);

    hyphens: none;
    overflow-wrap: break-word;
    word-break: normal;
}

.lm-compare-grid--2col .lm-compare-grid__head {
  padding-top: 10px;
    padding-bottom: 18px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.lm-compare-grid--2col .lm-compare-grid__feature,
.lm-compare-grid--2col .lm-compare-grid__cell {
  font-weight: 500;
}

.lm-compare-grid--2col > :nth-child(2n + 1) {
  padding-right: 30px;
}

.lm-compare-grid--2col > :nth-child(2n) {
  padding-right: 36px;
}

.lm-compare-grid--3col {
  display: grid;
    grid-template-columns: minmax(0, 29%) minmax(0, 35.5%) minmax(0, 35.5%);
    width: 100%;
    margin: 18px 0 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.lm-compare-grid--3col .lm-compare-grid__head,
.lm-compare-grid--3col .lm-compare-grid__feature,
.lm-compare-grid--3col .lm-compare-grid__cell {
  min-width: 0;
    padding: 16px 12px 18px 0;

    color: #111;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;

    border-bottom: 1px solid rgba(0, 0, 0, 0.18);

    hyphens: none;
    overflow-wrap: break-word;
    word-break: normal;
}

.lm-compare-grid--3col .lm-compare-grid__head {
  padding-top: 10px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.lm-compare-grid--3col .lm-compare-grid__feature {
  font-weight: 700;
}

.lm-compare-grid--3col > :nth-child(3n) {
  padding-right: 0;
}

.lm-compare-grid--metrics {
  grid-template-columns: minmax(0, 30%) minmax(0, 25%) minmax(0, 45%);
}

.lm-compare-grid--metrics > :nth-child(3n - 1) {
  text-align: left;
    padding-left: 36px;
    padding-right: 20px;
}

.lm-compare-grid--metrics .lm-compare-grid__head {
  text-align: left;
    justify-items: start;
}

.lm-compare-grid--offset-middle
  > :nth-child(3n - 1) {
  padding-left: 42px;
}

.lm-compare-grid--center-middle > :nth-child(3n - 1) {
  text-align: center;
    padding-right: 30px;
}

.lm-compare-grid--center-head .lm-compare-grid__head {
  display: flex;
    align-items: center;
    padding: 10px 0;
}

.lm-compare-grid--center-head
  .lm-compare-grid__head:nth-child(3n - 1),
.lm-compare-grid--center-head
  .lm-compare-grid__head:nth-child(3n) {
  justify-content: center;
    text-align: center;
}

.lm-compare-grid--center-head
  .lm-compare-grid__head:nth-child(3n) {
  justify-content: flex-start;
    text-align: left;
}

.lm-compare-grid--space {
  grid-template-columns: minmax(0, 34%) minmax(0, 32%) minmax(0, 34%);
}

.lm-compare-grid--space > :nth-child(3n - 1) {
  padding-left: 20px;
    padding-right: 20px;
}

.lm-compare-grid-first-col {
  grid-template-columns: minmax(0, 28%) minmax(0, 36%) minmax(0, 36%);
}

.lm-compare-grid--stats > :nth-child(3n - 1),
.lm-compare-grid--stats > :nth-child(3n) {
  display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-inline: 12px;
}

.lm-compare-grid--library {
  display: grid;
    grid-template-columns: minmax(0, 22%) minmax(0, 29%) minmax(0, 49%);
    width: 100%;
    margin: 18px 0 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.lm-compare-grid--library > * {
  display: grid;
    align-items: center;
    justify-items: start;
    text-align: left;
}

.lm-compare-grid--library > :nth-child(3n - 1),
.lm-compare-grid--library > :nth-child(3n) {
  padding-inline: 18px;
}

.lm-compare-grid--library > :nth-child(3n - 1) {
  padding-left: 36px;
}

.lm-compare-grid--4col {
  display: grid;
    grid-template-columns:
      minmax(0, 27%)
      minmax(0, 28%)
      minmax(0, 28%)
      minmax(0, 15%);

    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.lm-compare-grid--4col .lm-compare-grid__head,
.lm-compare-grid--4col .lm-compare-grid__feature,
.lm-compare-grid--4col .lm-compare-grid__cell {
  min-width: 0;
    padding: 16px 12px 18px 0;

    color: #111;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;

    border-bottom: 1px solid rgba(0, 0, 0, 0.18);

    hyphens: none;
    overflow-wrap: break-word;
    word-break: normal;
}

.lm-compare-grid--4col .lm-compare-grid__head {
  padding-top: 10px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.lm-compare-grid--4col .lm-compare-grid__feature {
  font-weight: 700;
}

.lm-compare-grid--4col > :nth-child(4n + 1) {
  padding-right: 18px;
}

.lm-compare-grid--4col > :nth-child(4n) {
  padding-right: 0;
}

.lm-compare-grid--4col .lm-compare-grid__head--risk,
.lm-compare-grid--4col .lm-compare-grid__cell--risk {
  display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lm-risk {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 100px;
    padding: 6px 12px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;

    background: rgba(0, 0, 0, 0.04);
    border-radius: 999px;
    box-sizing: border-box;
}

.lm-compare-grid--investment {
  grid-template-columns:
      minmax(0, 20%)
      minmax(0, 28%)
      minmax(0, 27%)
      minmax(0, 25%);
}

.lm-compare-grid--investment
  .lm-compare-grid__head,
.lm-compare-grid--investment
  .lm-compare-grid__feature,
.lm-compare-grid--investment
  .lm-compare-grid__cell {
  display: flex;
    align-items: center;
}

.lm-compare-grid--investment
  .lm-compare-grid__feature {
  justify-content: flex-start;
}

.lm-compare {
  margin: 40px 0;
}


@media (max-width: 900px) {

  .lm-compare-grid {
    grid-template-columns: minmax(0, 30%) minmax(0, 35%) minmax(0, 35%);
        margin: 16px 0 22px;
  }

  .lm-compare-grid__head,
  .lm-compare-grid__feature,
  .lm-compare-grid__cell {
    padding: 14px 8px 16px 0;
  }

  .lm-compare-grid__head {
    font-size: 15px;
        line-height: 1.3;
        letter-spacing: 0.035em;
  }

  .lm-compare-grid__feature,
  .lm-compare-grid__cell {
    font-size: 14px;
        line-height: 1.35;
  }

  .lm-compare-grid--2col .lm-compare-grid__head,
  .lm-compare-grid--2col .lm-compare-grid__feature,
  .lm-compare-grid--2col .lm-compare-grid__cell {
    font-size: 16px;
        line-height: 1.45;
  }

  .lm-compare-grid--4col {
    grid-template-columns: minmax(0, 32%) minmax(0, 24%) minmax(0, 28%) minmax(0, 16%);
  }

}


@media (max-width: 600px) {

  .lm-compare-grid--investment {
    grid-template-columns:
          minmax(0, 24%)
          minmax(0, 25%)
          minmax(0, 27%)
          minmax(0, 24%);
  }

  .lm-compare-grid--investment .lm-compare-grid__head,
  .lm-compare-grid--investment .lm-compare-grid__feature,
  .lm-compare-grid--investment .lm-compare-grid__cell {
    padding: 12px 6px 14px 0;
        font-size: 12px;
        line-height: 1.35;
  }

  .lm-compare-grid--investment > * {
    padding-right: 6px;
  }

  .lm-compare-grid--3col {
    margin: 14px 0 20px;
        font-size: 14px;
  }

  .lm-compare-grid--3col .lm-compare-grid__head,
.lm-compare-grid--3col .lm-compare-grid__feature,
.lm-compare-grid--3col .lm-compare-grid__cell {
    min-width: 0;
      padding: 16px 12px 18px 0;
      font-size: 14px;
  }

  .lm-compare-grid--compact {
    grid-template-columns: 1.6fr 0.9fr 0.9fr;
  }

  .lm-compare-grid__head,
  .lm-compare-grid__feature,
  .lm-compare-grid__cell {
    padding: 12px 6px 14px 0;
        font-size: 12px;
        line-height: 1.3;
  }

  .lm-compare-grid__head {
    padding: 12px 0;
        letter-spacing: 0.01em;
  }

  .lm-compare-grid--metrics {
    grid-template-columns: minmax(0, 32%) minmax(0, 30%) minmax(0, 38%);
  }

  .lm-compare-grid--metrics .lm-compare-grid__head,
  .lm-compare-grid--metrics .lm-compare-grid__head:first-child {
    font-size: 14px;
  }

  .lm-compare-grid--2col .lm-compare-grid__head,
  .lm-compare-grid--2col .lm-compare-grid__feature,
  .lm-compare-grid--2col .lm-compare-grid__cell {
    font-size: 14px;
        line-height: 1.35;
  }

  .lm-compare-grid--metrics > :nth-child(3n - 1) {
    text-align: left;
      padding-left: 36px;
      padding-right: 20px;
  }

  .lm-compare-grid--offset-middle
  > :nth-child(3n - 1) {
    padding-left: 20px;
  }

  .lm-compare-grid--4col {
    grid-template-columns:
        minmax(0, 25%)
        minmax(0, 25%)
        minmax(0, 25%)
        minmax(0, 25%);
  }

  .lm-compare-grid--4col .lm-compare-grid__head--risk {
    display: none;
  }

  .lm-compare-grid--4col .lm-compare-grid__head,
  .lm-compare-grid--4col .lm-compare-grid__head:first-child {
    font-size: 13px;
  }

  .lm-compare-grid--4col .lm-compare-grid__feature,
  .lm-compare-grid--4col .lm-compare-grid__cell {
    font-size: 14px;
  }

  .lm-compare-grid--4col > :nth-child(3n + 1),
  .lm-compare-grid--4col > :nth-child(3n + 2),
  .lm-compare-grid--4col > :nth-child(3n) {
    padding-right: 5px;
  }

  .lm-compare-grid--4col .lm-compare-grid__cell--risk {
    grid-column: 1 / -1;
        width: 100%;
        padding: 12px 5px 12px 0;
  }

  .lm-compare-grid--4col .lm-compare-grid__cell--risk::before {
    content: "RISK:";
        margin-right: 10px;

        color: rgba(107, 106, 100, 0.9);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.08em;
  }

  .lm-compare-grid--4col .lm-compare-grid__cell--risk .lm-risk {
    padding: 6px 14px;
        font-size: 12px;
        line-height: 1;
        background: rgba(0, 0, 0, 0.04);
  }

  .lm-compare-grid--questions {
    grid-template-columns: minmax(0, 36%) minmax(0, 32%) minmax(0, 32%);
  }

  .lm-compare-grid--questions .lm-compare-grid__head--risk,
  .lm-compare-grid--questions .lm-compare-grid__cell--risk {
    grid-column: 1 / -1;
  }

}


@media (max-width: 400px) {

  .lm-compare-grid__head,
  .lm-compare-grid__feature,
  .lm-compare-grid__cell {
    padding: 10px 4px 12px 0;
        font-size: 11px;
        line-height: 1.25;
  }

  .lm-compare-grid--metrics {
    grid-template-columns: minmax(0, 30%) minmax(0, 30%) minmax(0, 40%);
  }

  .lm-compare-grid--2col > :nth-child(2n) {
    padding-right: 24px;
  }

  .lm-compare-grid--4col .lm-compare-grid__cell--risk::before {
    font-size: 9px;
  }

  .lm-compare-grid--metrics > :nth-child(3n - 1) {
    text-align: left;
      padding-left: 26px;
      padding-right: 20px;
  }

  .lm-compare-grid--space {
    grid-template-columns: minmax(0, 38%) minmax(0, 28%) minmax(0, 34%);
  }

  .lm-compare-grid--space > :nth-child(3n) {
    padding-right: 0;
  }

  .lm-compare-grid--3col > :nth-child(3n) {
    padding-right: 0;
  }

}


/* =========================================================
   11 Note banner
   ========================================================= */

.lm-note-banner {
  padding: 20px 0;
}

.lm-note-banner__panel {
  position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 54px 38px 34px;

    background: linear-gradient(
      135deg,
      rgba(138, 124, 105, 0.18) 0%,
      rgba(246, 234, 218, 0.82) 50%,
      rgba(138, 124, 105, 0.14) 100%
    );
    border: 1px solid rgba(25, 24, 24, 0.05);
    border-radius: 18px;
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.08),
      0 2px 8px rgba(0, 0, 0, 0.05);
}

.lm-note-banner__intro {
  display: none;
}

.lm-note-banner__intro span {
  display: block;
}

.lm-note-banner__label {
  position: absolute;
    top: -24px;
    left: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    max-width: calc(100% - 56px);
    padding: 0 24px;

    color: #f6efe3;
    font-size: 15px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-align: center;
    text-transform: uppercase;

    background: #050505;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.lm-note-banner__content {
  display: grid;
    grid-template-columns: auto 1px minmax(0, 1fr);
    align-items: center;
    column-gap: 28px;
}

.lm-note-banner__stat {
  display: inline-flex;
    align-items: flex-end;
    gap: 8px;
    white-space: nowrap;

    font-family: "Cormorant Garamond", serif;
    font-size: 70px;
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #191918;
}

.lm-note-banner__value {
  font-family: "Cormorant Garamond", serif;
    font-size: 72px;
    line-height: 0.88;
    color: #181512;
}

.lm-note-banner__percent {
  font-family: "Cormorant Garamond", serif;
    font-size: 70px;
    line-height: 0.9;
    color: #181512;
}

.lm-note-banner__divider {
  width: 1px;
    align-self: stretch;
    background: rgba(25, 24, 24, 0.42);
}

.lm-note-banner__text {
  max-width: 760px;
    margin: 0;
    color: rgba(25, 24, 24, 0.72);
    font-size: 18px;
    line-height: 1.8;
}

.lm-note-banner__text strong {
  font-weight: 800;
}


@media (max-width: 900px) {

  .lm-note-banner__text {
    font-size: 17px;
        line-height: 1.65;
  }

  .lm-note-banner__panel {
    padding: 56px 24px 28px;
  }

  .lm-note-banner__divider {
    width: 1px;
      align-self: stretch;
      background: #5c5c5b;
  }

  .lm-note-banner__stat {
    font-size: 64px;
  }

  .lm-note-banner__text {
    font-size: 16px;
  }

}


@media (max-width: 600px) {

  .lm-note-banner {
    padding: 16px 0;
  }

  .lm-note-banner__panel {
    padding: 48px 28px 24px;
        border-radius: 16px;
  }

  .lm-note-banner__label {
    top: -14px;
        left: 12px;
        right: auto;

        width: 200px;
        min-height: 40px;
        padding: 6px 12px;

        font-size: 11px;
        line-height: 1.2;
        letter-spacing: 0.01em;
        text-align: center;
        border-radius: 8px;
  }

  .lm-note-banner__content {
    grid-template-columns: minmax(0, 0.9fr) 1px minmax(0, 1.1fr);
        column-gap: 14px;
        row-gap: 14px;
        align-items: center;
  }

  .lm-note-banner__stat {
    grid-column: 1;
        grid-row: 1;
        align-self: center;

        font-size: 60px;
        line-height: 0.9;
        text-align: right;
  }

  .lm-note-banner__stat--compact {
    font-size: 50px;
      letter-spacing: -0.04em;
  }

  .lm-note-banner__stat--center {
    font-size: 70px;
        letter-spacing: normal;
  }

  .lm-note-banner__divider {
    grid-column: 2;
        grid-row: 1;
        width: 1px;
        height: 100%;
        align-self: stretch;
        background: #191918;
  }

  .lm-note-banner__divider--mobile-hide {
    display: none;
  }

  .lm-note-banner__intro {
    display: block;
        grid-column: 3;
        grid-row: 1;

        color: #111;
        font-size: 16px;
        line-height: 1.02;
        font-weight: 800;
        letter-spacing: -0.02em;
        text-transform: uppercase;
  }

  .lm-note-banner__intro span {
    font-size: 14px;
  }

  .lm-note-banner__text {
    grid-column: 1 / -1;
        grid-row: 2;

        max-width: none;
        font-size: 15px;
        line-height: 1.8;
  }

  .lm-note-banner__value {
    font-size: 60px;
        text-align: center;
  }

  .lm-note-banner__percent {
    font-size: 58px;
  }

}


@media (max-width: 400px) {

  .lm-note-banner__panel {
    padding: 48px 24px 20px;
  }

  .lm-note-banner__label {
    top: -14px;

        left: 50%;
        transform: translateX(-50%);

        right: auto;

        width: 250px;
        min-height: 40px;
        padding: 6px 12px;

        font-size: 11px;
        line-height: 1.2;
        letter-spacing: 0.01em;
        text-align: center;
        border-radius: 8px;
  }

  .lm-note-banner__text {
    font-size: 15px;
  }

  .lm-note-banner__stat {
    grid-column: 1;
        grid-row: 1;
        align-self: center;

        font-size: 56px;
        line-height: 0.9;
        text-align: right;
  }

  .lm-note-banner__stat--compact {
    font-size: 38px;
      letter-spacing: -0.04em;
  }

  .lm-note-banner__stat--medium {
    font-size: 46px;
  }

}


/* =========================================================
   12 Related compact blocks
   ========================================================= */

.lm-article-more--compact {
  padding: 40px 40px;
}

.lm-article-more--compact .lm-article-more__title {
  margin-bottom: 18px;
    font-size: 22px;
    line-height: 1.3;
    text-align: left;
    opacity: 0.8;
}

.lm-article-more--compact .hub-grid {
  gap: 40px;
}

.lm-article-more--compact .hub-card {
  transform: none;
    box-shadow: none;
}

.lm-article-more--compact .hub-media img {
  height: 160px;
    object-fit: cover;
}

.lm-article-more--compact .hub-meta {
  font-size: 13px;
    opacity: 0.6;
}

.lm-article-more--compact .hub-h3 {
  font-size: 16px;
    line-height: 1.3;
}

.lm-article-more--compact .hub-excerpt {
  font-size: 14px;
    opacity: 0.8;
}

.lm-article-more--compact .hub-rule {
  margin: 12px 0;
    opacity: 0.5;
}

.lm-article-more--compact .hub-footer {
  font-size: 13px;
    opacity: 0.7;
}


/* =========================================================
   13 Related article carousel
   ========================================================= */

.article-more {
  padding: 44px 40px;
    background: #e6d7c3;
}

.article-more-inner {
  max-width: 1400px;
    margin: 0 auto;
    padding: 0 34px;
}

.article-more-title {
  margin: 0 0 22px;
    color: #2b2621;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 700;
    text-align: center;
}

.article-more-slider {
  position: relative;
}

.article-more-track-wrap {
  overflow: hidden;
}

.article-more-track {
  display: flex;
    gap: 22px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.article-more-card {
  flex: 0 0 calc((100% - 44px) / 3);
    min-width: 0;
}

.article-more-media {
  display: block;
    text-decoration: none;
}

.article-more-media img {
  display: block;
    width: 100%;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
    border-radius: 14px;
}

.article-more-meta {
  margin: 14px 0 10px;
    color: rgba(43, 38, 33, 0.62);
    font-size: 15px;
    line-height: 1.4;
}

.article-more-h3 {
  margin: 0 0 12px;
    color: #191818;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 700;
}

.article-more-h3 a {
  color: inherit;
    text-decoration: none;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;
}

.article-more-h3 a:hover {
  opacity: 0.8;
}

.article-more-excerpt {
  display: -webkit-box;
    margin: 0 0 18px;
    overflow: hidden;

    color: rgba(25, 24, 24, 0.78);
    font-size: 15px;
    line-height: 1.6;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-more-rule {
  margin: 0 0 14px;
    border: 0;
    border-top: 1px solid rgba(25, 24, 24, 0.14);
}

.article-more-footer {
  display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.article-more-by {
  width: fit-content;
    color: inherit;
    font-size: 16px;
    opacity: 0.75;
    text-decoration: none;

    background-image: linear-gradient(
      rgba(25, 24, 24, 0.45),
      rgba(25, 24, 24, 0.45)
    );
    background-repeat: no-repeat;
    background-size: 0% 1px;
    background-position: 0 100%;

    transition:
      background-size 0.22s ease,
      opacity 0.22s ease;
}

.article-more-tag {
  width: fit-content;
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(25, 24, 24, 0.4);
    text-decoration-thickness: 1px;
    opacity: 0.69;
}

.article-more-btn {
  display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 128px;
    transform: translateY(-50%);
    z-index: 3;

    width: 54px;
    height: 34px;

    color: #f6efe3;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;

    background:
    linear-gradient(
      180deg,
      rgba(216, 183, 122, 0.08) 0%,
      rgba(25, 24, 24, 0) 40%
    ),
    linear-gradient(
      180deg,
      rgba(30, 30, 29, 0.52) 0%,
      rgba(15, 15, 15, 0.69) 100%
    );
    border: 0;
    border-radius: 999px;
}

.article-more-btn--prev {
  left: -22px;
}

.article-more-btn--next {
  right: -22px;
}

.article-more-btn:hover {
  transform: translateY(-50%) scale(1.04);
}

.article-more-btn.is-hidden {
  opacity: 0;
    pointer-events: none;
}


@media (max-width: 1100px) {

  .article-more-card {
    flex: 0 0 calc((100% - 22px) / 2);
  }

}


@media (max-width: 900px) {

  .article-more {
    padding: 28px 0 34px;
  }

  .article-more-inner {
    padding: 0 20px;
  }

  .article-more-title {
    margin-bottom: 18px;
        font-size: 24px;
  }

  .article-more-card {
    flex: 0 0 calc((100% - 22px) / 2.35);
  }

  .article-more-btn--prev {
    left: -10px;
  }

  .article-more-btn--next {
    right: -10px;
  }

  .article-more-media img {
    aspect-ratio: 2.1 / 1;
  }

}


@media (max-width: 600px) {

  .article-more-inner {
    padding: 0 32px;
  }

  .article-more-title {
    font-size: 22px;
  }

  .article-more-card {
    flex: 0 0 calc((100% - 22px) / 1.55);
  }

  .article-more-h3 {
    font-size: 18px;
  }

  .article-more-excerpt,
  .article-more-meta,
  .article-more-by,
  .article-more-tag {
    font-size: 14px;
  }

  .article-more-btn {
    top: 30%;
        transform: translateY(-50%);

        width: 44px;
        height: 32px;

        color: #f6eada;
        font-size: 20px;

          background:
      linear-gradient(
        180deg,
        rgba(216, 183, 122, 0.08) 0%,
        rgba(25, 24, 24, 0) 40%
      ),
      linear-gradient(
        180deg,
        rgba(30, 30, 29, 0.52) 0%,
        rgba(15, 15, 15, 0.69) 100%
      );
        border: 1px solid rgba(246, 234, 218, 0.18);
        border-radius: 999px;
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  }

  .article-more-btn--next {
    right: 8px;
  }

  .article-more-btn--prev {
    left: 8px;
  }

  .article-more-btn {
    display: none;
  }

  .article-more-track-wrap {
    overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
  }

  .article-more-track {
    transform: none !important;
  }

  .article-more-card {
    scroll-snap-align: start;
  }

  .article-more-track-wrap::-webkit-scrollbar {
    display: none;
  }

}


@media (max-width: 400px) {

  .article-more-inner {
    padding: 0 18px;
  }

  .article-more-btn {
    top: 25%;
        width: 38px;
        height: 28px;
  }

  .article-more-card {
    flex: 0 0 82%;
  }

}


/* =========================================================
   14 Up/down jump button
   ========================================================= */

.lm-article-jump {
  position: fixed;
    right: clamp(10px, 2vw, 24px);
    bottom: clamp(12px, 2.5vh, 28px);
    z-index: 30;
}

.lm-article-jump__btn {
  display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;
    padding: 0;

    color: rgba(25, 24, 24, 0.65);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.78;

    background: radial-gradient(
      120% 120% at 30% 20%,
      rgba(255, 255, 255, 0.9),
      rgba(246, 239, 227, 0.75)
    );
    backdrop-filter: blur(12px);
    border: 0;
    border-radius: 999px;
    box-shadow:
      0 6px 18px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);

    transition:
      transform 0.18s ease,
      box-shadow 0.18s ease,
      color 0.18s ease,
      opacity 0.18s ease;
}

.lm-article-jump__btn:hover {
  transform: translateY(-1px);
    color: #191818;
    opacity: 1;
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
}


/* =========================================================
   15 Misc / legacy
   ========================================================= */


@media (max-width: 1100px) {

  .lm-article-table th,
  .lm-article-table td {
    font-size: 15px;
  }

  .lm-article-table thead th {
    font-size: 16px;
  }

}


@media (max-width: 900px) {

  .lm-article-table {
    min-width: 640px;
  }

  .lm-article-table th,
  .lm-article-table td {
    padding: 14px 12px 16px 0;
        font-size: 14px;
        line-height: 1.35;
  }

  .lm-article-table thead th {
    font-size: 15px;
  }

  .lm-article-table--3col tbody th[scope="row"] {
    width: 28%;
  }

  .lm-article-table--3col td {
    width: 36%;
  }

  .lm-article-table--4col tbody th[scope="row"] {
    width: 26%;
  }

  .lm-article-table--4col td {
    width: 24.6%;
  }

}


@media (max-width: 400px) {

  .lm-article-table {
    min-width: 520px;
  }

  .lm-article-table th,
  .lm-article-table td {
    font-size: 12px;
  }

  .lm-article-table thead th {
    font-size: 13px;
  }

}
