.workarea__row {
    display: flex;
    gap: 30px;
}

.workarea__left {
    flex: 0 0 300px; /* Фиксированная ширина левой колонки */
}

.workarea__content {
    flex: 1; /* Занимает оставшееся пространство */
}

/* Адаптивность */
@media screen and (max-width: 767px) {
    .workarea__row {
        flex-direction: column;
    }
    
    .workarea__left {
        flex: none;
        width: 100%;
        margin-bottom: 30px;
    }
    
    /* Если нужно скрывать левую колонку на мобильных, раскомментируйте */
    /* .workarea__left {
        display: none !important;
    } */
}

/* Стили для списка */
.list-num {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-num__item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.list-num__number-cover {
    flex-shrink: 0;
    margin-right: 15px;
}

.list-num__number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
}

.list-num__title {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.list-num__text {
    display: block;
    color: #666;
}