body {
    word-wrap: break-word;
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
}

/*
Заголовки
*/

h1 {
    font-size: 250%;
}

h1.single-title {
    color: #c9011e;
}

h2 {
    font-size: 200%;
}

.car_body h2 {
    font-size: 35px;
    font-weight: normal;
    margin: 20px 0px;
}

h3 {
    font-size: 175%;
}

h4 {
    font-size: 150%;
}

h5 {
    font-size: 125%;
}

h6 {
    font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 40px 0px;
    font-weight: bold;
    line-height: 40px;
    word-break: break-word;
    hyphens: auto;
}

/*
Абзацы
*/

p {
    margin: 10px 0;
    line-height: 24px;
}

/*
Списки
*/

ul,
ol {
    margin: 20px 0;
}

li ul,
li ol {
    margin: unset;
}

li {
    list-style: none;
}

article ul>li {
    margin-left: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    list-style: disc;
}

article ol>li {
    list-style: decimal;
    margin-left: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
}

/*
Ссылки
*/

a {
    /* text-decoration: underline; */
    color: #c9011e;
}

.car_list__wrapper a,
.search_car__block__settings__section a {
    /* text-decoration: none; */
    color: unset;
}

/*
Цитаты
*/

blockquote {
    padding: 5px 30px;
    margin: 20px 0 20px 5px;
    position: relative;
    border-left: 2px solid #424242;
    background-color: #42424217;
}

blockquote:hover {
    background-color: #4242420d;
}

blockquote:before {
    content: "";
    border-left: 2px solid #424242;
    position: absolute;
    top: 10px;
    left: -7px;
    width: 2px;
    height: 35px;
}

blockquote.red {
    border-left: 2px solid #c9011e;
    background-color: #c9011e12;
}

blockquote.red:hover {
    background-color: #c9011e08;
}

blockquote.red:before {
    content: "";
    border-left: 2px solid #c9011e;
    position: absolute;
    top: 10px;
    left: -7px;
    width: 2px;
    height: 35px;
}



/*
Таблицы
*/

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1rem;
}

thead th {
    text-align: left;
    font-weight: 600;
    background: #f5f6f7;
    border-bottom: 4px solid #e0e0e0;
    padding: 0.75em 1em;
}

tbody td {
    padding: 0.75em 1em;
    border-bottom: 1px solid #e6e6e6;
    vertical-align: top;
}

tbody tr:nth-child(even) {
    background: #fafafa;
}

tbody tr:hover {
    background: #f0f4f8;
}

th,
td {
    line-height: 1.4;
}

/* опционально: числовые колонки */
td.is_number,
th.is_number {
    text-align: right;
}

/*
Мелкие элементы
*/

code {
    font-family: monospace;
    background-color: #e5e5e5;
    padding: 5px 10px;
}