

/* Start:/local/media/pages/article/style.css?17563900005638*/
.article {
    padding-top: 24px;
    padding-bottom: 100px;
    background-color: #EBFFFE;
    background-image: url('/local/media/images/action-car/bg.jpg');
    background-size: 100% auto;
    background-repeat: repeat-y;
    color: #7FA3A1;
    font-weight: 500;
}

.article-section {
    padding-bottom: 40px;
}

.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
    margin-top: 0;
    color: #0A3836;
    margin-bottom: 1.25rem;
}

.article p,
.article ul {
    margin-top: 0;
}

.article p:not(:last-child),
.article ul:not(:last-child) {
    margin-bottom: 1.25rem;
}

.article p:has(small) {
    font-size: 12px;
}

.article p:has(small):not(:last-child) {
    margin-bottom: 1rem;
}

.article-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-steps-item {
    width: 68%;
    padding: 20px;
    display: grid;
    grid-template-columns: min-content 1fr;
    gap: 27px;
    align-items: center;
    background-color: #fff;
    border-radius: 16px;
}

.article-steps-item__num {
    color: #0a3836;
    font-size: 48px;
    font-weight: 700;
    opacity: 0.33;
}

.article .accent {
    padding: 20px 24px;
    border-radius: 16px;
    background-color: #A0EDE9;
    color: #0A3836;
}

.article-title,
article h1 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 32px;
}

.article-subtitle,
.article h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.article-headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding-bottom: 24px;
}

.article-headline h1,
.article-headline .article-title {
    margin: 0;
}


.article-publink {
    position: relative;
}

.article-share {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    padding: 7px;
    background-color: #EBFFFE;
    border: 1px solid #0A3836;
    border-radius: 10px;
    width: max-content;
}

.article-publink.is-selected .article-share {
    display: block;
}

.article-public {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.article-publink__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #0A3836;
    color: #0A3836;
    cursor: pointer;
}

.article-publink__icon-wrap>svg {
    width: 32px;
    height: 32px;
    user-select: none;
}

.article-boxes {
    display: grid;
    padding: 0;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 1fr;
    gap: 8px;
}

.article-box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    gap: 20px;
    text-decoration: none;
    color: #547B79;
    font-weight: 600;
    text-align: center;
    background-color: #fff;
    border-radius: 16px;
}

.article-box__text {
    font-size: 16px;
}

.article-box__pic {
    aspect-ratio: 1;
    width: 100%;
    height: auto;
    max-width: 147px;
}

.article-box__pic>img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
}

.article-banner {
    padding-bottom: 20px;
}

.article-banner-link {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    border-radius: 20px;
    background-color: #004B44;
    margin: 0;
}

.article-banner-pic {
    display: block;
    width: 100%;
    height: auto;
}

.article-banner-pic>img {
    display: block;
    width: 100%;
    height: auto;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.article-footer-btn {
    padding: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #004B44;
    color: #004B44;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.article-footer-btn>svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.article-footer-btn:hover {
    color: var(--orange);
    border-color: var(--orange);
}

.article-footer-btn_fill {
    background-color: #004B44;
    border-color: #004B44;
    color: #fff;
}

.article-footer-btn_fill:hover {
    color: #ffffff;
    background-color: var(--orange);
}

@media (hover: hover) and (pointer: fine) {
    .article-publink__icon-wrap:hover {
        transition: 300ms;
        color: var(--orange);
        border-color: var(--orange);
    }
}

@media (width < 1200px) {
    .article {
        font-size: 12px;
    }

    .article p:has(small) {
        font-size: 10px;
    }
    .article p:has(small):not(:last-child) {
        margin-bottom: 0.5rem;
    }

    .article-title,
    article h1 {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .article-subtitle,
    .article h2 {
        font-size: 18px;
    }
    .article-steps {
        gap: 8px;
    }
    .article-steps-item {
        width: 100%;
    }
    .article-steps-item__num {
        font-size: 34px;
    }
    .article-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    .article-boxes-item:nth-child(1) {
        grid-column: span 2;
    }
    .article-publink__icon-wrap {
        width: 36px;
        height: 36px;
    }
    .article-publink__icon-wrap>svg {
        width: 20px;
        height: 20px;
    }
    .article-headline {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .article-share {
        right: unset;
        left: -48px;
    }
}

@media (width < 576px) {
    .article-footer {
        flex-direction: column-reverse;
        gap: 12px;
        
    }
}
/* End */
/* /local/media/pages/article/style.css?17563900005638 */
