/* Enhanced editorial block for model pages: /auto/{brand}/{model}/ */
.auto-article {
    --article-accent: rgb(62, 162, 148);
    --article-accent-strong: rgb(42, 142, 128);
    --article-secondary: rgb(162, 112, 168);
    --article-surface: rgb(64, 64, 70);
    --article-surface-soft: rgb(72, 72, 78);
    --article-border: rgba(255, 255, 255, .1);
    padding: 52px 10px 64px;
    text-align: left;
}

.auto-article > h2 {
    box-sizing: border-box;
    max-width: 1160px;
    margin: 0 auto 28px;
    padding: 0 6px;
    color: rgb(255, 255, 255);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.12;
    text-align: left;
}

.auto-article > h2::before {
    content: 'Техосмотр автомобиля';
    display: block;
    margin-bottom: 12px;
    color: var(--article-accent);
    font-size: 12px;
    font-weight: bold;
    line-height: 16px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.auto-article__body {
    position: relative;
    box-sizing: border-box;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 0 0 28px;
    text-indent: 0 !important;
    text-align: left !important;
}

.auto-article__body::before {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 45px;
    width: 1px;
    background: linear-gradient(var(--article-accent), rgba(162, 112, 168, .45));
}

.auto-article__card {
    position: relative;
    box-sizing: border-box;
    margin: 0 0 14px;
    padding: 25px 26px 25px 70px;
    overflow: visible;
    border: 1px solid var(--article-border);
    border-radius: 8px;
    background: linear-gradient(110deg, rgba(62, 162, 148, .075), transparent 40%), var(--article-surface);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .12);
}

.auto-article__card::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 92px;
    height: 92px;
    border-top: 1px solid rgba(62, 162, 148, .12);
    border-left: 1px solid rgba(62, 162, 148, .12);
    border-radius: 92px 0 8px 0;
    pointer-events: none;
}

.auto-article__card:nth-child(even) {
    background: linear-gradient(110deg, rgba(162, 112, 168, .08), transparent 40%), var(--article-surface);
}

.auto-article__card:last-child {
    margin-bottom: 0;
    border-color: rgba(162, 112, 168, .45);
    background: linear-gradient(110deg, rgba(162, 112, 168, .16), transparent 48%), var(--article-surface);
}

.auto-article__number {
    position: absolute;
    z-index: 1;
    top: 23px;
    left: -19px;
    display: grid;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--article-accent);
    border-radius: 50%;
    background: rgb(52, 52, 58);
    color: var(--article-accent);
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 0 0 7px rgba(62, 162, 148, .07);
}

.auto-article__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
    color: var(--article-accent);
    font-size: 11px;
    font-weight: bold;
    line-height: 16px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.auto-article__eyebrow::after {
    content: '';
    width: 38px;
    height: 1px;
    background: currentColor;
    opacity: .65;
}

.auto-article__title {
    margin: 0 0 12px;
    color: rgb(255, 255, 255);
    font-size: 21px;
    line-height: 27px;
}

.auto-article__card:last-child .auto-article__title {
    color: rgb(222, 172, 228);
}

.auto-article__text {
    margin: 0;
    color: rgb(222, 222, 228);
    font-size: 16px;
    line-height: 1.72;
    text-indent: 0;
}

@media all and (min-width: 800px) {
    .auto-article {
        padding-top: 70px;
        padding-bottom: 82px;
    }

    .auto-article__body {
        padding-left: 52px;
    }

    .auto-article__body::before {
        left: 69px;
    }

    .auto-article__card {
        padding: 30px 42px 30px 84px;
    }
}

@media all and (max-width: 499px) {
    .auto-article {
        padding-top: 42px;
        padding-bottom: 52px;
    }

    .auto-article__body {
        padding-left: 15px;
    }

    .auto-article__body::before {
        left: 31px;
    }

    .auto-article__card {
        padding: 22px 18px 22px 42px;
    }

    .auto-article__number {
        left: -5px;
        width: 34px;
        height: 34px;
    }

    .auto-article__title {
        font-size: 18px;
        line-height: 24px;
    }

    .auto-article__text {
        font-size: 15px;
        line-height: 1.65;
    }
}
