/* Базовые стили для элементов с классом sever */
.sever {
    font-family: 'Roboto', sans-serif;
    font-size: 13pt;
    color: #000000;
    line-height: 1.4;
}

/* Заголовки */
.sever h1 {
    font-size: 2.5rem !important;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #000000;
    font-weight: 700;
}

.sever h2 {
    font-size: 2rem !important;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.sever h3 {
    font-size: 1.5rem !important;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 500;
}

/* Абзацы */
.sever p {
    margin-bottom: 1.25rem;
    text-align: justify;
    font-weight: 400;
}

/* Ссылки */
.sever a {
    color: #000000;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.sever a:hover {
    opacity: 0.7;
}

/* Списки */
.sever ul, 
.sever ol {
    margin: 1rem 0 1.5rem 2rem;
    padding-left: 1rem;
}

.sever li {
    margin-bottom: 0.5rem;
    padding: 0.1rem 0;
}

.sever ul {
    list-style-type: disc;
}

.sever ol {
    list-style-type: decimal;
}

/* Цитаты */
.sever blockquote {
    padding: 1.5rem;
    margin: 1.5rem 0;
    background-color: #f0f0f0;
    border-left: 4px solid #000000;
    border-radius: 4px;
    font-style: italic;
}

.sever q {
    font-style: italic;
    quotes: "«" "»";
}