.article {
    display: flex;
    flex-direction: column;
}

.article *,
.article *::before,
.article *::after {
    box-sizing: border-box;

    font-family: TTNorms, sans-serif !important;
}

.article__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
}

@media screen and (min-width: 960px) {
    .article__title {
        font-size: 48px;
        line-height: 120%;
    }
}

.article__info {
    display: none;
}

.article__content {
    margin-top: 24px;
}

@media screen and (min-width: 960px) {
    .article__content {
        margin-top: 32px;
    }
}

.article .article__body h4,
.article .article__body h2,
.article .article__body h2 span,
.article .article__body .lineTitle {
    margin-bottom: 24px;
    padding: 0;

    font-size: 20px;
    font-weight: 500;
    line-height: 20px;

    border: none;
}

.article .article__body h4:not(:first-child),
.article .article__body h2:not(:first-child),
.article .article__body h2:not(:first-child) span,
.article .article__body .lineTitle:not(:first-child) {
    margin-top: 40px;
}

@media screen and (min-width: 960px) {
    .article .article__body h4 {
        margin-bottom: 32px;

        font-size: 24px;
    }
}

.article .article__body p,
.article .article__body span {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}

.article .article__body p:not(:last-child) {
    margin-bottom: 16px;
}

.article .article__body strong {
    font-weight: 500;
}

.article .article__body a,
.article .article__body a * {
    color: var(--color-blue);

    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 1px;

    transition: color 0.3s ease;
    cursor: pointer;
}

.article .article__body a:hover,
.article .article__body a *:hover {
    color: var(--color-blue-hover);
}

.article .article__body ol {
    margin-bottom: 12px;
    padding-left: 24px;

    list-style-type: decimal;
}

.article .article__body ol:not(:first-child),
.article .article__body ol li:not(:first-child),
.article .article__body ul:not(:first-child),
.article .article__body ul li:not(:first-child) {
    margin-top: 12px;
}

.article .article__body ul {
    margin-bottom: 12px;
    padding-left: 16px;
}

.article .article__body img {
    border: 1px solid var(--color-grey-1);
    border-radius: 8px;
    overflow: hidden;
}

.article .article__body .yellowBox {
    margin: 16px 0;
    padding: 8px 14px;
    max-width: 670px;

    border: 2px solid var(--color-azure-tr19);
    border-radius: 8px;
}

.article .article__body hr {
    display: none;
}

/* Таблицы */
.article .article__body table {
    margin: 16px 0;
    width: 100%;

    border: 2px solid var(--color-grey-1);
    border-radius: 12px;
}

.article .article__body table:last-child {
    margin-bottom: 0;
}

.article .article__body table:first-child {
    margin-top: 0;
}

.article .article__body table th,
.article .article__body table td {
    padding: 16px;

    text-align: left;
    border: none;
}

.article .article__body table th:not(:last-child),
.article .article__body table td:not(:last-child) {
    border-right: 1px solid var(--color-grey-1);
}

.article .article__body table th,
.article .article__body table tr:not(:last-child) td {
    border-bottom: 1px solid var(--color-grey-1);
}

.article .article__body table th {
    font-weight: 400;
    color: var(--color-dark-grey-2);
}

.article .article__body table td a,
.article .article__body table td a *{
    text-decoration: none !important;
}
/* ------------- */

/* Инфобокс с лампочкой */
.article .article__body p:has(img[alt="info"]) {
    margin: 16px 0;
    padding: 20px 14px;
    display: flex;
    gap: 20px;

    background-color: var(--color-azure-tr12);
    border-radius: 8px;
}

.article .article__body p:has(img[alt="info"]):last-child {
    margin-bottom: 0;
}

.article .article__body p img[alt="info"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;

    object-fit: contain;
}
/* ------------- */


/* IFrame */
.article .article__body iframe {
    width: 100%;
    height: unset;
    aspect-ratio: 280 / 237;
}

@media screen and (min-width: 800px) {
    .article .article__body iframe {
        max-width: 559px;
        aspect-ratio: 559 / 474;
    }
}
/* ------------- */