

/* Start:/bitrix/templates/general-laser/components/bitrix/news/articles/bitrix/news.detail/.default/style.css?1747632838755*/
div.news-detail {
	word-wrap: break-word;
}

div.news-detail img.detail_picture {
	float:left;
	margin:0 8px 6px 1px;
}

.news-date-time {
	color:#486DAA;
}

.toc {
	margin-bottom: 3rem;
	padding-left: 1rem;
}

.toc > b {
	display: block;
	margin: 1rem 0;
}

.toc > ul {
	list-style-type: none;
}

.toc > ul > li {
	margin: 8px 0;
}

.toc > ul > li > a,
.news-detail > p > a,
.news-detail li > a {
	color: #f65f1f;
	text-decoration: none;
}


/*/////*/
.flex-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding-bottom: 10px;
}
.text-section {
	flex: 1;
	margin: 5px;
}
.article-container {
	display: flex;
	align-items: center;
}
.author-image {
	width: 50px;
	height: auto;
	margin-right: 10px;
}
/* End */


/* Start:/bitrix/templates/general-laser/components/bitrix/news.list/main_aricles_slider_new1/style.css?17751938386237*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}
/* Основные стили для слайдера материалов */
.custom-slider-section {
	margin: 50px auto;
	max-width: 1400px;
	padding: 0 20px;
	position: relative;
}

/* Заголовок секции */
.section-top {
	margin-bottom: 40px;
}

.section-top__title {
	margin: 0;
	font-weight: 700;
	position: relative;
	display: inline-block;
}

.section-top__title:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #ff9800, #ffcd7e);
	border-radius: 2px;
}

/* Контейнер слайдера */
.slider-container {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}

.slider-wrapper {
	display: flex;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	gap: 30px;
}

/* Слайд */
.slider-slide {
	flex: 0 0 calc(25% - 22.5px); /* 4 слайда на десктопе */
	min-width: 0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Карточка блога */
.blog_item {
	height: 100%;
}

.item {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Изображение */
.img {
	position: relative;
	overflow: hidden;
	background: #f5f5f5;
}

.img img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.item:hover .img img {
	transform: scale(1.05);
}

/* Информация о блоге */
.blog_info {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.info {
	flex: 1;
	margin-bottom: 15px;
}

.name {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
	text-decoration: none;
	line-height: 1.4;
	transition: color 0.3s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.name:hover {
	color: #ff9800;
}

.date-label {
	font-size: 13px;
	color: #999;
	padding-top: 12px;
	border-top: 1px solid #f0f0f0;
	margin-top: auto;
}

/* Навигация */
.slider-nav-container {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 40px;
}

.slider-nav {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #ff9800;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
	background: #ff9800;
	transform: scale(1.1);
}

.slider-nav:hover svg {
	stroke: #fff;
}

.slider-nav svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: #ff9800;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: stroke 0.3s ease;
}

/* ========== АДАПТИВНОСТЬ ========== */

/* Планшеты и маленькие ноутбуки (992px - 1199px) */
@media (max-width: 1199px) {
	.slider-slide {
		flex: 0 0 calc(33.333% - 20px); /* 3 слайда */
	}

	.img img {
		height: 200px;
	}
}

/* Планшеты вертикальные (768px - 991px) */
@media (max-width: 991px) {
	.custom-slider-section {
		padding: 0 15px;
	}

	.slider-slide {
		flex: 0 0 calc(50% - 15px); /* 2 слайда */
	}

	.section-top__title {
		font-size: 40px !important;
	}

	.section-top__title:after {
		width: 50px;
		bottom: -8px;
	}
}

/* Мобильные устройства (576px - 767px) */
@media (max-width: 767px) {
	.custom-slider-section {
		margin: 30px auto;
	}

	.slider-wrapper {
		gap: 20px;
	}

	.slider-slide {
		flex: 0 0 calc(100% - 0px); /* 1 слайд */
	}

	.img img {
		height: 200px;
	}

	.blog_info {
		padding: 15px;
	}

	.name {
		font-size: 16px;
	}

	.section-top__title {
		font-size: 32px !important;
	}

	.section-top__title:after {
		width: 40px;
		height: 2px;
	}

	.slider-nav {
		width: 40px;
		height: 40px;
	}

	.slider-nav svg {
		width: 20px;
		height: 20px;
	}

	.slider-nav-container {
		gap: 12px;
		margin-top: 30px;
	}
}

/* Маленькие мобильные устройства (до 575px) */
@media (max-width: 575px) {
	.custom-slider-section {
		padding: 0 12px;
		margin: 20px auto;
	}

	.section-top {
		margin-bottom: 25px;
	}

	.section-top__title {
		font-size: 24px !important;
	}

	.img img {
		height: 180px;
	}

	.blog_info {
		padding: 12px;
	}

	.name {
		font-size: 15px;
	}

	.date-label {
		font-size: 12px;
		padding-top: 10px;
	}

	.slider-nav {
		width: 36px;
		height: 36px;
		border-width: 1.5px;
	}

	.slider-nav svg {
		width: 18px;
		height: 18px;
	}

	.slider-nav-container {
		gap: 10px;
		margin-top: 25px;
	}
}

/* Для очень больших экранов (от 1400px) */
@media (min-width: 1400px) {
	.custom-slider-section {
		max-width: 1400px;
	}

	.slider-slide {
		flex: 0 0 calc(25% - 22.5px);
	}
}

/* Анимация загрузки (опционально) */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.slider-slide {
	animation: fadeIn 0.5s ease forwards;
}

/* Стили для кнопок навигации при отключенном состоянии (опционально) */
.slider-nav:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none;
}

.slider-nav:disabled:hover {
	background: #fff;
	transform: none;
}

.slider-nav:disabled:hover svg {
	stroke: #ff9800;
}

/* Стили для touch-устройств */
@media (hover: none) {
	.item:hover {
		transform: none;
	}

	.item:hover .img img {
		transform: none;
	}

	.slider-nav:hover {
		transform: none;
	}
}

/* Поддержка темной темы (опционально) */
@media (prefers-color-scheme: dark) {
	.item {
		background: #1e1e1e;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	}

	.name {
		color: #ffffff;
	}

	.date-label {
		color: #aaa;
		border-top-color: #333;
	}

	.slider-nav {
		background: #1e1e1e;
		border-color: #ff9800;
	}

	.img {
		background: #2a2a2a;
	}
}
/* End */
/* /bitrix/templates/general-laser/components/bitrix/news/articles/bitrix/news.detail/.default/style.css?1747632838755 */
/* /bitrix/templates/general-laser/components/bitrix/news.list/main_aricles_slider_new1/style.css?17751938386237 */
