    /* Премиальный белый минимализм (scoped) */
    .custom-article-wrapper {
        --text-main: #1a1a1a;
        --text-muted: #757575;
        --bg-main: #ffffff;
        --bg-alt: #fafafa;
        --border-light: #eaeaea;
        --accent-color: #0f172a; /* Глубокий графитовый/морской */
        
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; 
        line-height: 1.8; 
        color: var(--text-main);
        background-color: var(--bg-main);
        max-width: 1280px; 
        margin: 0 auto; 
        padding: 60px 20px; 
        font-weight: 400;
        -webkit-font-smoothing: antialiased;
        box-sizing: border-box;
    }

    .custom-article-wrapper *, .custom-article-wrapper *::before, .custom-article-wrapper *::after {
        box-sizing: border-box;
    }

    /* Типографика */
    .custom-article-wrapper h1, 
    .custom-article-wrapper h2, 
    .custom-article-wrapper h3 { 
        font-family: "Playfair Display", Georgia, serif; 
        color: var(--text-main); 
        font-weight: 400;
        line-height: 120%;
        text-align: center;
        margin-top: 0;
    }
    
    .custom-article-wrapper h1 { 
        font-size: 3.2rem; 
        line-height: 1.2;
        letter-spacing: -0.02em;
        margin-bottom: 1.5rem; 
    }
    
    .custom-article-wrapper h2 { 
        font-size: 3rem; 
        margin-top: 3.5rem; 
        margin-bottom: 1.2rem; 
    }
    
    .custom-article-wrapper h3 { 
        font-size: 2rem; 
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;         
        color: var(--accent-color);
    }

    .custom-article-wrapper p {
        margin-bottom: 1.5rem;
        font-size: 1.15rem;
        color: #333333;
    }

    /* Мета-блок и Автор */
    .custom-article-wrapper .article-header {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--border-light);
    }

    .custom-article-wrapper .meta-info {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-top: 2rem;
        justify-content: space-around;
    }

    .custom-article-wrapper .author-block {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .custom-article-wrapper .author-avatar {
        min-width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: var(--border-light);
        background-image: url('https://static.tildacdn.com/tild6533-3834-4864-b632-303037396536/image_130.png'); 
        background-size: cover;
        background-position: center;
    }

    .custom-article-wrapper .author-details {
        display: flex;
        flex-direction: column;
        line-height: 1.3;
    }

    .custom-article-wrapper .author-name {
        font-weight: 600;
        color: var(--text-main);
    }

    .custom-article-wrapper .divider {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background-color: #cccccc;
    }

    .custom-article-wrapper .read-time {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    /* Оглавление (TOC) с фоновым изображением */
    .custom-article-wrapper .toc-container {
        /* Полупрозрачный белый фон (совпадает с var(--bg-alt)) поверх картинки */
        background: linear-gradient(rgba(250, 250, 250, 0.92), rgba(250, 250, 250, 0.92)), 
                    url('https://static.tildacdn.com/tild3037-3536-4534-a335-633962653333/image.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        
        /* Все ваши оригинальные стили сохранены без изменений */
        border: 1px solid var(--border-light);
        border-radius: 12px;
        padding: 30px;
        margin: 2rem 0 3rem 0;
    }

    .custom-article-wrapper .toc-container h3 {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted);
        text-align: left;
    }

    .custom-article-wrapper .toc-list {
        list-style: none;
        padding: 20px;
        margin: 0;
    }

    .custom-article-wrapper .toc-list li {
        margin-bottom: 12px;
        padding-left: 0;
    }

    .custom-article-wrapper .toc-list li::before {
        display: none;
    }

    .custom-article-wrapper .toc-list li:last-child {
        margin-bottom: 0;
    }

    .custom-article-wrapper .toc-list a {
        text-decoration: none;
        color: var(--accent-color);
        border-bottom: 1px solid transparent;
        transition: border-color 0.2s, color 0.2s;
    }

    .custom-article-wrapper .toc-list a:hover {
        color: var(--text-main);
        border-bottom-color: var(--text-main);
    }

    /* Журнальный вводный абзац и термины */
    .custom-article-wrapper h3 + p {
        font-size: 1.15rem;
        line-height: 1.8;
        color: var(--text-main);
        margin-bottom: 2rem;
    }

    .custom-article-wrapper em {
        font-style: normal;
        color: var(--accent-color);
        background: rgba(15, 23, 42, 0.04);
        padding: 2px 6px;
        border-radius: 4px;
        font-weight: 500;
    }

    /* Списки как информационные блоки */
    .custom-article-wrapper ul, 
    .custom-article-wrapper ol { 
        list-style: none;
        padding-left: 0;
        margin: 2.5rem 0;
        background-color: #fafafa63;
        padding: 30px 40px;
        border-radius: 12px;
        border: 1px solid var(--border-light);
    }
    
    .custom-article-wrapper li { 
        position: relative;
        padding-left: 36px;
        margin-bottom: 16px;
        color: #444;
        line-height: 1.6;
    }

    .custom-article-wrapper li:last-child {
        margin-bottom: 0;
    }
    
    .custom-article-wrapper li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 4px;
        width: 20px;
        height: 20px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
    }

    /* Журнальные таблицы */
    .custom-article-wrapper table { 
        width: 100%; 
        border-collapse: separate; 
        border-spacing: 0;
        margin: 3rem 0; 
        font-size: 0.95rem;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid var(--border-light);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }
    
    .custom-article-wrapper th, 
    .custom-article-wrapper td { 
        padding: 20px 24px; 
        text-align: left; 
        border-bottom: 1px solid var(--border-light);
    }
    
    .custom-article-wrapper th { 
        background-color: var(--bg-alt); 
        color: var(--text-muted);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.8rem;
        border-bottom: 2px solid var(--accent-color);
    }

    .custom-article-wrapper tr:last-child td {
        border-bottom: none;
    }

    .custom-article-wrapper tr:hover td {
        background-color: var(--bg-alt);
        transition: background-color 0.2s ease;
    }



    /* Блок для одиночного изображения */
    .custom-article-wrapper .single-image-wrapper {
        margin: 3rem 0;
        width: 100%;
        max-height: 780px; /* Жесткое ограничение высоты блока */
        overflow: hidden; /* Обрезаем всё, что выходит за эти пределы */
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
        position: relative;
    }
    
    .custom-article-wrapper .single-image {
        width: 100%;
        height: 100%;
        max-height: 580px;
        object-fit: cover; /* Ключевое свойство: заполняет блок, обрезая лишнее */
        object-position: center; /* Центрируем изображение по вертикали и горизонтали */
        display: block;
    }
    
    .custom-article-wrapper .image-caption {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-top: 15px;
        font-style: italic;
        text-align: center; /* Подпись тоже по центру для гармонии */
    }

    /* Блок "Читайте также" */
    .custom-article-wrapper .read-also-section {
        margin: 5rem 0 3rem 0;
        padding-top: 3rem;
        border-top: 1px solid var(--border-light);
    }

    .custom-article-wrapper .read-also-title {
        margin-top: 0;
        margin-bottom: 2rem;
    }

    .custom-article-wrapper .read-also-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .custom-article-wrapper .read-also-card {
        display: flex;
        flex-direction: column;
        background-color: var(--bg-main);
        border: 1px solid var(--border-light);
        border-radius: 12px;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .custom-article-wrapper .read-also-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
    }

    .custom-article-wrapper .ra-image-wrapper {
        position: relative;
        padding-top: 56.25%; 
        background-color: var(--bg-alt);
        overflow: hidden;
    }

    .custom-article-wrapper .ra-image-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .custom-article-wrapper .read-also-card:hover .ra-image-wrapper img {
        transform: scale(1.05);
    }

    .custom-article-wrapper .ra-content {
        padding: 24px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .custom-article-wrapper .ra-meta {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted);
        margin-bottom: 12px;
        font-weight: 500;
    }

    .custom-article-wrapper .ra-title {
        font-family: "Playfair Display", Georgia, serif;
        font-size: 1.25rem;
        line-height: 1.4;
        color: var(--text-main);
        margin: 0 0 16px 0;
        transition: color 0.2s ease;
    }

    .custom-article-wrapper .read-also-card:hover .ra-title {
        color: var(--accent-color);
    }

    .custom-article-wrapper .ra-link-arrow {
        margin-top: auto;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--accent-color);
    }

    .custom-article-wrapper .ra-link-arrow svg {
        transition: transform 0.2s ease;
    }

    .custom-article-wrapper .read-also-card:hover .ra-link-arrow svg {
        transform: translateX(4px);
    }

    /* Блок захвата (Teambuilding) */
    .custom-article-wrapper .teambuilding-capture {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
        background-color: var(--bg-main);
        padding: 80px 20px;
        display: flex;
        justify-content: center;
        margin: 3rem 0;
    }

    .custom-article-wrapper .tc-container {
        max-width: 1140px;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: stretch;
    }

    .custom-article-wrapper .tc-image-wrapper {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        min-height: 400px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    }

    .custom-article-wrapper .tc-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.7s ease;
    }

    .custom-article-wrapper .tc-image-wrapper:hover .tc-image {
        transform: scale(1.03);
    }

    .custom-article-wrapper .tc-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
    }

    .custom-article-wrapper .tc-title {
        font-family: "Playfair Display", Georgia, serif;
        font-size: 2.4rem;
        color: var(--text-main);
        margin-top: 0;
        margin-bottom: 24px;
        line-height: 1.2;
        font-weight: 400;
        text-align: left;
    }

    .custom-article-wrapper .tc-description {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #444;
        margin: 0 0 40px 0;
    }

    .custom-article-wrapper .tc-form-title {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--text-muted);
        margin-top: 0;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .custom-article-wrapper .tc-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .custom-article-wrapper .tc-input {
        width: 100%;
        padding: 12px 0;
        border: none;
        border-bottom: 1px solid var(--border-light);
        background: transparent;
        font-size: 1rem;
        color: var(--text-main);
        font-family: inherit;
        transition: border-color 0.3s ease;
        outline: none;
    }

    .custom-article-wrapper .tc-input::placeholder {
        color: #a0a0a0;
    }

    .custom-article-wrapper .tc-input:focus {
        border-bottom-color: var(--accent-color);
    }

    .custom-article-wrapper textarea.tc-input {
        resize: vertical;
        min-height: 30px;
    }

    .custom-article-wrapper .tc-submit-btn {
        background-color: var(--accent-color);
        color: #ffffff;
        border: none;
        padding: 18px 32px;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        cursor: pointer;
        border-radius: 4px;
        transition: background-color 0.3s ease, transform 0.1s ease;
        margin-top: 10px;
        width: 100%;
        font-family: inherit;
    }

    .custom-article-wrapper .tc-submit-btn:hover {
        background-color: #1e293b;
    }

    .custom-article-wrapper .tc-submit-btn:active {
        transform: scale(0.98);
    }

    .custom-article-wrapper .tc-policy {
        font-size: 0.75rem;
        color: var(--text-muted);
        text-align: center;
        line-height: 1.4;
        margin: 0;
    }

    .custom-article-wrapper .tc-policy a {
        color: var(--text-muted);
        text-decoration: underline;
    }

    .custom-article-wrapper .tc-policy a:hover {
        color: var(--text-main);
    }

    /* Финальная форма захвата в конце статьи */
    .custom-article-wrapper .article-final-cta {
        background-color: var(--accent-color);
        color: #ffffff;
        border-radius: 16px;
        padding: 60px;
        margin: 4rem 0 2rem 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    }

    .custom-article-wrapper .cta-text-block {
        padding-right: 20px;
    }

    .custom-article-wrapper .cta-text-block h2 {
        color: #ffffff;
        font-family: "Playfair Display", Georgia, serif;
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 2.4rem;
        line-height: 1.2;
        border-bottom: none;
        padding-bottom: 0;
        text-align: left;
    }

    .custom-article-wrapper .cta-text-block p {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.1rem;
        margin: 0;
        line-height: 1.6;
    }

    .custom-article-wrapper .cta-form-block {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .custom-article-wrapper .cta-input {
        width: 100%;
        padding: 12px 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        color: #ffffff;
        font-size: 1.05rem;
        font-family: inherit;
        transition: border-color 0.3s ease;
        outline: none;
    }

    .custom-article-wrapper .cta-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .custom-article-wrapper .cta-input:focus {
        border-bottom-color: #ffffff;
    }

    .custom-article-wrapper textarea.cta-input {
        resize: vertical;
        min-height: 35px;
    }

    .custom-article-wrapper .cta-submit {
        background-color: #ffffff;
        color: var(--accent-color);
        border: none;
        padding: 18px 32px;
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.1s ease;
        margin-top: 10px;
        width: 100%;
        font-family: inherit;
    }

    .custom-article-wrapper .cta-submit:hover {
        background-color: #f8fafc;
    }

    .custom-article-wrapper .cta-submit:active {
        transform: scale(0.98);
    }

    .custom-article-wrapper .cta-policy {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.5);
        margin: 0;
        text-align: center;
        line-height: 1.4;
    }

    .custom-article-wrapper .cta-policy a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: underline;
    }

    .custom-article-wrapper .cta-policy a:hover {
        color: #ffffff;
    }

    /* Адаптивность для мобильных экранов */
    @media (max-width: 992px) {
        .custom-article-wrapper .tc-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .custom-article-wrapper .tc-image-wrapper {
            min-height: 350px;
            order: -1; 
        }
        .custom-article-wrapper .tc-title {
            font-size: 2rem;
        }
    }

    @media (max-width: 850px) {
        .custom-article-wrapper {
            padding: 40px 20px;
        }
        .custom-article-wrapper h1 { font-size: 2.2rem; }
        .custom-article-wrapper h2 { font-size: 1.8rem; }
        .custom-article-wrapper h3 { font-size: 1.4rem; }
        
        .custom-article-wrapper .article-final-cta {
            grid-template-columns: 1fr;
            padding: 40px 30px;
            gap: 40px;
        }
        .custom-article-wrapper .cta-text-block {
            padding-right: 0;
            text-align: center;
        }
        .custom-article-wrapper .cta-text-block h2 {
            font-size: 2rem;
            text-align: center;
        }
        .custom-article-wrapper ul, 
        .custom-article-wrapper ol {
            padding: 20px 25px;
        }
        .custom-article-wrapper .tc-title {
            text-align: center;
        }
    }
    
    /* Сетка проявлений лидера (карточки 2x2) */
    .custom-article-wrapper .manifestation-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin: 2.5rem 0;
    }

    .custom-article-wrapper .manifestation-card {
        background-color: var(--bg-alt);
        border: 1px solid var(--border-light);
        border-radius: 12px;
        padding: 50px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .custom-article-wrapper .manifestation-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    }

    .custom-article-wrapper .mc-number {
        font-size: 1.5rem;
        color: var(--accent-color);
        font-weight: 600;
        margin-bottom: 12px;
        opacity: 0.8;
    }

    .custom-article-wrapper .mc-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-main);
        margin: 0 0 20px 0;
        text-align: left;
    }

    .custom-article-wrapper .mc-text {
        color: #444;
        margin: 0;
    }

    /* Адаптивность для мобилок (вставь внутрь твоего @media (max-width: 850px)) */
    @media (max-width: 850px) {
        .custom-article-wrapper .manifestation-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .custom-article-wrapper .manifestation-card {
            padding: 24px;
        }
    }    
    