.articlePreviewCard_card {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.articlePreviewCard_cardLarge {
    row-gap: 16px;
}

.articlePreviewCard_cardLarge .articlePreviewCard_cardImage {
    margin-bottom: 8px;
}

.articlePreviewCard_cardSmall {
    padding-bottom: 16px;
}

.articlePreviewCard_cardSmall:not(:last-child) {
    border-bottom: 1px solid #e6e8ec;
}

.articlePreviewCard_imageWrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    max-height: 184px;
    width: 100%;
    height: 100vh;
}

@media screen and (min-width:1023px) {
    .articlePreviewCard_imageWrapper {
        max-height: 416px;
    }
}

.articlePreviewCard_cardImage {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.articlePreviewCard_timeToRead {
    margin-left: 7px;
}

.gridArticles_grid {
    display: grid;
    grid-row-gap: 30px;
    row-gap: 30px;
    margin-top: var(--mtHeaderTitle);
}

@media screen and (min-width:1023px) {
    .gridArticles_grid {
        grid-template-columns: 3fr 1.5fr;
        column-gap: 30px;
    }
}

.gridArticles_gridList {
    display: grid;
    grid-row-gap: 16px;
}

.gridArticles_title {
    display: inline-block;
    margin-bottom: 24px;
}

.pagination_wrap,
.pagination_wrap > ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination_wrap > ul {
    flex-wrap: wrap;
    text-align: center;
    gap: 4px;
}

.pagination_wrap a,
.pagination_wrap span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    line-height: 1;
    height: 32px;
    min-width: 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100%;
}

.pagination_wrap a {
    background: transparent;
    border-radius: 50%;
}

.pagination_wrap a:not(.current):hover {
    background: #e6e8ec;
}

.current {
    background: #3b71fe;
    color: #fff;
}

.current:hover {
    color: #fff;
}

.newsCard_newsCard {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-grow: 1;
    position: relative;
}

.newsCard_newsCard .newsCard_innerCard {
    display: block;
    flex-grow: 1;
    border: 1px solid #e6e8ec;
    border-radius: 24px;
    font-size: 0;
    overflow: hidden;
}

.newsCard_newsCard .newsCard_innerCard:hover {
    box-shadow: 0 8px 16px -8px hsla(0, 0%, 6%, .1);
}

.newsCard_newsCard .newsCard_innerCard .newsCard_imageWrap {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 50%;
    border-top-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.newsCard_newsCard .newsCard_innerCard .newsCard_cardImage {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsCard_newsCard .newsCard_content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: column;
    height: 240px;
    padding: 16px 16px 0;
    margin-bottom: 24px;
    overflow: hidden;
}

@media screen and (min-width:768px) {
    .newsCard_newsCard .newsCard_content {
        padding: 16px 16px 0;
    }
}

@media screen and (max-width:768px) {
    .newsCard_newsCard .newsCard_content {
        height: 272px;
    }
}

.newsCard_newsCard .newsCard_content_text {
    height: 80%;
    overflow: hidden;
}

.newsCard_newsCard .newsCard_title {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
}

@media screen and (min-width:768px) {
    .newsCard_newsCard .newsCard_title {
        font-size: 16px;
        line-height: 24px;
    }
}

.newsCard_newsCard .newsCard_text {
    margin-bottom: 0;
    margin-top: 16px;
    font-weight: 400;
    font-size: .875rem;
    line-height: 1.7142857143;
    color: #777e90;
}

.newsCard_newsCard .newsCard_toread {
    margin-top: 16px;
    font-style: normal;
    font-weight: 400;
    font-size: .875rem;
    line-height: 1.7142857143;
    color: #23262f;
}

.blogPage_categoriesWrap {
    margin-top: 45px;
}

@media screen and (max-width:767px) {
    .blogPage_categoriesWrap {
        margin-top: 16px;
    }
}

.blogPage_blogPage {
    overflow: hidden;
    padding-bottom: 32px;
}

.blogPage_blogPage .blogPage_crumbsHolder {
    margin-bottom: 56px;
    display: block;
    width: 100%;
}

.blogPage_logoSection {
    margin-top: 24px;
}

@media screen and (min-width:767px) {
    .blogPage_logoSection {
        margin-top: 56px;
    }
}

.blogPage_container {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.blogPage_grid {
    display: grid;
    align-items: flex-start;
    grid-gap: 24px;
    gap: 24px;
}

@media screen and (min-width:1023px) {
    .blogPage_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width:1279px) {
    .blogPage_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}