

/* Start:/local/templates/styledent/components/bitrix/news/articles/bitrix/news.detail/.default/style.css?17816860593082*/
.article-detail {}

.article-detail__upper {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}

.article-detail__image {
	flex-shrink: 0;
}

.article-detail__image img {
	max-width: 100%;
	border-radius: 24px;
}

.article-detail__ann {
	font-size: 20px;
	font-weight: 500;
	color: #201547;
	border-radius: 24px;
	background: #F7F7F7;
	padding: 30px;
	line-height: 1.6;
}

.article-detail__author {
	font-size: 18px;
	margin: 40px 0;
}

.article-detail__author-header {
	color: #000;
	font-weight: 500;
	margin-bottom: 20px;
}

.article-detail__author-info {
	line-height: 27px;
}

.article-detail__author-info a {
	color: #0202b3;
	text-decoration: none;
}

.article-detail__author-info a:hover {
	text-decoration: underline;
}


.article-detail__links {
	margin: 30px 0;
}

.article-detail__links-item {
	margin-bottom: 10px;
}

@media (max-width: 540px) {
	.article-detail__upper {
		flex-direction: column;
	}
	
	.article-detail__image img {
		border-radius: 16px;
	}

	.article-detail__ann {
		border-radius: 16px;
		font-size: 16px;
		padding: 20px;
	}
}

/* ===== FAQ в статье (микроразметка FAQPage + аккордеон) 2026-06-17 ===== */
.article-detail__faq {
	margin: 50px 0;
	padding: 40px 30px;
	background: #F7F7F7;
	border-radius: 24px;
}

.article-detail__faq-title {
	margin: 0 0 30px;
	font-size: 28px;
	font-weight: 600;
	color: #201547;
}

.article-faq__item {
	margin-bottom: 20px;
	border-radius: 24px;
	padding: 30px;
	background: #fff;
}

.article-faq__item:last-child {
	margin-bottom: 0;
}

.article-faq__item.is-hidden {
	display: none;
}

.article-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-size: 22px;
	font-weight: 600;
	color: #201547;
	cursor: pointer;
}

.article-faq__q:after {
	display: flex;
	align-items: center;
	justify-content: center;
	content: '+';
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	font-size: 34px;
	font-weight: 300;
	line-height: 1;
	color: #5C068C;
	background: #F3DFFF;
	border-radius: 50%;
	transition: .2s;
}

.article-faq__q:hover:after {
	color: #fff;
	background: #5C068C;
}

.article-faq__item.is-open .article-faq__q:after {
	content: '\2212'; /* minus */
}

.article-faq__a {
	display: none;
	padding-top: 20px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	color: #201547cc;
}

.article-faq__item.is-open .article-faq__a {
	display: block;
}

.article-faq__more {
	margin-top: 30px;
	padding: 16px 34px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: #5C068C;
	border: 0;
	border-radius: 14px;
	cursor: pointer;
}

.article-faq__more:hover {
	opacity: .9;
}

@media screen and (max-width: 768px) {
	.article-detail__faq {
		padding: 30px 16px;
	}

	.article-faq__item {
		padding: 22px 18px;
	}

	.article-faq__q {
		font-size: 18px;
	}

	.article-faq__q:after {
		width: 36px;
		height: 36px;
		font-size: 28px;
	}
}
/* End */


/* Start:/local/templates/styledent/components/bitrix/news.list/other-news/style.css?17734195422767*/
.other-news {
	margin-top: 40px;
}

.other-news__title {
	color: #201547;
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 30px;
	line-height: 1;
}

.news-list__row {
    opacity: 1;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-list__item {
    height: auto;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
}

.news-list__item-swiper {
    width: 100%;
    height: 330px;
}

.news-list__item-bottom {
    background: #F5F5F5;
    padding: 20px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.news-list__item-date {
    background: transparent;
    letter-spacing: unset;
    font-size: 14px;
    color: #0A0A0A;
    font-weight: 500;
    border: 1px solid #0A0A0A14;
    margin: 0 0 10px 0;
    padding: 6px 12px;
    border-radius: 100px;
}
.news-list__item-swiper img {
    width: 100%;
}
.news-list__item-name {
    font-size: 24px;
    font-weight: 600;
    color: #0A0A0A;
    line-height: 1.2;
    min-height: 58px;
    margin-bottom: 20px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    box-orient: vertical;
}
.news-list__item-link {
    font-size: 16px;
    font-weight: 600;
    color: #0A0A0A;
}
.news-list__item-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9;
}
.news-list__item-nav-item {
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    cursor: pointer;
    transition: .3s ease;
}
.news-list__item-nav-item.swiper-button-disabled {
    cursor: default;
    opacity: .5;
}
.swiper-button-lock {
    display: none;
}

.other-news__button {
	display: flex;
	margin-top: 30px;
}

.other-news__button a {
	gap: 10px;
	font-weight: 600;
} 

@media (max-width: 1000px) {
	.news-list {
		grid-template-columns: repeat(2, 1fr);
	}	
}

@media (max-width: 800px) {
	.news-list__item-swiper {
		height: 230px;
	}
	
	.news-list__item-bottom {
		padding: 20px;
	}
	
	.news-list__item-name {
		font-size: 20px;
	}
	
	.news-list__item {
		border-radius: 16px;
	}	
	
	.other-news__title {
		font-size: 32px;
	}
}

@media (max-width: 540px) {
	.news-list {
		display: flex;
		overflow: scroll;
	}	
	
	.news-list__item {
		width: 80%;
		flex-shrink: 0;
	}
}
/* End */
/* /local/templates/styledent/components/bitrix/news/articles/bitrix/news.detail/.default/style.css?17816860593082 */
/* /local/templates/styledent/components/bitrix/news.list/other-news/style.css?17734195422767 */
