

/* Start:/bitrix/components/bitrix/breadcrumb/templates/.default/style.min.css?1595478625467*/
.bx-breadcrumb{margin:10px 0}.bx-breadcrumb i{color:#b5bdc2;line-height:13px;font-size:12px;vertical-align:middle;margin-right:5px}.bx-breadcrumb .bx-breadcrumb-item{float:left;margin-bottom:10px;white-space:nowrap;line-height:13px;vertical-align:middle;margin-right:10px}.bx-breadcrumb .bx-breadcrumb-item span{font-family:"Open Sans",Arial,"Helvetica Neue",Helvetica,sans-serif;font-size:13px;white-space:normal}.bx-breadcrumb .bx-breadcrumb-item a{border-bottom:0}
/* End */


/* Start:/local/templates/plusclass/components/bitrix/news.list/flat/style.css?17760720374724*/
/* News List Component Styles */

.news-list-section {
	
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.news-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.news-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-card-media {
	position: relative;
	padding-top: 60%;
	overflow: hidden;
	background: #f5f5f5;
}

.news-card-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.news-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
	transform: scale(1.05);
}

.news-video,
.news-audio {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.news-video iframe,
.news-audio iframe {
	width: 100%;
	height: 100%;
}

.news-card-content {
	padding: 25px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.news-card-date {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--primary);
	margin-bottom: 12px;
	font-weight: 500;
}

.news-card-date svg {
	flex-shrink: 0;
}

.news-card-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--theme-color-title);
	margin: 0 0 15px 0;
	line-height: 1.4;
}

.news-card-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.news-card-title a:hover {
	color: var(--primary);
}

.news-card-text {
	font-size: 15px;
	color: var(--theme-color-main);
	line-height: 1.6;
	margin-bottom: 20px;
	flex: 1;
}

.news-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary);
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease;
	margin-top: auto;
}

.news-card-link:hover {
	gap: 12px;
	color: var(--primary-darken-1);
}

.news-card-link svg {
	transition: transform 0.3s ease;
}

.news-card-link:hover svg {
	transform: translateX(3px);
}

/* Slider Styles */
.news-slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.news-slider-container {
	position: relative;
	height: 100%;
	transition: left 0.3s ease;
}

.news-slider-slide {
	float: left;
	height: 100%;
}

.news-slider-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	color: var(--theme-color-main);
	font-size: 20px;
}

.news-slider-arrow:hover {
	background: #fff;
	color: var(--primary);
	transform: translateY(-50%) scale(1.1);
}

.news-slider-arrow-left {
	left: 15px;
}

.news-slider-arrow-right {
	right: 15px;
}

.news-slider-dots {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
	z-index: 10;
}

.news-slider-dots li {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.news-slider-dots li.active,
.news-slider-dots li:hover {
	background: #fff;
	transform: scale(1.2);
}

/* Pagination */
.news-pagination {
	text-align: center;
	margin-top: 40px;
}

/* Responsive */
@media (max-width: 1199px) {
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

@media (max-width: 991px) {
	.news-list-section {
		
	}
	
	.news-grid {
		gap: 20px;
	}
	
	.news-card-content {
		padding: 20px;
	}
	
	.news-card-title {
		font-size: 18px;
	}
	
	.news-card-text {
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.news-list-section {
		
	}
	
	.news-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.news-card-content {
		padding: 18px;
	}
	
	.news-card-title {
		font-size: 17px;
		margin-bottom: 12px;
	}
	
	.news-card-text {
		font-size: 13px;
		margin-bottom: 15px;
	}
	
	.news-card-date {
		font-size: 12px;
		margin-bottom: 10px;
	}
	
	.news-slider-arrow {
		width: 35px;
		height: 35px;
		font-size: 18px;
	}
	
	.news-slider-arrow-left {
		left: 10px;
	}
	
	.news-slider-arrow-right {
		right: 10px;
	}
}

/* End */
/* /bitrix/components/bitrix/breadcrumb/templates/.default/style.min.css?1595478625467 */
/* /local/templates/plusclass/components/bitrix/news.list/flat/style.css?17760720374724 */
