.article {}


.article-cover {
    width: 100%;
    height: 360px;
    background: #dcdcdc;
    margin-bottom: 40px;
}


.article-cover img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


.article-inner {
    max-width: 1484px;
    margin: 40px auto 80px;
}


.article-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    padding: 30px 0 60px;
    position: relative;
}

.article-back {
    position: absolute;
    left: -100px;
    top: 38%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.article-back img {
    width: 20px;
    height: 20px;
}

.article-title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #111;
}

.article-date {
    font-size: 18px;
    font-weight: 300;
    color: #000000;
    white-space: nowrap;
}


.article-body {
    margin-top: 24px;
    color: #000000;
    font-size: 18px;
    font-weight: 300;
    line-height: 144%;
}

.article-body p {
    margin: 0 0 18px;
}

.article-divider {
    height: 1px;
    background: #e9e9e9;
    margin: 36px 0 28px;
}


.article-more {
    position: relative;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 16px;
    margin: 100px;
}

.more-btn {
    width: 24px;
    height: 24px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 99;
}

.more-btn img {
    width: 20px;
    height: 20px;
    display: block;
}

.more-btn.next img {
    transform: scaleX(-1);
}




.more-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    /* вместо hidden */
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    /* плавная фиксация по карточкам */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.more-track::-webkit-scrollbar {
    display: none;
}

/* по желанию, скрыть полосу */

.more-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    text-decoration: none;
    background: #fff;
    flex: 0 0 calc(50% - 16px);
    min-width: calc(50% - 16px);
    scroll-snap-align: start;
    box-sizing: border-box;
}


.more-thumb {
    width: 305px;
    height: 219px;
    background: #dcdcdc;
    flex-shrink: 0;
}

.more-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.more-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    width: 100%;
    justify-content: space-between;
}

.more-title {
    color: #111;
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
}

.more-date {
    font-size: 24px;
    font-weight: 300;
    color: #9a9a9a;
    text-align: right;
}


.more-card.is-dimmed {
    opacity: .35;
    pointer-events: none;
}


@media (max-width: 767px) {

    .article-cover {
        height: 250px;
    }

    .article-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .article-back {
        left: 0px;
        top: 0;
    }

    .article-title {
        font-size: 24px;
    }

    .article-date {
        text-align: left;
        width: 100%;
    }

    .more-card.is-dimmed {
        opacity: 1;
        pointer-events: auto;
    }

    .article-inner {
        padding: 0 20px;
        margin: unset;
    }

    .more-card {
        flex: 0 0 100%;
        min-width: 100%;
        flex-direction: column;

    }

    .more-thumb {
        width: 100%;
        height: 170px;
        /* подгони под дизайн */
    }


    .more-title {
        font-size: 24px;
    }

    .more-date {
        font-size: 16px;
    }


    .article-more {
        margin: 30px 20px;
    }
}



@media (min-width: 768px) and (max-width: 1350px) {

    .article-cover {
        height: 250px;
    }

    .article-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .article-date {
        text-align: left;
        width: 100%;
    }

    .article-inner {
        padding: 0 100px;
    }

    .article-back {
        left: -50px;
        top: 45px;
    }


    .article-more {
        margin: 50px 40px;
    }

    .more-thumb {
        width: 100%;
        height: 170px;
    }

    .more-card {
        flex-direction: column;
    }

    .more-title {
        font-size: 24px;
    }

    .more-date {
        font-size: 16px;
    }


}