/* Основной контейнер */
.sc-list {
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 15px;
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* Заголовок */
.sc-list__title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Кнопка */
.sc-list__btns {
    text-align: right;
    margin-bottom: 16px;
}

.sc-list__more {
    background: transparent;
    border: 2px solid #f76800;
    color: #f76800;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.sc-list__more:hover {
    background: #f76800;
    color: #fff;
}

/* Таблица */
.sc-list__table {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Строка */
.sc-list__row {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1fr;
    gap: 12px;
    align-items: start;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sc-list__row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Разделители между колонками */
.sc-list__row > .sc-list__value:not(:last-child) {
    border-right: 1px solid #eee;
    padding-right: 12px;
    margin-right: 12px;
}

/* Ячейки */
.sc-list__value {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    text-align: left;
    word-break: break-word;
}

.sc-list__value--name {
    font-weight: 600;
    color: #1a1a1a;
}

.sc-list__value--link a {
    color: #f76800;
    font-weight: 500;
    text-decoration: none;
}

.sc-list__value--link a:hover {
    text-decoration: underline;
}

/* Скрытый / показать */
.sc-list__row.hidden {
    display: none;
}

.sc-list__row.show {
    display: grid;
}

.sc-list__value--name {
    font-weight: 600;
    color: #1a1a1a;
    white-space: normal;      /* разрешаем перенос строк */
    word-wrap: break-word;    /* переносим длинные слова */
    overflow-wrap: break-word;/* переносим, если не помещается */
    text-align: left;         /* выравнивание по левому краю */
}

/* Адаптив */
@media (max-width: 992px) {
    .sc-list__row {
        grid-template-columns: 1fr;
    }

    .sc-list__row > .sc-list__value:not(:last-child) {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
    }
}
