.home_news_block {
    background: #E6EDF0;
    padding-top: var(--innerDeskPT);
    padding-bottom: var(--innerDeskPB);
    margin: 0;
    margin-top: 0 !important;
}

.home_news_block * {
    box-sizing: border-box;
}

.home_news_block__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 38px;
}

.home_news_block__title {
    color: #C20000;
    /* font-family: "Archivo Black", sans-serif;
    font-size: clamp(34px, 3.7vw, 52px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.05;
    margin: 0;
    text-transform: none; */
}

.home_news_block__title span {
    color: inherit;
}

.home_news_block__read_more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    min-height: 48px;
    padding: 14px 32px;
    background: #C20000;
    color: #fff !important;
    font-family: var(--defaultFontFamily, "Montserrat", sans-serif);
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.home_news_block__read_more:hover {
    background: #9f0000;
    color: #fff !important;
}

.home_news_block__read_more--mobile {
    display: none;
}

.home_news_block__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.home_news_block__card {
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.home_news_block__image_wrap {
    position: relative;
    display: block;
    height: 245px;
    overflow: visible;
    color: inherit;
    text-decoration: none;
}

.home_news_block__image_wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_news_block__category {
    position: absolute;
    left: 26px;
    bottom: -18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #425A6E;
    color: #fff;
    font-family: var(--defaultFontFamily, "Montserrat", sans-serif);
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    padding: 10px 20px;
    z-index: 2;
}

.home_news_block__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 42px 28px 28px;
}

.home_news_block__card_title {
    margin: 0;
    color: #2c3136;
    font-family: var(--h3FontFamily, "Archivo Black", sans-serif);
    font-size: clamp(24px, 1.55vw, 30px);
    font-style: normal;
    font-weight: 800;
    line-height: 1.2;
    text-transform: none;
}

.home_news_block__card_title a {
    color: inherit;
    text-decoration: none;
}

.home_news_block__card_title a:hover {
    color: #C20000;
}

.home_news_block__divider {
    width: 100%;
    height: 2px;
    background: #C20000;
    margin: 28px 0 26px;
}

.home_news_block__meta_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
}

.home_news_block__meta_row time {
    color: #2c3136;
    font-family: var(--defaultFontFamily, "Montserrat", sans-serif);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.2;
}

.home_news_block__arrow {
    flex: 0 0 auto;
    width: 35px;
    height: 35px;
    background: #C20000;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.home_news_block__arrow:hover {
    background: #9f0000;
    color: #fff !important;
}

.home_news_block__arrow i {
    font-size: 17px;
}

@media (max-width: 991px) {
    .home_news_block {
        padding: 56px 0 58px;
        padding-top: var(--innerDeskPT);
        padding-bottom: var(--innerDeskPB);
    }

    .home_news_block__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .home_news_block__top {
        justify-content: center;
        text-align: center;
        margin-bottom: 30px;
    }

    .home_news_block__read_more--desktop {
        display: none;
    }

    .home_news_block__read_more--mobile {
        display: flex;
        width: fit-content;
        margin: 32px auto 0;
    }
}

@media (max-width: 767px) {
    /* .home_news_block {
        padding: 42px 0 50px;
    } */

    .home_news_block__top {
        justify-content: flex-start;
        text-align: left;
        margin-bottom: 26px;
    }

    .home_news_block__title {
        /* font-size: 26px; */
        line-height: 1.1;
    }

    .home_news_block__grid {
        max-width: 280px;
    }

    .home_news_block__card:nth-child(n+2) {
        display: none;
    }

    .home_news_block__image_wrap {
        height: 250px;
    }

    .home_news_block__category {
        left: 20px;
        bottom: -17px;
        font-size: 24px;
        padding: 9px 18px;
    }

    .home_news_block__content {
        padding: 40px 20px 22px;
    }

    .home_news_block__card_title {
        font-size: 21px;
        line-height: 1.2;
    }

    .home_news_block__divider {
        margin: 22px 0 24px;
    }

    .home_news_block__read_more--mobile {
        min-width: 190px;
        min-height: 44px;
    }
}