

/* Start:/local/components/china/checking/templates/.default/style.css?177420403726207*/
/* ================================ */
/* Проверка контрагентов             */
/* Компонент: china:checking         */
/* ================================ */

.chk-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0 60px;
}

/* ================================ */
/* Баннер                            */
/* ================================ */

.chk-banner {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 40%, #d32f2f 100%);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 48px;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
}

.chk-banner__bg {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 200px;
    font-weight: 900;
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.chk-banner__content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.chk-banner__title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px;
}

.chk-banner__subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin: 0 0 28px;
    line-height: 1.5;
}

.chk-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.chk-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.chk-banner__btn--primary {
    background: #fff;
    color: #c62828;
}

.chk-banner__btn--primary:hover {
    background: #ffebee;
}

.chk-banner__btn--outline {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

.chk-banner__btn--outline:hover {
    background: rgba(255,255,255,0.25);
}

/* ================================ */
/* Выбор страны                      */
/* ================================ */

.chk-countries {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.chk-country-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    color: #222;
    transition: all 0.2s;
}

.chk-country-card:hover {
    border-color: #c62828;
    box-shadow: 0 4px 20px rgba(198,40,40,0.1);
    transform: translateY(-2px);
}

.chk-country-card__flag {
    flex-shrink: 0;
    width: 56px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.chk-country-card__flag svg {
    display: block;
    width: 100%;
    height: 100%;
}

.chk-country-card__body {
    flex: 1;
}

.chk-country-card__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px;
}

.chk-country-card__desc {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin: 0 0 8px;
}

.chk-country-card__stats {
    font-size: 13px;
    font-weight: 600;
    color: #c62828;
}

.chk-country-card__arrow {
    flex-shrink: 0;
    color: #ccc;
    transition: color 0.2s;
}

.chk-country-card:hover .chk-country-card__arrow {
    color: #c62828;
}

/* ================================ */
/* Статистика                        */
/* ================================ */

.chk-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: linear-gradient(135deg, #c62828, #b71c1c);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
    color: #fff;
}

.chk-stats__item {
    text-align: center;
}

.chk-stats__num {
    display: block;
    font-size: 28px;
    font-weight: 800;
}

.chk-stats__label {
    font-size: 13px;
    opacity: 0.8;
}

/* ================================ */
/* Заголовок секции                  */
/* ================================ */

.chk-section-title {
    font-size: 24px;
    font-weight: 800;
    color: #222;
    margin: 0 0 24px;
}

.chk-page-title {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    margin: 0 0 24px;
}

/* ================================ */
/* Что проверяем                     */
/* ================================ */

.chk-features {
    margin-bottom: 48px;
}

.chk-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.chk-feature {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 24px;
    transition: all 0.2s;
}

.chk-feature:hover {
    border-color: #ddd;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.chk-feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.chk-feature__icon--green { background: #e8f5e9; color: #2e7d32; }
.chk-feature__icon--blue { background: #e3f2fd; color: #1565c0; }
.chk-feature__icon--orange { background: #fff3e0; color: #e65100; }
.chk-feature__icon--red { background: #ffebee; color: #c62828; }
.chk-feature__icon--purple { background: #f3e5f5; color: #6a1b9a; }
.chk-feature__icon--teal { background: #e0f2f1; color: #00695c; }

.chk-feature h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #222;
}

.chk-feature p {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* ================================ */
/* FAQ                               */
/* ================================ */

.chk-faq {
    margin-bottom: 48px;
}

.chk-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chk-faq__item {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.chk-faq__item:hover {
    border-color: #ddd;
}

.chk-faq__item--open {
    border-color: #c62828;
}

.chk-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-align: left;
    gap: 12px;
}

.chk-faq__question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #999;
}

.chk-faq__item--open .chk-faq__question svg {
    transform: rotate(180deg);
    color: #c62828;
}

.chk-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.chk-faq__answer-inner {
    padding: 0 20px 18px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ================================ */
/* Навигация                         */
/* ================================ */

.chk-nav {
    margin-bottom: 16px;
}

.chk-nav__back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #c62828;
    text-decoration: none;
}

.chk-nav__back:hover {
    text-decoration: underline;
}

/* ================================ */
/* Поиск                             */
/* ================================ */

.chk-search {
    position: relative;
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.chk-search__box {
    flex: 1;
    position: relative;
}

.chk-search__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    pointer-events: none;
}

.chk-search__input {
    width: 100%;
    height: 52px;
    padding: 0 40px 0 44px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 15px;
    color: #222;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.chk-search__input:focus {
    border-color: #c62828;
}

.chk-search__input::placeholder {
    color: #bbb;
}

.chk-search__clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.chk-search__btn {
    height: 52px;
    padding: 0 28px;
    background: #c62828;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.chk-search__btn:hover {
    background: #b71c1c;
}

/* Подсказки */
.chk-search__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 4px;
}

.chk-search__suggestion {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #222;
    transition: background 0.15s;
    border-bottom: 1px solid #f5f5f5;
}

.chk-search__suggestion:last-child {
    border-bottom: none;
}

.chk-search__suggestion:hover {
    background: #ffebee;
}

.chk-search__sug-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.chk-search__sug-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.chk-search__sug-name {
    font-size: 14px;
    font-weight: 600;
}

.chk-search__sug-cn {
    font-size: 12px;
    color: #888;
}

.chk-search__sug-meta {
    font-size: 12px;
    color: #aaa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ================================ */
/* Список компаний                   */
/* ================================ */

.chk-company-list__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.chk-company-item {
    display: block;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 20px;
    text-decoration: none;
    color: #222;
    transition: all 0.2s;
}

.chk-company-item:hover {
    border-color: #c62828;
    box-shadow: 0 4px 16px rgba(198,40,40,0.08);
    transform: translateY(-1px);
}

.chk-company-item__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.chk-company-item__logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.chk-company-item__name {
    font-size: 15px;
    font-weight: 700;
}

.chk-company-item__name-cn {
    font-size: 12px;
    color: #888;
}

.chk-company-item__inn {
    font-size: 12px;
    color: #aaa;
    font-family: 'SF Mono', 'Consolas', monospace;
}

.chk-company-item__badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.chk-company-item__meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
}

/* ================================ */
/* Badge                             */
/* ================================ */

.chk-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.chk-badge--lg {
    padding: 5px 14px;
    font-size: 13px;
    border-radius: 8px;
}

.chk-badge--primary {
    background: #c62828;
    color: #fff;
}

/* ================================ */
/* Шапка компании                    */
/* ================================ */

.chk-company-header {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
}

.chk-company-header__top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.chk-company-header__logo {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.chk-company-header__info {
    flex: 1;
}

.chk-company-header__name {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 4px;
    color: #222;
}

.chk-company-header__full {
    font-size: 13px;
    color: #888;
    margin: 0 0 6px;
}

.chk-company-header__cn {
    font-size: 15px;
    color: #888;
    margin: 0 0 10px;
}

.chk-company-header__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ================================ */
/* Табы                              */
/* ================================ */

.chk-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #eee;
    margin-bottom: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.chk-tabs__tab {
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.chk-tabs__tab:hover {
    color: #c62828;
}

.chk-tabs__tab--active {
    color: #c62828;
    border-bottom-color: #c62828;
}

.chk-tab-content {
    display: none;
}

.chk-tab-content--active {
    display: block;
}

/* ================================ */
/* Быстрые показатели                */
/* ================================ */

.chk-quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.chk-quick-stat {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.chk-quick-stat__label {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}

.chk-quick-stat__value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #222;
}

/* ================================ */
/* Карточка                          */
/* ================================ */

.chk-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 16px;
}

.chk-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.chk-card__text {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.chk-card__text-cn {
    font-size: 13px;
    color: #888;
    margin: 6px 0 0;
}

/* ================================ */
/* Информационная сетка              */
/* ================================ */

.chk-info-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.chk-info-row {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.chk-info-row:last-child {
    border-bottom: none;
}

.chk-info-row__label {
    width: 260px;
    flex-shrink: 0;
    font-size: 13px;
    color: #888;
}

.chk-info-row__value {
    flex: 1;
    font-size: 14px;
    color: #222;
    font-weight: 500;
}

.chk-info-row__value--mono {
    font-family: 'SF Mono', 'Consolas', monospace;
    letter-spacing: 0.5px;
}

.chk-info-row__value small {
    display: block;
    font-size: 12px;
    color: #888;
    font-weight: 400;
    margin-top: 2px;
}

/* ================================ */
/* Руководитель                      */
/* ================================ */

.chk-director {
    display: flex;
    align-items: center;
    gap: 16px;
}

.chk-director__avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.chk-director__name {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.chk-director__name-cn {
    font-size: 13px;
    color: #888;
}

.chk-director__position {
    font-size: 13px;
    color: #888;
}

.chk-director__meta {
    font-size: 12px;
    color: #aaa;
}

/* ================================ */
/* ОКВЭД                            */
/* ================================ */

.chk-okved__main {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    margin-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.chk-okved__extra {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.chk-okved__code {
    font-size: 13px;
    font-weight: 600;
    font-family: 'SF Mono', 'Consolas', monospace;
    color: #c62828;
    min-width: 50px;
}

.chk-okved__desc {
    font-size: 13px;
    color: #555;
}

/* ================================ */
/* Учредители                        */
/* ================================ */

.chk-founders {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chk-founder {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fafafa;
    border-radius: 12px;
}

.chk-founder__avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    flex-shrink: 0;
}

.chk-founder__info {
    flex: 1;
    min-width: 0;
}

.chk-founder__name {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.chk-founder__name-cn {
    font-size: 12px;
    color: #888;
}

.chk-founder__inn {
    font-size: 12px;
    color: #aaa;
    font-family: 'SF Mono', 'Consolas', monospace;
}

.chk-founder__share {
    text-align: right;
    min-width: 140px;
}

.chk-founder__share-pct {
    font-size: 20px;
    font-weight: 800;
    color: #c62828;
}

.chk-founder__share-amt {
    font-size: 12px;
    color: #888;
}

.chk-founder__share-bar {
    width: 100%;
    height: 4px;
    background: #eee;
    border-radius: 2px;
    margin-top: 6px;
    overflow: hidden;
}

.chk-founder__share-fill {
    height: 100%;
    background: #c62828;
    border-radius: 2px;
}

/* ================================ */
/* Финансовая таблица                */
/* ================================ */

.chk-finance-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.chk-finance-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.chk-finance-table th {
    text-align: right;
    padding: 10px 16px;
    font-weight: 600;
    color: #888;
    border-bottom: 2px solid #eee;
    white-space: nowrap;
}

.chk-finance-table th:first-child {
    text-align: left;
}

.chk-finance-table td {
    text-align: right;
    padding: 10px 16px;
    border-bottom: 1px solid #f5f5f5;
    white-space: nowrap;
}

.chk-finance-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #555;
}

.chk-text--green { color: #2e7d32; }
.chk-text--red { color: #c62828; }

/* ================================ */
/* Визуализация (bar chart)          */
/* ================================ */

.chk-chart {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chk-chart__bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chk-chart__year {
    width: 48px;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-align: right;
}

.chk-chart__bar-wrap {
    flex: 1;
    height: 28px;
    background: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
}

.chk-chart__bar {
    height: 100%;
    background: linear-gradient(90deg, #c62828, #ef5350);
    border-radius: 6px;
    transition: width 0.5s ease;
}

.chk-chart__val {
    width: 120px;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
}

/* ================================ */
/* Риски                             */
/* ================================ */

.chk-risk-summary {
    margin-bottom: 20px;
}

.chk-risk-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 24px;
}

.chk-risk-card__level {
    font-size: 18px;
    font-weight: 700;
}

.chk-risk-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.chk-risk-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px 20px;
    transition: border-color 0.2s;
}

.chk-risk-item:hover {
    border-color: #ddd;
}

.chk-risk-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    flex-shrink: 0;
}

.chk-risk-item__info {
    flex: 1;
}

.chk-risk-item__title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.chk-risk-item__value {
    display: block;
    font-size: 12px;
    color: #888;
}

.chk-risk-item__extra {
    display: block;
    font-size: 11px;
    color: #aaa;
}

.chk-risk-item__count {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #e8f5e9;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.chk-risk-item__count--warn {
    background: #ffebee;
    color: #c62828;
}

.chk-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chk-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    color: #444;
}

.chk-list li:last-child {
    border-bottom: none;
}

.chk-list li::before {
    content: '✓ ';
    color: #2e7d32;
    font-weight: 700;
}

/* ================================ */
/* Персонал (Китай)                  */
/* ================================ */

.chk-personnel-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chk-personnel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fafafa;
    border-radius: 12px;
}

.chk-personnel__avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.chk-personnel__name {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.chk-personnel__name-cn {
    font-size: 12px;
    color: #888;
}

.chk-personnel__position {
    font-size: 13px;
    color: #555;
}

.chk-personnel__position-cn {
    font-size: 12px;
    color: #aaa;
}

/* ================================ */
/* Годовые отчёты                    */
/* ================================ */

.chk-annual-reports {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chk-annual-report {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 36px;
    background: #ffebee;
    color: #c62828;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
}

/* ================================ */
/* ИС (Китай)                       */
/* ================================ */

.chk-ip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.chk-ip-item {
    text-align: center;
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
}

.chk-ip-item__count {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #c62828;
}

.chk-ip-item__label {
    font-size: 13px;
    color: #888;
}

/* ================================ */
/* 404                               */
/* ================================ */

.chk-404 {
    text-align: center;
    padding: 80px 20px;
}

.chk-404 h1 {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    margin: 0 0 12px;
}

.chk-404 p {
    color: #888;
    margin: 0 0 20px;
}

.chk-404 a {
    color: #c62828;
    text-decoration: underline;
}

/* ================================ */
/* Адаптивность                      */
/* ================================ */

@media (max-width: 1024px) {
    .chk-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chk-quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .chk-info-row {
        flex-direction: column;
        gap: 4px;
    }

    .chk-info-row__label {
        width: auto;
    }
}

@media (max-width: 768px) {
    .chk-banner {
        height: auto;
        padding: 32px 24px;
    }

    .chk-banner__title {
        font-size: 24px;
    }

    .chk-banner__bg {
        font-size: 120px;
        right: 20px;
    }

    .chk-countries {
        grid-template-columns: 1fr;
    }

    .chk-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .chk-features__grid {
        grid-template-columns: 1fr;
    }

    .chk-company-list__grid {
        grid-template-columns: 1fr;
    }

    .chk-company-header__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .chk-tabs {
        gap: 0;
    }

    .chk-tabs__tab {
        padding: 10px 14px;
        font-size: 13px;
    }

    .chk-quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .chk-founder {
        flex-direction: column;
        align-items: flex-start;
    }

    .chk-founder__share {
        text-align: left;
        width: 100%;
    }

    .chk-ip-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .chk-search {
        flex-direction: column;
    }

    .chk-chart__val {
        width: 90px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .chk-banner {
        padding: 24px 20px;
    }

    .chk-banner__title {
        font-size: 20px;
    }

    .chk-banner__actions {
        flex-direction: column;
    }

    .chk-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
    }

    .chk-stats__num {
        font-size: 22px;
    }

    .chk-quick-stats {
        grid-template-columns: 1fr 1fr;
    }

    .chk-company-item__meta {
        flex-direction: column;
        gap: 2px;
    }
}

/* End */
/* /local/components/china/checking/templates/.default/style.css?177420403726207 */
