/* =========================================
   ИНЖЕНЕРНЫЙ БЛОГ TIME2SEE (BLOG.CSS)
   ========================================= */

/* Hero-секция */
.t2s-article-hero {
    background-color: #f5f5f7;
    border-bottom: 1px solid #e5e5e5;
    padding-top: 3rem;
    padding-bottom: 3.5rem;
}

.t2s-breadcrumb li > a,
.t2s-breadcrumb li > span {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.t2s-article-meta-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.t2s-spec-badge {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FF5C00;
    letter-spacing: 0.08em;
}

.t2s-article-date {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
}

.t2s-article-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #111;
    text-transform: uppercase;
}

/* Карточка автора */
.t2s-article-author-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.t2s-author-avatar {
    width: 44px;
    height: 44px;
    background-color: #111;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FF5C00;
}

.t2s-author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
}

.t2s-author-role {
    font-size: 0.8rem;
    color: #666;
}

/* Квадратный бокс обложки 1:1 */
.t2s-article-artwork-box {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    background-color: #111;
    border: 1px solid #111;
    box-shadow: 12px 12px 0px rgba(17, 17, 17, 0.06);
}

.t2s-artwork-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05);
    transition: transform 0.4s ease;
}

.t2s-article-artwork-box:hover .t2s-artwork-img {
    transform: scale(1.02);
}

/* Чертёжные скобки по углам картинки */
.t2s-artwork-corners::before,
.t2s-artwork-corners::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #FF5C00;
    pointer-events: none;
    z-index: 2;
}

.t2s-artwork-corners::before {
    top: 8px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}

.t2s-artwork-corners::after {
    bottom: 8px;
    right: 8px;
    border-left: none;
    border-top: none;
}

.t2s-artwork-zoom-hint {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(17, 17, 17, 0.8);
    color: #fff;
    padding: 6px 10px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    backdrop-filter: blur(4px);
}

/* =========================================
   ТИПОГРАФИКА ТЕЛА СТАТЬИ
   ========================================= */
.t2s-article-body-section {
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.t2s-content-typography {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #222;
}

.t2s-content-typography p {
    margin-bottom: 1.8rem;
}

.t2s-content-typography h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.t2s-content-typography h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.2rem;
    margin-bottom: 1rem;
}

.t2s-content-typography blockquote {
    margin: 2.5rem 0;
    padding: 25px 30px;
    background: #f8f8fa;
    border-left: 4px solid #FF5C00;
    font-size: 1.15rem;
    font-style: italic;
    color: #333;
}

.t2s-content-typography img {
    margin: 2.5rem 0;
    border: 1px solid #e5e5e5;
    width: 100%;
    height: auto;
}

.t2s-content-typography ul,
.t2s-content-typography ol {
    margin-bottom: 2rem;
    padding-left: 25px;
}

.t2s-content-typography li {
    margin-bottom: 0.6rem;
}

/* Внутренний CTA-блок статьи */
.t2s-article-cta-box {
    background-color: #fff;
    border: 1px solid #111;
    border-left: 6px solid #FF5C00;
    padding: 40px;
    position: relative;
    box-shadow: 8px 8px 0px rgba(17, 17, 17, 0.04);
}

.t2s-monospace {
    font-family: 'Courier New', Courier, monospace;
}

/* Related articles */
.t2s-related-img-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111;
}

.t2s-related-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.t2s-related-card:hover .t2s-related-img-wrap img {
    transform: scale(1.05);
}

.t2s-related-date {
    font-size: 0.75rem;
    color: #888;
}

@media (max-width: 959px) {
    .t2s-article-artwork-box {
        max-width: 100%;
        margin-top: 2rem;
    }
    .t2s-article-cta-box {
        padding: 25px 20px;
    }
}

/* =========================================
   ЛИСТИНГ БЛОГА (ARTICLE_LIST.TWIG)
   ========================================= */

.t2s-blog-main-title {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #111;
    text-transform: uppercase;
}

.t2s-blog-lead {
    font-size: 1.15rem;
    line-height: 1.5;
    max-width: 720px;
}

.t2s-blog-stat-box {
    display: inline-block;
    border: 1px solid #111;
    background: #fff;
    padding: 30px;
    text-align: left;
    max-width: 280px;
    box-shadow: 6px 6px 0px rgba(17, 17, 17, 0.05);
}

.t2s-blog-stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: #FF5C00;
    margin-bottom: 8px;
}

.t2s-blog-stat-desc {
    font-size: 0.8rem;
    color: #444;
    line-height: 1.35;
    font-weight: 600;
}

/* Таб-фильтр категорий */
.t2s-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.t2s-cat-pill {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #111;
    background: transparent;
    color: #111 !important;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.t2s-cat-pill:hover {
    background-color: #111;
    color: #fff !important;
}

.t2s-cat-pill--active {
    background-color: #111;
    color: #fff !important;
    border-color: #111;
    position: relative;
}

.t2s-cat-pill--active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #FF5C00;
}

/* =========================================
   СЕТКА КАРТОЧЕК СТАТЕЙ (CSS GRID)
   ========================================= */
.t2s-blog-listing-section {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

.t2s-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.t2s-blog-card {
    background: #fff;
    border: 1px solid #111;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.t2s-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0px rgba(17, 17, 17, 0.06);
    border-color: #111;
}

.t2s-blog-card__image-box {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #111;
    border-bottom: 1px solid #111;
}

.t2s-blog-card__image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.t2s-blog-card:hover .t2s-blog-card__image-box img {
    transform: scale(1.04);
}

.t2s-blog-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(17, 17, 17, 0.85);
    color: #FF5C00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    backdrop-filter: blur(4px);
}

.t2s-blog-card__body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.t2s-blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 15px;
}

.t2s-blog-card__views {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.t2s-blog-card__title {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.t2s-blog-card__title a {
    color: #111;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.t2s-blog-card__title a:hover {
    color: #FF5C00;
}

.t2s-blog-card__excerpt {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.t2s-blog-card__footer {
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* =========================================
   ПАГИНАЦИЯ (ИНЖЕНЕРНЫЙ СТИЛЬ UIKIT)
   ========================================= */
.t2s-pagination-wrapper ul.pagination,
.t2s-pagination-wrapper ul.uk-pagination {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.t2s-pagination-wrapper li a,
.t2s-pagination-wrapper li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #111;
    font-weight: 700;
    font-size: 0.9rem;
    color: #111;
    text-decoration: none !important;
    background: #fff;
    transition: all 0.2s ease;
}

.t2s-pagination-wrapper li.active span,
.t2s-pagination-wrapper li a:hover {
    background-color: #111;
    color: #fff;
}

/* Адаптивность листинга */
@media (max-width: 1199px) {
    .t2s-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .t2s-blog-grid {
        grid-template-columns: 1fr;
    }
    .t2s-blog-card__body {
        padding: 20px;
    }
}

.t2s-card-link {
    color: #ff5c00;
}

/* =========================================
   ТИПОГРАФИКА ТЕЛА СТАТЬИ (ИНЖЕНЕРНЫЙ ЖУРНАЛ)
   ========================================= */

.t2s-article-body-section {
    padding-top: 4rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

/* Контейнер расширенной читаемости */
.t2s-article-body-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.t2s-content-typography {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #1a1a1a;
}

/* Первый абзац статьи (Лид / Вводная сводка) */
.t2s-content-typography > p:first-of-type {
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 500;
    color: #222222;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.t2s-content-typography p {
    margin-bottom: 1.8rem;
}

/* --- ЗАГОЛОВКИ H2: ЧЕРТЁЖНЫЕ УЗЛЫ --- */
.t2s-content-typography h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #111111;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #FF5C00;
}

/* Техническая чертёжная плашка над каждым H2 */
.t2s-content-typography h2::before {
    content: '// ';
    display: block;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: #888888;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

/* --- ЗАГОЛОВКИ H3: ИНЖЕНЕРНЫЕ ТЕЗИСЫ --- */
.t2s-content-typography h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 2.8rem;
    margin-bottom: 1rem;
    color: #111111;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.t2s-content-typography h3::before {
    content: '■';
    color: #FF5C00;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* --- ЦИТАТЫ / ВЫНОСКИ (ТЕХНИЧЕСКИЙ РЕГЛАМЕНТ) --- */
.t2s-content-typography blockquote {
    margin: 3rem 0;
    padding: 30px 35px;
    background: #f8f8fa;
    border-left: 4px solid #111111;
    position: relative;
    box-shadow: 6px 6px 0px rgba(17, 17, 17, 0.03);
}

.t2s-content-typography blockquote::before {
    content: '[ // KEY_TAKEAWAY ]';
    display: block;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FF5C00;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.t2s-content-typography blockquote p {
    font-size: 1.15rem;
    font-style: normal;
    font-weight: 600;
    color: #111111;
    margin: 0;
    line-height: 1.5;
}

/* --- ТЕХНИЧЕСКИЕ СПИСКИ --- */
.t2s-content-typography ul {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.t2s-content-typography ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0.8rem;
}

.t2s-content-typography ul li::before {
    content: '>';
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 800;
    color: #FF5C00;
}

/* Нумерованные списки */
.t2s-content-typography ol {
    margin: 2rem 0;
    padding-left: 20px;
}

.t2s-content-typography ol li {
    margin-bottom: 0.8rem;
    padding-left: 8px;
}

.t2s-content-typography ol li::marker {
    color: #FF5C00;
    font-weight: 800;
    font-family: 'Courier New', Courier, monospace;
}

/* =========================================
   E-E-A-T ПАСПОРТ ЭКСПЕРТА И АВТОР (BLOG.CSS)
   ========================================= */

/* --- Верхний блок Hero: Карточка автора --- */
.t2s-article-author-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 18px;
    margin-top: 20px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.t2s-author-avatar-link {
    display: block;
    flex-shrink: 0;
    line-height: 0;
}

.t2s-author-avatar-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 15%;
    border: 2px solid #FF5C00;
    box-shadow: 0 2px 8px rgba(255, 92, 0, 0.2);
    display: block;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.t2s-author-avatar-link:hover .t2s-author-avatar-img {
    transform: scale(1.05);
    border-color: #111111;
}

.t2s-author-avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #111111;
    color: #ffffff;
    font-family: monospace;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FF5C00;
    flex-shrink: 0;
}

.t2s-author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    line-height: 1.25;
}

.t2s-author-name a:hover {
    color: #FF5C00;
}

.t2s-author-role {
    font-size: 0.82rem;
    color: #666666;
    margin-top: 3px;
    line-height: 1.35;
}

.t2s-spec-badge--small {
    font-family: monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: #FF5C00;
    letter-spacing: 0.04em;
}

/* --- Нижняя панель E-E-A-T верификации --- */
.t2s-expert-passport-panel {
    background-color: #f7f7f9;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    border: 1px solid #111111;
    border-left: 5px solid #FF5C00;
    padding: 35px 35px 30px 35px;
    position: relative;
    box-shadow: 8px 8px 0px rgba(17, 17, 17, 0.04);
}

.t2s-expert-passport-tag {
    position: absolute;
    top: -13px;
    left: 24px;
    background: #111111;
    color: #FF5C00;
    font-family: monospace;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    letter-spacing: 0.08em;
    border: 1px solid #111111;
}

/* Круглый аватар в паспорте (100px) */
.t2s-expert-avatar-wrap {
    display: block;
    line-height: 0;
    flex-shrink: 0;
}

.t2s-expert-avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    border: 3px solid #FF5C00;
    outline: 2px solid #111111;
    outline-offset: 2px;
    background: #ffffff;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.t2s-expert-avatar-wrap:hover .t2s-expert-avatar-img {
    transform: scale(1.04);
}

.t2s-expert-title-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 6px;
}

.t2s-expert-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111111;
    text-transform: uppercase;
    text-decoration: none !important;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.t2s-expert-name:hover {
    color: #FF5C00;
}

.t2s-expert-exp-badge {
    background: #111111;
    color: #ffffff;
    font-family: monospace;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    letter-spacing: 0.05em;
}

.t2s-expert-pos-desc {
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.45;
}

/* Мобильная адаптивность */
@media (max-width: 767px) {
    .t2s-expert-passport-panel {
        padding: 30px 20px 25px 20px;
    }

    .t2s-expert-avatar-img {
        width: 80px;
        height: 80px;
    }

    .t2s-expert-title-wrap {
        gap: 8px;
    }

    .t2s-expert-name {
        font-size: 1.1rem;
    }
}

/* =========================================
   АВАТАРЫ ЭКСПЕРТОВ (BLOG.CSS)
   ========================================= */

/* Малый круг в Hero статьи (52px) */
.t2s-author-avatar-link {
    display: inline-block;
    flex-shrink: 0;
    line-height: 0;
    text-decoration: none !important;
}

.t2s-author-avatar-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    border: 2px solid #FF5C00;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: block;
    transition: transform 0.3s ease;
}

.t2s-author-avatar-link:hover .t2s-author-avatar-img {
    transform: scale(1.06);
}

/* Большой паспортный круг E-E-A-T (110px) */
.t2s-expert-avatar-link {
    display: inline-block;
    flex-shrink: 0;
    line-height: 0;
    text-decoration: none !important;
}

.t2s-expert-avatar-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    border: 3px solid #FF5C00;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: block;
    background-color: #111111;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.t2s-expert-avatar-link:hover .t2s-expert-avatar-img {
    transform: scale(1.04);
}

@media (max-width: 767px) {
    .t2s-expert-avatar-img {
        width: 84px;
        height: 84px;
    }
}

/* =========================================
   ИНЖЕНЕРНЫЕ ТАБЛИЦЫ СПЕЦИФИКАЦИЙ (BLOG.CSS)
   ========================================= */

/* Адаптивный контейнер-обёртка для таблиц */
.t2s-content-typography table {
    width: 100% !important;
    max-width: 100%;
    margin: 2.5rem 0 3rem 0;
    border-collapse: collapse;
    border-spacing: 0;
    background-color: #ffffff;
    border: 1px solid #111111;
    box-shadow: 6px 6px 0px rgba(17, 17, 17, 0.04);
    font-size: 0.95rem;
    line-height: 1.45;
    position: relative;
    display: table;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Шапка таблицы (Чертежная консоль) */
.t2s-content-typography table thead,
.t2s-content-typography table tr:first-child th {
    background-color: #111111;
    color: #ffffff;
    border-bottom: 2px solid #FF5C00;
}

.t2s-content-typography table th {
    background-color: #111111;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px 20px;
    text-align: left;
    vertical-align: middle;
    border: 1px solid #222222;
    border-bottom: 2px solid #FF5C00;
}

/* Ячейки тела таблицы */
.t2s-content-typography table td {
    padding: 14px 20px;
    vertical-align: middle;
    color: #222222;
    border: 1px solid #e5e5e5;
    transition: background-color 0.2s ease;
}

/* Чередование строк (зебра) для читаемости больших массивов */
.t2s-content-typography table tbody tr:nth-child(even),
.t2s-content-typography table tr:nth-child(even):not(:first-child) {
    background-color: #fbfbfd;
}

/* Подсветка строки при наведении */
.t2s-content-typography table tbody tr:hover,
.t2s-content-typography table tr:hover:not(:first-child) {
    background-color: #f2f2f7;
}

/* Выделение первого столбца (номенклатура / параметры) */
.t2s-content-typography table td:first-child {
    font-weight: 600;
    color: #111111;
}

/* Табличные технические числа и моноширинные метки внутри ячеек */
.t2s-content-typography table td code,
.t2s-content-typography table td span.t2s-monospace {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FF5C00;
    background: rgba(255, 92, 0, 0.06);
    padding: 2px 6px;
    border: 1px solid rgba(255, 92, 0, 0.15);
}

/* Подпись к таблице / Примечание */
.t2s-content-typography table caption {
    caption-side: top;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: left;
    color: #888888;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding: 0;
}

.t2s-content-typography table caption::before {
    content: '[ DATA.SPEC // ';
    color: #FF5C00;
}

.t2s-content-typography table caption::after {
    content: ' ]';
    color: #FF5C00;
}

/* Адаптивность для мобильных экранов */
@media (max-width: 767px) {
    .t2s-content-typography table {
        display: block;
        width: 100% !important;
        overflow-x: auto;
        white-space: nowrap;
        margin: 1.5rem 0 2rem 0;
        box-shadow: 4px 4px 0px rgba(17, 17, 17, 0.04);
    }
    
    .t2s-content-typography table th,
    .t2s-content-typography table td {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}