

/* Start:/local/css/stati.css?17815110521620*/
/* =========================================================
   /stati/ — список статей
   ========================================================= */

/* ── Заголовок страницы ───────────────────────────────────── */
.stati-page__title,
.stati-page__subtitle {
    text-align: center;
}

/* ── Перелинковка ─────────────────────────────────────────── */
.site-links {
    max-width: 860px;
    margin: 40px auto 0;
    padding: 0 20px 64px;
}
.site-links__title {
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #343650;
    margin: 0 0 20px;
}
.site-links__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.site-links__card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 22px;
    background: #f4f7ff;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.site-links__card:hover {
    border-color: #0069FF;
    box-shadow: 0 2px 12px rgba(0,105,255,0.10);
}
.site-links__card-title {
    display: block;
    font-family: 'Gilroy', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0069FF;
}
.site-links__card-desc {
    display: block;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}
@media (max-width: 600px) {
    .site-links__grid { grid-template-columns: 1fr; }
}

/* End */


/* Start:/local/templates/Flat_template/components/bitrix/news/test-news/style.css?17812936683879*/
/* =========================================================
   /stati/ — список статей
   ========================================================= */

.stati-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 10px;
}

.stati-page__title {
    font-family: 'Gilroy', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #343650;
    margin: 0 0 8px;
}

.stati-page__subtitle {
    font-size: 15px;
    color: #666666;
    margin: 0 0 0;
}

/* ---- Сетка новостей ---- */

.news-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Убираем <br> в конце списка */
.news-list > br {
    display: none;
}

/* ---- Карточка ---- */

.news-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 2px 12px rgba(0, 105, 255, 0.07);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.news-item:hover {
    box-shadow: 0 6px 24px rgba(0, 105, 255, 0.15);
    transform: translateY(-3px);
}

/* Дата */
.news-item .news-date-time {
    font-size: 12px;
    font-weight: 500;
    color: #999999;
    letter-spacing: 0.3px;
}

/* Заголовок — ссылка */
.news-item > a {
    text-decoration: none;
}

.news-item > a b {
    font-family: 'Gilroy', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #343650;
    line-height: 1.35;
    transition: color 0.15s ease;
}

.news-item > a:hover b {
    color: #0069FF;
}

/* Превью-текст (текстовый узел после <br>) */
.news-item > br {
    display: none;
}

/* ---- Адаптив ---- */

@media (max-width: 991px) {
    .news-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .news-list {
        grid-template-columns: 1fr;
        padding: 16px 16px 40px;
    }

    .stati-page__title {
        font-size: 24px;
    }
}

/* =========================================================
   /stati/slug/ — детальная страница статьи
   ========================================================= */

.stati-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.stati-detail__back {
    display: inline-block;
    font-size: 14px;
    color: #0069FF;
    text-decoration: none;
    margin-bottom: 32px;
}

.stati-detail__back:hover {
    text-decoration: underline;
}

.stati-detail__title {
    font-family: 'Gilroy', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #343650;
    line-height: 1.25;
    margin: 0 0 12px;
}

.stati-detail__date {
    font-size: 13px;
    color: #999;
    margin-bottom: 32px;
}

.stati-detail__image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 32px;
    display: block;
}

.stati-detail__text {
    font-size: 16px;
    line-height: 1.75;
    color: #343650;
}

.stati-detail__text h2 {
    font-family: 'Gilroy', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #343650;
    margin: 40px 0 12px;
}

.stati-detail__text p {
    margin: 0 0 16px;
}

.stati-detail__text ul,
.stati-detail__text ol {
    padding-left: 20px;
    margin: 0 0 16px;
}

.stati-detail__text li {
    margin-bottom: 8px;
}

.stati-detail__text table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}

.stati-detail__text th,
.stati-detail__text td {
    padding: 10px 16px;
    border: 1px solid #e0e4f0;
    text-align: left;
}

.stati-detail__text th {
    background: #f4f6fb;
    font-weight: 700;
    color: #343650;
}

.stati-detail__text a {
    color: #0069FF;
}

@media (max-width: 575px) {
    .stati-detail__title {
        font-size: 24px;
    }
}

/* End */


/* Start:/local/templates/.default/components/bitrix/news.list/stati-list/style.css?17812936683229*/
/* =========================================================
   /stati/ — список статей
   ========================================================= */

.stati-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* Заголовок страницы */
.stati-page__title {
    font-family: 'Gilroy', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #343650;
    margin: 0 0 8px;
}

.stati-page__subtitle {
    font-size: 15px;
    color: #666666;
    margin: 0 0 36px;
}

/* Сетка карточек */
.stati-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .stati-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .stati-grid {
        grid-template-columns: 1fr;
    }

    .stati-page__title {
        font-size: 24px;
    }
}

/* Карточка */
.stati-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 105, 255, 0.07);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.stati-card:hover {
    box-shadow: 0 6px 24px rgba(0, 105, 255, 0.15);
    transform: translateY(-3px);
}

/* Картинка */
.stati-card__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background-color: #E9F2F9;
}

.stati-card__image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #E9F2F9 0%, #d0e6f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stati-card__image-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.3;
}

/* Тело карточки */
.stati-card__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Дата */
.stati-card__date {
    font-size: 12px;
    font-weight: 500;
    color: #999999;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

/* Заголовок */
.stati-card__title {
    font-family: 'Gilroy', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #343650;
    margin: 0 0 10px;
    line-height: 1.35;
}

.stati-card:hover .stati-card__title {
    color: #0069FF;
}

/* Превью-текст */
.stati-card__preview {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Ссылка "Читать" */
.stati-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #007BFF;
    text-decoration: none;
    transition: color 0.15s ease;
}

.stati-card__link::after {
    content: '→';
    transition: transform 0.15s ease;
}

.stati-card:hover .stati-card__link {
    color: #0069FF;
}

.stati-card:hover .stati-card__link::after {
    transform: translateX(3px);
}

/* Пустой список */
.stati-empty {
    text-align: center;
    padding: 80px 20px;
    color: #999;
    font-size: 16px;
}

/* End */
/* /local/css/stati.css?17815110521620 */
/* /local/templates/Flat_template/components/bitrix/news/test-news/style.css?17812936683879 */
/* /local/templates/.default/components/bitrix/news.list/stati-list/style.css?17812936683229 */
