

/* Start:/local/templates/native_24/components/bitrix/news/native_articles/bitrix/catalog.section.list/.default/style.css?17854857054214*/
.native-article-sections {
    --sections-dark: #153e35;
    --sections-green: #6c9569;
    --sections-light-green: #badf93;
    --sections-border: #dfe7df;
    --sections-background: #f5f8f5;
    --sections-muted: #74807a;

    padding: 20px 0 42px;
}

.native-article-sections *,
.native-article-sections *::before,
.native-article-sections *::after {
    box-sizing: border-box;
}

.native-article-sections__heading {
    margin-bottom: 24px;
}

.native-article-sections__heading-title,
.native-articles-page__subtitle {
    margin: 0;
    padding: 0 0 14px;
    border-bottom: 4px solid var(--sections-light-green);
    color: var(--sections-dark);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.25;
}

.native-articles-page__subtitle {
    margin-top: 8px;
    margin-bottom: 4px;
}

.native-article-sections__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.native-article-sections__item {
    min-width: 0;
}

.native-article-sections__card {
    display: flex;
    align-items: flex-start;
    height: 100%;
    min-height: 168px;
    padding: 24px 22px;
    border: 1px solid var(--sections-border);
    border-radius: 4px;
    background: #fff;
    color: var(--sections-dark);
    text-decoration: none;
    box-shadow: 0 5px 22px rgba(21, 62, 53, 0.035);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.native-article-sections__card:hover {
    border-color: var(--sections-light-green);
    color: var(--sections-dark);
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(21, 62, 53, 0.09);
    transform: translateY(-4px);
}

.native-article-sections__icon {
    display: flex;
    flex: 0 0 60px;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-right: 17px;
    border-radius: 4px;
    background:
        linear-gradient(
            135deg,
            rgba(186, 223, 147, 0.25),
            rgba(108, 149, 105, 0.09)
        );
    color: var(--sections-green);
}

.native-article-sections__icon img {
    display: block;
    max-width: 42px;
    max-height: 42px;
    object-fit: contain;
}

.native-article-sections__icon svg {
    width: 38px;
    height: 38px;
}

.native-article-sections__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    height: 100%;
}

.native-article-sections__title {
    margin-bottom: 9px;
    color: var(--sections-dark);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.native-article-sections__card:hover
.native-article-sections__title {
    color: var(--sections-green);
}

.native-article-sections__description {
    margin-bottom: 15px;
    color: var(--sections-muted);
    font-size: 14px;
    line-height: 1.5;
}

.native-article-sections__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    color: var(--sections-green);
}

.native-article-sections__count {
    font-size: 13px;
    line-height: 1.4;
}

.native-article-sections__arrow {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.native-article-sections__card:hover
.native-article-sections__arrow {
    transform: translateX(5px);
}

@media (max-width: 1150px) {
    .native-article-sections__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .native-article-sections {
        padding-top: 10px;
        padding-bottom: 34px;
    }

    .native-article-sections__heading-title,
    .native-articles-page__subtitle {
        font-size: 26px;
    }

    .native-article-sections__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .native-article-sections__card {
        min-height: 140px;
        padding: 20px;
    }
}

@media (max-width: 420px) {
    .native-article-sections__card {
        padding: 17px;
    }

    .native-article-sections__icon {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
        margin-right: 14px;
    }

    .native-article-sections__title {
        font-size: 18px;
    }
}
/* End */


/* Start:/local/templates/native_24/components/bitrix/news/native_articles/bitrix/news.list/.default/style.css?17854343716152*/
.native-articles-list {
    --articles-dark: #153e35;
    --articles-green: #6c9569;
    --articles-light-green: #badf93;
    --articles-border: #dfe7df;
    --articles-background: #f5f8f5;
    --articles-muted: #74807a;
    --articles-text: #252b29;

    padding: 25px 0 70px;
    color: var(--articles-text);
}

.native-articles-list *,
.native-articles-list *::before,
.native-articles-list *::after {
    box-sizing: border-box;
}

.native-articles-list__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.native-articles-list__item {
    min-width: 0;
}

.native-articles-list__card {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    border: 1px solid var(--articles-border);
    border-radius: 4px;
    background: #fff;
    color: var(--articles-text);
    text-decoration: none;
    box-shadow: 0 5px 22px rgba(21, 62, 53, 0.035);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.native-articles-list__card:hover {
    border-color: var(--articles-light-green);
    color: var(--articles-text);
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(21, 62, 53, 0.1);
    transform: translateY(-5px);
}

.native-articles-list__picture {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 760 / 460;
    background: var(--articles-background);
}

.native-articles-list__picture::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--articles-light-green);
    content: "";
}

.native-articles-list__picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.native-articles-list__card:hover .native-articles-list__picture img {
    transform: scale(1.04);
}

.native-articles-list__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--articles-green);
    background:
        linear-gradient(
            135deg,
            rgba(186, 223, 147, 0.18),
            rgba(108, 149, 105, 0.08)
        );
}

.native-articles-list__placeholder svg {
    opacity: 0.9;
}

.native-articles-list__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 25px 26px 27px;
}

.native-articles-list__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 22px;
    margin-bottom: 13px;
    gap: 9px;
    color: var(--articles-muted);
    font-size: 13px;
    line-height: 1.4;
}

.native-articles-list__date {
    color: var(--articles-muted);
}

.native-articles-list__meta-separator {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--articles-light-green);
}

.native-articles-list__section {
    color: var(--articles-green);
    font-weight: 400;
}

.native-articles-list__title {
    margin: 0 0 15px;
    padding: 0;
    color: var(--articles-dark);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.native-articles-list__card:hover .native-articles-list__title {
    color: var(--articles-green);
}

.native-articles-list__preview {
    margin-bottom: 24px;
    color: #4f5955;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.62;
}

.native-articles-list__more {
    display: flex;
    align-items: center;
    align-self: flex-start;
    margin-top: auto;
    gap: 9px;
    color: var(--articles-green);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.native-articles-list__card:hover .native-articles-list__more {
    gap: 14px;
    color: var(--articles-dark);
}

.native-articles-list__more svg {
    flex: 0 0 auto;
}


/* Пагинация */

.native-articles-list__pagination {
    margin-top: 45px;
    text-align: center;
}

.native-articles-list__pagination .modern-page-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
}

.native-articles-list__pagination a,
.native-articles-list__pagination span {
    text-decoration: none;
}


/* Пустой список */

.native-articles-list__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 280px;
    padding: 45px 25px;
    border: 1px solid var(--articles-border);
    border-radius: 4px;
    background: var(--articles-background);
    text-align: center;
}

.native-articles-list__empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #fff;
    color: var(--articles-green);
}

.native-articles-list__empty-title {
    color: var(--articles-dark);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.4;
}


/* Планшет */

@media (max-width: 1100px) {
    .native-articles-list__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}


/* Телефон */

@media (max-width: 700px) {
    .native-articles-list {
        padding-top: 15px;
        padding-bottom: 45px;
    }

    .native-articles-list__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .native-articles-list__card {
        min-height: 0;
    }

    .native-articles-list__picture {
        aspect-ratio: 16 / 9;
    }

    .native-articles-list__body {
        padding: 21px 20px 23px;
    }

    .native-articles-list__title {
        margin-bottom: 12px;
        font-size: 22px;
    }

    .native-articles-list__preview {
        margin-bottom: 20px;
        font-size: 15px;
    }

    .native-articles-list__pagination {
        margin-top: 32px;
    }
}

@media (max-width: 420px) {
    .native-articles-list__title {
        font-size: 20px;
    }

    .native-articles-list__body {
        padding-right: 17px;
        padding-left: 17px;
    }
}
/* End */
/* /local/templates/native_24/components/bitrix/news/native_articles/bitrix/catalog.section.list/.default/style.css?17854857054214 */
/* /local/templates/native_24/components/bitrix/news/native_articles/bitrix/news.list/.default/style.css?17854343716152 */
