.nml-csh--single-case .nml-sp__hero {
    padding: 144px 0 80px;
    background: linear-gradient(158.49deg, #040F2D 18.42%, #162F6F 88.01%);
}

.nml-csh--single-case .nml-sp__hero-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.nml-csh--single-case .nml-sp__hero-badges a {
    text-decoration: none;
}

.nml-csh--single-case .nml-sp__hero-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #FFFFFF;
    border: 1px solid #D5DAFA;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #0B101F;
    text-decoration: none;
    white-space: nowrap;
}

.nml-csh--single-case .nml-sp__hero-title {
    margin: 0 0 40px;
    color: var(--color-text-white);
}

.nml-csh--single-case .nml-sp__hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #FFFFFF;
}

.nml-csh--single-case .nml-sp__hero-meta-sep {
    font-size: 24px;
    opacity: 1;
}

/* ── Body layout ── */
.nml-csh--single-case .nml-sp__body {
    padding: 48px 0 80px;
    background: var(--color-bg);
}

.nml-csh--single-case .nml-sp__layout {
    display: grid;
    grid-template-columns: 1fr 398px;
    align-items: start;
    gap: 123px;
}

.nml-csh--single-case .nml-sp__layout {
    display: grid;
    align-items: start;
    grid-template-columns: 398px 1fr;
    gap: 123px;
}

/* ══ Content ══ */
.nml-csh--single-case .nml-sp__content {
    max-width: 696px;
    min-width: 0;
}

/* Paragraphs */
.nml-csh--single-case .nml-sp__content p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.nml-csh--single-case .nml-sp__content p:last-child {
    margin-bottom: 0;
}

/* Headings */
.nml-csh--single-case .nml-sp__content h2 {
    margin: 64px 0 16px;
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
}

#nml-heading-0{
    margin: 0px 0 16px;
}

.nml-csh--single-case .nml-sp__content h3 {
    margin: 64px 0 16px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.nml-csh--single-case .nml-sp__content h4 {
    margin: 64px 0 16px;
    color: var(--color-text-primary);
}

.nml-csh--single-case .nml-sp__content h4:first-child {
    margin: 0 0 16px;
}

.nml-csh--single-case .nml-sp__content h5 {
    margin: 48px 0 16px;
    color: var(--color-text-primary);
}

.nml-csh--single-case .nml-sp__content .container {
    padding: 0;
}

/* Lists */
.nml-csh--single-case .nml-sp__content ul,
.nml-csh--single-case .nml-sp__content ol {
    margin: 0 0 20px;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nml-csh--single-case .nml-sp__content ul li,
.nml-csh--single-case .nml-sp__content ol li {
    position: relative;
    padding-left: 32px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.nml-csh--single-case .nml-sp__content ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    margin: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

.nml-csh--single-case .nml-sp__content ol {
    counter-reset: ol-counter;
}

.nml-csh--single-case .nml-sp__content ol li {
    counter-increment: ol-counter;
}

.nml-csh--single-case .nml-sp__content ol li::before {
    content: counter(ol-counter) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--color-accent);
    font-size: 15px;
}

/* Links */
.nml-csh--single-case .nml-sp__content .wp-block-paragraph a {
    color: #FF4171;
    font-weight: 600;
    text-decoration-line: underline;
    transition: all 0.3s;
}

/* Images */
.nml-csh--single-case .nml-sp__content img {
    max-width: 99.7%;
    height: auto;
    margin: 0;
    object-fit: contain;
}

.nml-csh--single-case .wp-block-pullquote {
    margin: 24px 0;
    padding: 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: #0B101F;
    text-align: left;
}

/* Blockquote */
.nml-csh--single-case .nml-sp__content blockquote p {
    padding: 8px 0 8px 24px;
    border-left: 2px solid var(--color-accent);
}

.nml-csh--single-case .nml-sp__content blockquote cite {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #303D60;
    font-style: normal;
}

/* Code */
.nml-csh--single-case .nml-sp__content code {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    background: var(--color-bg-secondary);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--color-accent);
}

.nml-csh--single-case .nml-sp__content pre {
    background: #0B101F;
    color: #E8EAFF;
    border-radius: 10px;
    padding: 20px 24px;
    overflow-x: auto;
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 22px;
}

.nml-csh--single-case .nml-sp__content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Tables */
.nml-csh--single-case .nml-sp__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 24px;
    font-size: 15px;
}

.nml-csh--single-case .nml-sp__content th,
.nml-csh--single-case .nml-sp__content td {
    padding: 12px 16px;
    border: 1px solid var(--color-line);
    text-align: left;
}

.nml-csh--single-case .nml-sp__content th {
    background: var(--color-bg-secondary);
    font-weight: 700;
    color: var(--color-text-primary);
}

/* HR */
.nml-csh--single-case .nml-sp__content hr {
    border: none;
    border-top: 1px solid var(--color-line);
    margin: 32px 0;
}

/* Gutenberg figure alignment */
.nml-csh--single-case .nml-sp__content .wp-block-image {
    margin: 24px 0 16px;
}

.nml-csh--single-case .nml-sp__content .wp-caption-text,
.nml-csh--single-case .nml-sp__content figcaption {
    font-size: 13px;
    color: var(--color-text-tertiary);
    text-align: center;
    margin-top: 8px;
}

/* ══ Sidebar ══ */
.nml-csh--single-case .nml-sp__sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Table of Contents */
.nml-csh--single-case .nml-sp__toc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #F5F6FA;
    border: 1px solid #889CF1;
    box-shadow: 0 2px 4px rgba(76, 131, 243, 0.24);
    border-radius: 12px;
}

.nml-csh--single-case .nml-sp__toc-title {
    width: 100%;
    margin: 0!important;
    padding-bottom: 12px;
    border-bottom: 1px solid #889CF1;
    color: var(--color-text-primary);
}

.nml-csh--single-case .nml-sp__share {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nml-csh--single-case .nml-sp__share-title {
    width: 100%;
    margin: 0!important;
    color: var(--color-text-primary);
}

.nml-csh--single-case .nml-sp__toc-nav {
    display: flex;
    flex-direction: column;
}

.nml-csh--single-case .nml-sp__toc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 19px 0;
    border-bottom: 2px solid #D5DAFA;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #0B101F;
    text-decoration: none;
    transition: all 0.3s;
}

.nml-csh--single-case .nml-sp__toc-link:first-child {
    border-top: 2px solid transparent;
}

.nml-csh--single-case .nml-sp__toc-link:hover {
    color: #303D60;
    border-bottom-color: #889CF1;
}

.nml-csh--single-case .nml-sp__toc-link--active {
    border-bottom-color: #FF4171;
    font-weight: 700;
}

.nml-csh--single-case .nml-sp__toc-link--active:hover {
    border-bottom-color: #F1005B;
    color: #303D60;
}

.nml-csh--single-case .nml-ba__cat-dot {
    display: none;
    width: 8px;
    height: 8px;
    margin: 8px;
    border-radius: 50%;
    background: #FF4171;
    flex-shrink: 0;
    transition: all 0.3s;
}

.nml-csh--single-case .nml-sp__toc-link--active:hover .nml-ba__cat-dot {
    background: #F1005B;
}

.nml-csh--single-case .nml-sp__toc-link--active .nml-ba__cat-dot {
    display: block;
}

/* Share */
.nml-csh--single-case .nml-sp__share-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nml-csh--single-case .nml-sp__share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

/* ══ Case Study Hero ══ */
.nml-csh--single-case .nml-csh {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #040F2D 0%, #162F6F 100%);
}

/* Single post variant — light background */
.nml-csh--single-case .nml-csh--single {
    padding: 120px 0 64px;
    background: #FFFFFF;
}

.nml-csh--single-case .nml-csh--single .nml-csh__heading {
    color: #0B101F;
    font-size: 48px;
    line-height: 56px;
    font-weight: 700;
}

.nml-csh--single-case .nml-csh--single .nml-csh__subhead {
    color: #303D60;
}

/* Badge */
.nml-csh--single-case .nml-csh__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: max-content;
    padding: 8px 16px;
    background: #FFFFFF;
    border: 1px solid #D5DAFA;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #0B101F;
}

.nml-csh--single-case .nml-csh__badge span {
    margin-top: 2px;
}

/* Framed media — featured image with shadow */
.nml-csh--single-case .nml-csh__media--frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(11, 16, 31, 0.12), 0 2px 8px rgba(76, 131, 243, 0.16);
    border: 1px solid #D5DAFA;
}

.nml-csh--single-case .nml-csh__media--frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    margin: 0;
}

/* <picture> — обёртка для отдельной мобильной картинки, по умолчанию inline */
.nml-csh--single-case .nml-csh__media picture {
    display: block;
}

.nml-csh--single-case .nml-csh__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.nml-csh--single-case .nml-csh__content {
    flex: 0 0 auto;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nml-csh--single-case .nml-csh__heading {
    margin: 0;
    color: #FFFFFF;
}

.nml-csh--single-case .nml-csh__subhead {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.80);
}

.nml-csh--single-case .nml-csh__btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.nml-csh--single-case .nml-csh__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.nml-csh--single-case .nml-csh__btn--primary {
    background: #FFFFFF;
    color: #162F6F;
    border: 2px solid #FFFFFF;
}

.nml-csh--single-case .nml-csh__btn--primary:hover {
    background: rgba(255, 255, 255, 0.90);
    border-color: rgba(255, 255, 255, 0.90);
}

.nml-csh--single-case .nml-csh__btn--outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.40);
}

.nml-csh--single-case .nml-csh__btn--outline:hover {
    border-color: #FFFFFF;
}

.nml-csh--single-case .nml-csh__media {
    flex: 0 0 auto;
    max-width: 593px;
}

.nml-csh--single-case .nml-csh__media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    margin: 0;
}

@media (max-width: 1024px) {
    .nml-csh--single-case .nml-csh__content {
        max-width: 440px;
    }
    .nml-csh--single-case .nml-csh__media {
        max-height: 208px;
    }
}

@media (max-width: 991px) {
    .nml-csh--single-case .nml-csh {
        padding: 96px 0 40px;
    }
    .nml-csh--single-case .nml-csh__inner {
        flex-direction: column;
        gap: 32px;
    }
    .nml-csh--single-case .nml-csh--single .nml-csh__heading {
        margin-top: 12px;
        font-size: 40px;
        line-height: 48px;
    }
    .nml-csh--single-case .nml-csh__content {
        max-width: 100%;
        gap: 12px;
    }
    .nml-csh--single-case .nml-csh__media {
        max-width: 100%;
        width: 100%;
    }
    .nml-csh--single-case .nml-csh__subhead {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ══ Case Study: Stats ══ */
.nml-csh--single-case .nml-cs__stats {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 20px;
}

.nml-csh--single-case .nml-cs__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nml-csh--single-case .nml-cs__stat-value {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: #0B101F;
}

.nml-csh--single-case .nml-cs__stat-label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #303D60;
}

/* Stats on light background (single post) */
.nml-csh--single-case .nml-cs__stat-value {
    color: #0B101F;
}

.nml-csh--single-case .nml-cs__stat-label {
    color: #303D60;
}

/* ══ Case Study: Sticky Float ══ */
.nml-csh--single-case .nml-cs__sticky-float {
    position: fixed;
    max-width: 64px;
    width: 100%;
    height: 73px;
    right: 24px;
    bottom: 24px;
    z-index: 7;
}

.nml-csh--single-case .nml-cs__sticky-float img {
    display: block;
    max-width: 64px;
    width: 100%;
    height: 73px;
    margin: 0;
}

@media (max-width: 991px) {
    .nml-csh--single-case .nml-cs__sticky-float {
        max-width: 44px;
        max-height: 50px;
        bottom: 16px;
        right: 16px;
    }
    .nml-csh--single-case .nml-cs__sticky-float img {
        max-width: 44px;
        max-height: 50px;
    }
}

/* ══ Case Study: Info bar ══ */
.nml-csh--single-case .nml-cs__info-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 116px;
    gap: 10px;
    background: linear-gradient(131.06deg, #040F2D 23.34%, #202A44 91.34%);
}

.nml-csh--single-case .nml-cs__info-bar-inner {
    display: flex;
    align-items: center;
    gap: 0;
}

.nml-csh--single-case .nml-cs__info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    padding: 0 77px;
}

.nml-csh--single-case .nml-cs__info-item:first-child {
    padding-left: 0;
}

.nml-csh--single-case .nml-cs__info-label {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #FFFFFF;
    opacity: 0.6;
}

.nml-csh--single-case .nml-cs__info-value {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #FFFFFF;
}

.nml-csh--single-case .nml-cs__info-sep {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255);
    flex-shrink: 0;
    opacity: 0.2;
}

@media (max-width: 768px) {
    .nml-csh--single-case .nml-cs__stats {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 4px;
    }

    .nml-csh--single-case .nml-cs__stat-value {
        font-size: 24px;
        line-height: 32px;
    }

    .nml-csh--single-case .nml-cs__info-bar {
        padding: 40px 0;
    }

    .nml-csh--single-case .nml-cs__info-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .nml-csh--single-case .nml-cs__info-item {
        padding: 0;
    }

    .nml-csh--single-case .nml-cs__info-label {
        font-size: 14px;
        line-height: 20px;
    }

    .nml-csh--single-case .nml-cs__info-value {
        font-size: 18px;
        line-height: 26px;
    }

    .nml-csh--single-case .nml-cs__info-sep {
        width: 100%;
        height: 1px;
    }
}

/* ══ Related Posts ══ */
.nml-csh--single-case .nml-sp__related {
    padding: 80px 0;
    background: var(--color-bg);
}

.nml-csh--single-case .nml-sp__related-title {
    margin: 0 0 48px;
    color: var(--color-text-primary);
}

.nml-csh--single-case .nml-sp__related-swiper {
    overflow: hidden;
}

.nml-csh--single-case .nml-sp__related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nml-csh--single-case .nml-sp__related-nav {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 24px;
}

.nml-csh--single-case .nml-sp__related-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: 1px solid #889CF1;
    background: #F5F6FA;
    color: #889CF1;
    cursor: pointer;
    transition: border-color 0.18s, box-shadow 0.18s;
    flex-shrink: 0;
    padding: 0;
}

.nml-csh--single-case .nml-sp__related-btn:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 10px rgba(22, 47, 111, 0.10);
}

.nml-csh--single-case .nml-sp__related-btn.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* ── Related card ── */
.nml-csh--single-case .nml-sp__rcard {
    display: flex;
    flex-direction: column;
    border: 1px solid #D5DAFA;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(76, 131, 243, 0.2);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.3s;
}

.nml-csh--single-case .nml-sp__rcard:hover {
    border-color: #889CF1;
    box-shadow: 0 2px 4px rgba(76, 131, 243, 0.24);
}

.nml-csh--single-case .nml-sp__rcard-thumb {
    width: 100%;
    height: 232px;
    overflow: hidden;
    flex-shrink: 0;
    border-bottom: 1px solid var(--color-line-light);
}

.nml-csh--single-case .nml-sp__rcard-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nml-csh--single-case .nml-sp__rcard-body {
    display: flex;
    flex-direction: column;
    padding: 16px 20px 20px;
    gap: 8px;
}

.nml-csh--single-case .nml-sp__rcard-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.nml-csh--single-case .nml-sp__rcard-meta time {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: var(--color-text-secondary);
    text-transform: uppercase;
}

.nml-csh--single-case .nml-sp__rcard-cat {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 8px;
    background: #FFFFFF;
    border: 1px solid #162F6F;
    border-radius: 4px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: #0B101F;
}

.nml-csh--single-case .nml-sp__rcard-title {
    margin: 4px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s;
}

.nml-csh--single-case .nml-sp__rcard:hover .nml-sp__rcard-title {
    color: #162F6F;
    text-decoration-line: underline;
}

.nml-csh--single-case .nml-sp__rcard-excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--color-text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nml-csh--single-case .nml-sp__rcard-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.nml-csh--single-case .nml-sp__rcard-author {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.nml-csh--single-case .nml-sp__rcard-author span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #303D60;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nml-csh--single-case .nml-sp__rcard-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.nml-csh--single-case .nml-sp__rcard-sep {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.nml-csh--single-case .nml-sp__rcard-sep + span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #303D60;
    white-space: nowrap;
}

/* ── Author box ── */
.nml-csh--single-case .nml-sp__author-box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    max-width: 99.7%;
    margin-top: 64px;
    padding: 16px;
    background: #FFFFFF;
    border: 1px solid #889CF1;
    box-shadow: 0 2px 4px rgba(76, 131, 243, 0.24);
    border-radius: 12px;
}

.nml-csh--single-case .nml-sp__author-box-avatar {
    width: 56px!important;
    height: 56px!important;
    border-radius: 50%!important;
    object-fit: cover;
    flex-shrink: 0;
}

.nml-csh--single-case .nml-sp__author-box-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.nml-csh--single-case .nml-sp__author-box-name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.nml-csh--single-case .nml-sp__author-box-name {
    margin: 0!important;
    color: var(--color-text-primary);
}

.nml-csh--single-case .nml-sp__author-box-linkedin {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.nml-csh--single-case .nml-sp__author-box-linkedin svg {
    width: 32px;
    height: 32px;
    padding: 8px;
    object-fit: contain;
}

.nml-csh--single-case .nml-sp__author-box-bio {
    margin: 0;
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 500;
    color: var(--color-text-secondary);
}

@media (max-width: 991px) {
    .nml-csh--single-case .nml-sp__hero {
        padding: 96px 0 40px;
    }

    .nml-csh--single-case .nml-sp__hero-badges {
        gap: 8px;
        margin-bottom: 24px;
    }

    .nml-csh--single-case .nml-csh__badge {
        padding: 6px 8px;
        font-size: 14px;
        line-height: 20px;
    }

    .nml-csh--single-case .nml-sp__hero-badge {
        gap: 4px;
        padding: 6px 8px;
        font-size: 14px;
        line-height: 20px;
    }

    .nml-csh--single-case .nml-sp__hero-badge svg {
        width: 16px;
        height: 16px;
    }

    .nml-csh--single-case .nml-sp__hero-title {
        margin: 0 0 24px;
    }

    .nml-csh--single-case .nml-sp__body {
        padding: 40px 0;
    }

    .nml-csh--single-case .nml-sp__layout {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .nml-csh--single-case .nml-sp__sidebar {
        position: static;
        display: contents;
    }

    .nml-csh--single-case .nml-sp__toc {
        order: 1;
        gap: 8px;
        margin-bottom: 32px;
        padding: 20px;
        border-radius: 8px;
        width: 100%;
    }

    .nml-csh--single-case .nml-sp__toc-title {
        padding-bottom: 8px;
    }

    .nml-csh--single-case .nml-sp__toc-link {
        padding: 16px 0;
    }

    .nml-csh--single-case .nml-sp__toc-link--active .nml-ba__cat-dot {
        display: none;
    }

    .nml-csh--single-case .nml-sp__content {
        order: 2;
        max-width: 100%;
    }

    .nml-csh--single-case .nml-sp__toc-nav{
        width: 100%;
    }

    .nml-csh--single-case .nml-sp__content h2 {
        margin: 40px 0 12px;
        font-size: 24px;
        line-height: 32px;
    }

    .nml-csh--single-case .nml-sp__content h3 {
        margin: 32px 0 12px;
        font-size: 22px;
        line-height: 32px;
    }

    .nml-csh--single-case .nml-sp__content h4 {
        margin: 40px 0 12px;
    }

    .nml-csh--single-case .nml-sp__content h5 {
        margin: 32px 0 12px;
    }

    .nml-csh--single-case .nml-sp__content p {
        margin: 0 0 16px;
        font-size: 14px;
        line-height: 20px;
    }

    .nml-csh--single-case .nml-sp__content blockquote cite {
        font-size: 14px;
        line-height: 20px;
    }

    .nml-csh--single-case .nml-sp__content ul,
    .nml-csh--single-case .nml-sp__content ol {
        margin: 0 0 12px;
    }

    .nml-csh--single-case .nml-sp__content ul li,
    .nml-csh--single-case .nml-sp__content ol li {
        padding-left: 28px;
        font-size: 14px;
        line-height: 20px;
    }

    .nml-csh--single-case .nml-sp__content ul li::before {
        width: 6px;
        height: 6px;
        margin: 6px;
    }

    .nml-csh--single-case .nml-sp__content .wp-block-image {
        margin: 12px 0;
    }

    .nml-csh--single-case .nml-sp__share {
        order: 3;
        margin-top: 32px;
    }

    .nml-csh--single-case .nml-sp__author-box {
        margin-top: 40px;
        padding: 16px;
        border-radius: 8px;
    }

    .nml-csh--single-case .nml-sp__author-box-name-row {
        justify-content: space-between;
    }

    .nml-csh--single-case .nml-sp__author-box-avatar {
        width: 40px!important;
        height: 40px!important;
    }

    .nml-csh--single-case .nml-sp__author-box-name {
        font-size: 16px;
        line-height: 24px;
    }

    .nml-csh--single-case .nml-sp__author-box-linkedin svg {
        width: 24px;
        height: 24px;
        padding: 3px;
    }

    .nml-csh--single-case .nml-sp__author-box-bio {
        font-size: 14px;
        line-height: 20px;
    }

    .nml-csh--single-case .nml-sp__related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nml-csh--single-case .nml-sp__related {
        padding: 48px 0 56px;
    }

    .nml-csh--single-case .nml-sp__related-title {
        margin-bottom: 32px;
    }

    .nml-csh--single-case .nml-sp__related-grid {
        display: flex;
        gap: 0;
    }

    .nml-csh--single-case .nml-sp__rcard {
        border-radius: 8px;
    }

    .nml-csh--single-case .nml-sp__rcard-body {
        padding: 12px 16px 16px;
    }

    .nml-csh--single-case .nml-sp__rcard-title {
        margin: 2px 0 0 0;
    }

    .nml-csh--single-case .nml-sp__content blockquote p {
        padding: 8px 0 8px 16px;
    }
}
