

/* 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/news.list/.default/style.css?17854343716152 */
