

/* Start:/bitrix/templates/osoznanie/components/bitrix/news.detail/blog_article/style.css?17707492485670*/
/* Блок содержание + автор */
.service-toc-author {
    margin-top: 32px;
    margin-bottom: 48px;
}

.toc-author-block {
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.toc-list {
    list-style: none;
    counter-reset: toc-counter;
    padding: 0;
    margin: 0;
}

.toc-list__item {
    counter-increment: toc-counter;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.toc-list__item::before {
    content: counter(toc-counter) ".";
    font-weight: 700;
    color: #c82333;
    font-size: 1.1rem;
    min-width: 24px;
}

.toc-list__link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.toc-list__link:hover {
    color: #c82333;
}

/* Карточка автора */
.author-card {
    height: 100%;
}

.author-card__photo {
    object-fit: cover;
    flex-shrink: 0;
}

.author-card__name {
    font-size: 1.1rem;
}

/* Контентные блоки блога */
.blog-content-block {
    margin-top: 48px;
    margin-bottom: 48px;
}

.blog-content-block .article-content h2 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.blog-content-block .article-content h2:first-child {
    margin-top: 0;
}

/* Блок эксперта */
.expert-check-card {
    background: linear-gradient(135deg, #e8f4fc, #d4ecf9);
    border-radius: 20px;
    padding: 32px;
}

.expert-check-card__photo-wrapper {
    position: relative;
    text-align: center;
}

.expert-check-card__photo {
    width: 160px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.expert-check-card__experience {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #5b4fff;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.expert-check-card__label {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.expert-check-card__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 4px;
}

.expert-check-card__position {
    color: #333;
    font-size: 1rem;
}

.expert-check-card__date-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.expert-check-card__date {
    color: #c82333;
    font-size: 1.1rem;
    font-weight: 600;
}

/* FAQ */
.faq-item {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item__header {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.2s;
}

.faq-item__header:hover {
    background: #f8f9fa;
}

.faq-item__question {
    font-weight: 600;
    font-size: 1rem;
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background: #333;
    transition: transform 0.2s;
}

.faq-item__icon::before {
    width: 2px;
    height: 12px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-item__icon::after {
    width: 12px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-item__header[aria-expanded="true"] .faq-item__icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__body {
    border-top: 1px solid #dee2e6;
}

.faq-item__answer {
    padding: 16px 20px;
    color: #6c757d;
    line-height: 1.6;
}

/* Блок помощь (телефон + WhatsApp) */
.help-cta-block {
    background: linear-gradient(135deg, #e8ecf3, #d8e0eb);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.help-cta-block__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 500px;
}

.help-cta-block__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.help-cta-block .btn-outline-dark {
    border: 2px solid #333;
    color: #333;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 30px;
    background: transparent;
}

.help-cta-block .btn-outline-dark:hover {
    background: #333;
    color: #fff;
}

.help-cta-block .btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.help-cta-block .btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
}

.help-cta-block__img {
    max-height: 300px;
    object-fit: contain;
}

/* Адаптив */
@media (max-width: 991px) {
    .expert-check-card {
        padding: 24px;
    }
    
    .expert-check-card__photo {
        width: 120px;
        height: 150px;
    }
    
    .expert-check-card__name {
        font-size: 1.25rem;
    }
    
    .help-cta-block {
        padding: 32px;
    }
    
    .help-cta-block__title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .service-toc-author {
        margin-top: 24px;
        margin-bottom: 32px;
    }
    
    .toc-author-block {
        padding: 24px !important;
    }
    
    .blog-content-block {
        margin-top: 32px;
        margin-bottom: 32px;
    }
    
    .expert-check-card__date-label,
    .expert-check-card__date {
        text-align: left;
        margin-top: 16px;
    }
    
    .help-cta-block {
        padding: 24px;
    }
    
    .help-cta-block__buttons {
        flex-direction: column;
    }
    
    .help-cta-block__buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* End */


/* Start:/bitrix/templates/osoznanie/components/bitrix/news.list/blog_slider/style.css?1770749256874*/
/* Блог - слайдер статей */

.blog-slider__item {
    padding: 0 8px;
}

.blog-slider__item .blog-card {
    transition: all 0.3s ease-out;
}

.blog-slider__item .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.blog-slider__item .blog-card__image {
    aspect-ratio: 3/2;
    overflow: hidden;
}

.blog-slider__item .blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
}

.blog-slider__item .blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-slider__item .blog-card__title a {
    color: var(--black-2);
    text-decoration: none;
}

.blog-slider__item .blog-card__title a:hover {
    color: var(--main-1);
}

#blog_slider.owl-carousel .owl-nav {
    position: absolute;
    top: -56px;
    right: 0;
}


/* End */
/* /bitrix/templates/osoznanie/components/bitrix/news.detail/blog_article/style.css?17707492485670 */
/* /bitrix/templates/osoznanie/components/bitrix/news.list/blog_slider/style.css?1770749256874 */
