.ns-dynamic-blog-active .archive-tools {
    display: none !important;
}

.ns-dynamic-blog {
    margin-top: 34px;
}

.ns-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.ns-blog-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(190px, 260px) auto auto;
    gap: 12px;
    align-items: stretch;
    margin: 0 0 18px;
}

.ns-blog-filters input,
.ns-blog-filters select,
.ns-blog-filter-button {
    min-height: 54px;
    border: 1px solid #ded3c6;
    border-radius: 0;
    font: inherit;
}

.ns-blog-filters input,
.ns-blog-filters select {
    width: 100%;
    padding: 0 17px;
    color: #171411;
    background: #fff;
}

.ns-blog-filters input:focus,
.ns-blog-filters select:focus {
    outline: 2px solid #b79267;
    outline-offset: 1px;
}

.ns-blog-filter-button {
    padding: 0 28px;
    color: #fff;
    background: #171411;
    border-color: #171411;
    cursor: pointer;
}

.ns-blog-filter-button:hover,
.ns-blog-filter-button:focus-visible {
    color: #171411;
    background: #c5a173;
    border-color: #c5a173;
}

.ns-blog-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 10px;
    color: #6e655c;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ns-blog-count {
    margin: 0 0 20px;
    color: #746c64;
    font-size: 15px;
}

.ns-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ns-blog-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid #e2d8cc;
    background: #fff;
}

.ns-blog-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eee9e3;
}

.ns-blog-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 280ms ease;
}

.ns-blog-card:hover .ns-blog-card__image {
    transform: scale(1.025);
}

.ns-blog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.ns-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 12px;
    color: #9b744b;
    font-size: 13px;
    line-height: 1.5;
    text-transform: uppercase;
}

.ns-blog-card__title {
    margin: 0 0 13px;
    color: #18243a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    line-height: 1.18;
    letter-spacing: 0;
}

.ns-blog-card__title a {
    color: inherit;
    text-decoration: none;
}

.ns-blog-card__title a:hover,
.ns-blog-card__title a:focus-visible {
    color: #916a43;
}

.ns-blog-card__excerpt {
    margin: 0 0 20px;
    color: #625d57;
    font-size: 16px;
    line-height: 1.7;
}

.ns-blog-card__link {
    align-self: flex-start;
    margin-top: auto;
    color: #171411;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #c5a173;
    text-underline-offset: 5px;
}

.ns-blog-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 42px;
}

.ns-blog-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 13px;
    border: 1px solid #d9cbbd;
    color: #171411;
    background: #fff;
    text-decoration: none;
}

.ns-blog-page:hover,
.ns-blog-page:focus-visible,
.ns-blog-page.is-current {
    color: #fff;
    background: #171411;
    border-color: #171411;
}

.ns-blog-page.is-current {
    cursor: default;
}

.ns-blog-page__ellipsis {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 4px;
}

.ns-blog-empty {
    padding: 36px;
    border: 1px solid #ded3c6;
    color: #625d57;
    background: #fbf9f6;
    text-align: center;
}

html[dir='rtl'] .ns-blog-card__body,
html[dir='rtl'] .ns-blog-count,
html[dir='rtl'] .ns-blog-empty {
    text-align: right;
}

html[dir='rtl'] .ns-blog-card__link {
    align-self: flex-end;
}

@media (max-width: 1180px) {
    .ns-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ns-blog-filters {
        grid-template-columns: minmax(220px, 1fr) minmax(190px, 240px) auto;
    }

    .ns-blog-clear {
        grid-column: 1 / -1;
        justify-self: start;
        min-height: auto;
    }
}

@media (max-width: 760px) {
    .ns-dynamic-blog {
        margin-top: 24px;
    }

    .ns-blog-filters,
    .ns-blog-grid {
        grid-template-columns: 1fr;
    }

    .ns-blog-filter-button {
        width: 100%;
    }

    .ns-blog-card__body {
        padding: 21px;
    }

    .ns-blog-card__title {
        font-size: 25px;
    }

    .ns-blog-page--word {
        flex: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ns-blog-card__image {
        transition: none;
    }
}

/* Single editorial article */
.single-post #masthead,
.single-post #colophon,
.single-post #page > .site-header,
.single-post #page > .site-footer,
.single-post .entry-meta,
.single-post article > .entry-header,
.single-post article.post .ast-post-format- > .entry-header,
.single-post .entry-header .post-meta,
.single-post .entry-header .posted-on,
.single-post .entry-header .posted-by,
.single-post .post-navigation,
.single-post .comments-area {
    display: none !important;
}

.single-post .site-content > .ast-container {
    width: 100%;
    max-width: none;
    padding: 0;
}

.single-post .content-area,
.single-post .site-main,
.single-post .post {
    width: 100%;
    margin: 0;
}

.single-post .entry-header,
.single-post .entry-content,
.single-post .entry-footer {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.single-post .entry-title {
    margin: 0 0 18px;
    color: #18243a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 54px;
    line-height: 1.08;
    letter-spacing: 0;
}

.single-post .entry-meta {
    color: #8d6d4b;
    font-size: 14px;
}

.single-post .post-thumb {
    max-width: 1120px;
    margin: 34px auto 46px;
}

.single-post .post-thumb img {
    display: block;
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.ns-article-hero {
    width: min(1120px, calc(100% - 48px));
    max-width: 1120px;
    margin: 0 auto 52px;
    overflow: hidden;
    aspect-ratio: 2 / 1;
    background: #eee9e3;
}

.ns-article-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ns-article-body {
    color: #49443f;
    font-size: 18px;
    line-height: 1.78;
}

body.single-post .site-content,
body.single-post .site-main,
body.single-post article.post,
body.single-post .entry-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ns-article-layout {
    width: 100%;
    padding: 72px 0 84px;
    background: #f7f5f2;
}

.ns-article-heading {
    display: block !important;
    width: min(860px, calc(100% - 48px)) !important;
    max-width: 860px !important;
    margin: 0 auto 38px !important;
    padding: 0 !important;
}

.ns-article-heading h1 {
    max-width: 820px;
    margin: 0;
    color: #18243a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.ns-article-heading::after {
    display: block;
    width: 72px;
    height: 2px;
    margin-top: 26px;
    background: #bc9669;
    content: '';
}

.ns-article-content {
    width: min(860px, calc(100% - 48px));
    max-width: 860px;
    margin: 0 auto;
}

.ns-article-content .ns-article-body {
    width: 100%;
    max-width: none;
    margin: 0;
}

.ns-article-content .ns-article-lead {
    margin: 0 0 38px;
    color: #282522;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 23px;
    line-height: 1.62;
}

.ns-article-content .ns-article-toc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 36px;
    margin: 0 0 58px;
    padding: 30px 34px;
    border: 1px solid #ded2c5;
    background: #fff;
}

.ns-article-content .ns-article-toc strong {
    grid-column: 1 / -1;
    margin-bottom: 5px;
}

.ns-article-content h2 {
    scroll-margin-top: 140px;
}

.ns-article-body p,
.ns-article-body ul,
.ns-article-body ol {
    margin: 0 0 25px;
}

.ns-article-body h2,
.ns-article-body h3 {
    color: #18243a;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: 0;
}

.ns-article-body h2 {
    margin: 54px 0 20px;
    font-size: 38px;
    line-height: 1.2;
}

.ns-article-body h3 {
    margin: 34px 0 16px;
    font-size: 27px;
}

.ns-article-body a {
    color: #7c5733;
    text-decoration-color: #c5a173;
    text-underline-offset: 4px;
}

.ns-article-lead {
    color: #292622;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 25px;
    line-height: 1.58;
}

.ns-article-toc {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 26px;
    margin: 38px 0 50px;
    padding: 28px;
    border: 1px solid #ded3c6;
    background: #fbf9f6;
}

.ns-article-toc strong {
    grid-column: 1 / -1;
    margin-bottom: 5px;
    color: #171411;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
}

.ns-article-table-wrap {
    margin: 30px 0;
    overflow-x: auto;
    border: 1px solid #ded3c6;
}

.ns-article-table {
    width: 100%;
    min-width: 720px;
    margin: 0;
    border-collapse: collapse;
    background: #fff;
}

.ns-article-table th,
.ns-article-table td {
    padding: 15px 17px;
    border: 0;
    border-bottom: 1px solid #e7ded4;
    text-align: left;
    vertical-align: top;
}

.ns-article-table th {
    color: #fff;
    background: #1b1a18;
    font-weight: 600;
}

.ns-article-table tbody tr:last-child td {
    border-bottom: 0;
}

.ns-checklist {
    padding: 25px 30px 10px 54px;
    border-left: 4px solid #c5a173;
    background: #f8f5f1;
}

.ns-checklist li {
    margin-bottom: 12px;
}

.ns-article-cta {
    margin-top: 60px;
    padding: 46px;
    color: #f6f1e9;
    background: #171411;
}

.ns-article-cta h2 {
    margin: 5px 0 16px;
    color: #fff;
}

.ns-article-cta p {
    color: #ddd4c9;
}

.ns-article-cta .ns-eyebrow {
    margin-bottom: 0;
    color: #c9a476;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ns-article-button,
.ns-article-text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin: 6px 12px 0 0;
    padding: 0 22px;
}

.ns-article-cta .ns-article-button {
    color: #171411;
    background: #c5a173;
    text-decoration: none;
}

.ns-article-cta .ns-article-text-link {
    color: #fff;
    border: 1px solid #8f857a;
    text-decoration: none;
}

html[dir='rtl'] .ns-article-body,
html[dir='rtl'] .single-post .entry-header {
    text-align: right;
}

html[dir='rtl'] .ns-article-table th,
html[dir='rtl'] .ns-article-table td {
    text-align: right;
}

html[dir='rtl'] .ns-checklist {
    padding-right: 54px;
    padding-left: 30px;
    border-right: 4px solid #c5a173;
    border-left: 0;
}

html[dir='rtl'] .ns-article-button,
html[dir='rtl'] .ns-article-text-link {
    margin-right: 0;
    margin-left: 12px;
}

@media (max-width: 760px) {
    .single-post .site-content > .ast-container {
        padding: 0;
    }

    .single-post .entry-title {
        font-size: 38px;
    }

    .ns-article-body {
        font-size: 17px;
    }

    .ns-article-lead {
        font-size: 21px;
    }

    .ns-article-hero {
        width: calc(100% - 32px);
        margin-bottom: 34px;
        aspect-ratio: 4 / 3;
    }

    .ns-article-layout {
        padding: 42px 0 58px;
    }

    .ns-article-heading,
    .ns-article-content {
        width: calc(100% - 32px) !important;
    }

    .ns-article-heading {
        margin-bottom: 28px !important;
    }

    .ns-article-heading h1 {
        font-size: 38px;
        line-height: 1.12;
    }

    .ns-article-heading::after {
        margin-top: 20px;
    }

    .ns-article-content .ns-article-lead {
        font-size: 20px;
        line-height: 1.55;
    }

    .ns-article-body h2 {
        margin-top: 43px;
        font-size: 31px;
    }

    .ns-article-toc {
        grid-template-columns: 1fr;
        padding: 23px;
    }

    .ns-article-content .ns-article-toc {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 42px;
        padding: 24px;
    }

    .ns-article-cta {
        padding: 30px 24px;
    }

    .ns-article-button,
    .ns-article-text-link {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

/* Editorial guide layout: full-width hero, sticky contents and related guides. */
.ns-guide-layout {
    width: 100%;
    background: #f7f5f2;
}

.ns-guide-hero {
    position: relative;
    width: 100%;
    height: 680px;
    margin: 0;
    overflow: hidden;
    background: #28231f;
}

.ns-guide-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ns-guide-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 14, 12, .82) 0%, rgba(17, 14, 12, .58) 46%, rgba(17, 14, 12, .12) 78%);
}

.ns-guide-hero__inner {
    position: absolute;
    right: 0;
    bottom: 86px;
    left: 0;
    width: min(1240px, calc(100% - 96px));
    margin: 0 auto;
    color: #fff;
}

.ns-guide-hero__inner p {
    margin: 0 0 20px;
    color: #e2bd8b;
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.ns-guide-hero__inner h1 {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: balance;
}

.ns-guide-reading {
    display: grid;
    grid-template-columns: 260px minmax(0, 820px);
    justify-content: space-between;
    gap: 80px;
    width: min(1240px, calc(100% - 96px));
    margin: 0 auto;
    padding: 92px 0 110px;
}

.ns-article-sidebar {
    position: sticky;
    top: 32px;
    align-self: start;
}

.ns-article-sidebar .ns-article-toc {
    display: block;
    margin: 0;
    padding: 28px 26px;
    border: 1px solid #ddd0c1;
    background: #fff;
    box-shadow: 0 18px 42px rgba(35, 28, 23, .055);
}

.ns-article-sidebar .ns-article-toc strong {
    display: block;
    margin: 0 0 18px;
    color: #18243a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 23px;
    line-height: 1.2;
}

.ns-article-sidebar .ns-article-toc a {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid #eee6dc;
    color: #66594e;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
}

.ns-article-sidebar .ns-article-toc a:last-child {
    border-bottom: 0;
}

.ns-article-sidebar .ns-article-toc a:hover,
.ns-article-sidebar .ns-article-toc a:focus {
    color: #9a7147;
}

.ns-guide-main {
    min-width: 0;
}

.ns-guide-main .ns-article-body {
    width: 100%;
    max-width: none;
    margin: 0;
    color: #4d4843;
    font-size: 18px;
    line-height: 1.82;
}

.ns-guide-main .ns-article-lead {
    margin: 0 0 48px;
    padding: 0 0 36px;
    border-bottom: 1px solid #d9ccbd;
    color: #282522;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 25px;
    line-height: 1.62;
}

.ns-guide-main .ns-article-body h2 {
    margin-top: 62px;
    font-size: 40px;
    line-height: 1.16;
    scroll-margin-top: 40px;
}

.ns-guide-main .ns-article-body h3 {
    font-size: 28px;
}

.ns-answer-box,
.ns-note-box,
.ns-question-panel,
.ns-score-meaning {
    margin: 34px 0;
    padding: 30px 32px;
    border: 1px solid #d9ccbd;
    background: #fbf8f4;
}

.ns-answer-box {
    border-top: 4px solid #b58a5b;
}

.ns-answer-box .ns-eyebrow {
    margin: 0 0 6px;
    color: #9a7147;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.ns-answer-box h2,
.ns-question-panel h3 {
    margin: 0 0 12px !important;
}

.ns-answer-box p:last-child,
.ns-note-box p:last-child,
.ns-question-panel ol,
.ns-score-meaning p:last-child {
    margin-bottom: 0;
}

.ns-article-figure {
    margin: 42px 0;
}

.ns-article-figure img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #eee8e1;
}

.ns-article-figure figcaption {
    padding: 12px 16px;
    border-right: 1px solid #e2d7cc;
    border-bottom: 1px solid #e2d7cc;
    border-left: 1px solid #e2d7cc;
    color: #70675f;
    font-size: 14px;
    line-height: 1.55;
}

.ns-red-flags {
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.ns-red-flags li {
    position: relative;
    margin: 0;
    padding: 18px 18px 18px 48px;
    border-bottom: 1px solid #e4d9ce;
}

.ns-red-flags li::before {
    position: absolute;
    top: 22px;
    left: 16px;
    width: 18px;
    height: 18px;
    border: 1px solid #a46f54;
    color: #8f563e;
    content: '!';
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
}

.ns-scorecard {
    display: grid;
    margin: 32px 0 24px;
    border-top: 1px solid #d9ccbd;
    border-left: 1px solid #d9ccbd;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ns-scorecard > div {
    display: flex;
    min-height: 138px;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border-right: 1px solid #d9ccbd;
    border-bottom: 1px solid #d9ccbd;
    background: #fff;
}

.ns-scorecard strong {
    color: #a1764d;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 38px;
    line-height: 1;
}

.ns-scorecard span {
    color: #2f2a26;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.ns-score-meaning {
    display: grid;
    gap: 8px;
}

.ns-score-meaning p {
    margin: 0;
}

.ns-article-faq {
    margin: 28px 0 52px;
    border-top: 1px solid #d9ccbd;
}

.ns-article-faq details {
    border-bottom: 1px solid #d9ccbd;
}

.ns-article-faq summary {
    position: relative;
    padding: 24px 48px 24px 0;
    color: #202b3e;
    cursor: pointer;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    list-style: none;
}

.ns-article-faq summary::-webkit-details-marker {
    display: none;
}

.ns-article-faq summary::after {
    position: absolute;
    top: 23px;
    right: 4px;
    color: #a1764d;
    content: '+';
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 400;
}

.ns-article-faq details[open] summary::after {
    content: '−';
}

.ns-article-faq details p {
    margin: 0;
    padding: 0 48px 24px 0;
}

.ns-editorial-note {
    margin: 34px 0 0 !important;
    padding-top: 22px;
    border-top: 1px solid #d9ccbd;
    color: #716961;
    font-size: 14px;
    line-height: 1.65;
}

html[dir='rtl'] .ns-red-flags li {
    padding-right: 48px;
    padding-left: 18px;
}

html[dir='rtl'] .ns-red-flags li::before {
    right: 16px;
    left: auto;
}

html[dir='rtl'] .ns-article-faq summary {
    padding-right: 0;
    padding-left: 48px;
}

html[dir='rtl'] .ns-article-faq summary::after {
    right: auto;
    left: 4px;
}

html[dir='rtl'] .ns-article-faq details p {
    padding-right: 0;
    padding-left: 48px;
}

.ns-related-guides {
    padding: 88px 0 100px;
    border-top: 1px solid #e4d9ce;
    background: #fff;
}

.ns-related-guides__head,
.ns-related-guides__grid {
    width: min(1240px, calc(100% - 96px));
    margin-right: auto;
    margin-left: auto;
}

.ns-related-guides__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.ns-related-guides__eyebrow {
    margin: 0 0 10px !important;
    color: #aa8155;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.ns-related-guides__head h2 {
    margin: 0;
    color: #18243a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 44px;
    line-height: 1.12;
    letter-spacing: 0;
}

.ns-related-guides__head > p {
    max-width: 420px;
    margin: 0;
    color: #6c655f;
    font-size: 16px;
    line-height: 1.65;
}

.ns-related-guides__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.ns-related-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid #e2d7cc;
    background: #fff;
}

.ns-related-card__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #eee8e1;
}

.ns-related-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.ns-related-card:hover .ns-related-card__media img {
    transform: scale(1.025);
}

.ns-related-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

.ns-related-card__body > span {
    color: #aa8155;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ns-related-card h3 {
    margin: 12px 0 14px;
    color: #18243a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 27px;
    line-height: 1.18;
    letter-spacing: 0;
}

.ns-related-card h3 a,
.ns-related-card__link {
    color: inherit;
}

.ns-related-card__body p {
    margin: 0 0 22px;
    color: #6a625c;
    font-size: 15px;
    line-height: 1.65;
}

.ns-related-card__link {
    margin-top: auto;
    color: #8f653d;
    font-size: 14px;
    font-weight: 600;
    text-underline-offset: 4px;
}

html[dir='rtl'] .ns-guide-hero__shade {
    background: linear-gradient(270deg, rgba(17, 14, 12, .82) 0%, rgba(17, 14, 12, .58) 46%, rgba(17, 14, 12, .12) 78%);
}

html[dir='rtl'] .ns-guide-hero__inner h1 {
    margin-right: 0;
    margin-left: auto;
}

.ns-fabric-comparison-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 36px 0 52px;
}

.ns-fabric-comparison-grid figure {
    margin: 0;
    border: 1px solid #e5ddd4;
    background: #fff;
}

.ns-fabric-comparison-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.ns-fabric-comparison-grid figcaption {
    display: flex;
    min-height: 78px;
    padding: 15px 14px;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    color: #6a625c;
    font-size: 13px;
    line-height: 1.4;
}

.ns-fabric-comparison-grid figcaption strong {
    color: #181410;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 19px;
}

@media (max-width: 1020px) {
    .ns-guide-hero {
        height: 590px;
    }

    .ns-guide-hero__inner h1 {
        font-size: 52px;
    }

    .ns-guide-reading {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 46px;
    }
}

@media (max-width: 820px) {
    .ns-guide-hero {
        height: 520px;
    }

    .ns-guide-hero__inner,
    .ns-guide-reading,
    .ns-related-guides__head,
    .ns-related-guides__grid {
        width: calc(100% - 48px);
    }

    .ns-guide-hero__inner {
        bottom: 54px;
    }

    .ns-guide-hero__inner h1 {
        font-size: 46px;
    }

    .ns-guide-reading {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 60px 0 76px;
    }

    .ns-article-sidebar {
        position: static;
    }

    .ns-article-sidebar .ns-article-toc {
        columns: 2;
        column-gap: 36px;
    }

    .ns-article-sidebar .ns-article-toc strong {
        column-span: all;
    }

    .ns-related-guides__grid {
        grid-template-columns: 1fr;
    }

    .ns-related-card {
        display: grid;
        grid-template-columns: 42% 1fr;
    }

    .ns-related-card__media {
        height: 100%;
        aspect-ratio: auto;
    }

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

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

@media (max-width: 560px) {
    .ns-guide-hero {
        height: 470px;
    }

    .ns-guide-hero__shade {
        background: linear-gradient(0deg, rgba(17, 14, 12, .84) 0%, rgba(17, 14, 12, .48) 62%, rgba(17, 14, 12, .12) 100%);
    }

    html[dir='rtl'] .ns-guide-hero__shade {
        background: linear-gradient(0deg, rgba(17, 14, 12, .84) 0%, rgba(17, 14, 12, .48) 62%, rgba(17, 14, 12, .12) 100%);
    }

    .ns-guide-hero__inner,
    .ns-guide-reading,
    .ns-related-guides__head,
    .ns-related-guides__grid {
        width: calc(100% - 32px);
    }

    .ns-guide-hero__inner {
        bottom: 38px;
    }

    .ns-guide-hero__inner p {
        margin-bottom: 14px;
        font-size: 11px;
    }

    .ns-guide-hero__inner h1 {
        font-size: 38px;
    }

    .ns-guide-reading {
        gap: 34px;
        padding: 44px 0 58px;
    }

    .ns-article-sidebar .ns-article-toc {
        columns: 1;
        padding: 24px;
    }

    .ns-guide-main .ns-article-lead {
        font-size: 21px;
    }

    .ns-guide-main .ns-article-body {
        font-size: 17px;
        line-height: 1.76;
    }

    .ns-guide-main .ns-article-body h2 {
        margin-top: 48px;
        font-size: 32px;
    }

    .ns-answer-box,
    .ns-note-box,
    .ns-question-panel,
    .ns-score-meaning {
        padding: 24px 20px;
    }

    .ns-scorecard {
        grid-template-columns: 1fr;
    }

    .ns-fabric-comparison-grid {
        gap: 10px;
        margin: 28px 0 42px;
    }

    .ns-fabric-comparison-grid figcaption {
        min-height: 70px;
        padding: 12px;
    }

    .ns-scorecard > div {
        min-height: 112px;
    }

    .ns-article-faq summary {
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 20px;
    }

    .ns-article-faq summary::after {
        top: 19px;
    }

    .ns-related-guides {
        padding: 58px 0 66px;
    }

    .ns-related-guides__head {
        display: block;
        margin-bottom: 28px;
    }

    .ns-related-guides__head h2 {
        font-size: 36px;
    }

    .ns-related-guides__head > p {
        margin-top: 16px;
    }

    .ns-related-card {
        display: flex;
    }

    .ns-related-card__media {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .ns-related-card__body {
        padding: 24px;
    }
}
