.other-news-slider {
	padding: 40px var(--layout-side-padding);
	max-width: 1920px;
	margin: 0 auto;
}

.other-news-slider__title {
	font-family: var(--desktop-h4-font-family);
  font-weight: var(--desktop-h4-font-weight);
  font-size: var(--desktop-h4-font-size);
  line-height: var(--desktop-h4-line-height);
  letter-spacing: var(--desktop-h4-letter-spacing);
	color: #000;
	margin-bottom: 40px;
}

.other-news-slider__wrapper {
	overflow: hidden;
	position: relative;
}

.other-news-slider__track {
	display: flex;
	gap: 20px;
	transition: transform 0.4s ease;
}

.other-news-slider__slide {
	flex-shrink: 0;
	width: calc(25% - 15px);
}

/* Адаптивность */
/* 3 колонки: от 1025 до 1439 */
/* 3 колонки: от 1025 до 1440 включительно */
@media (min-width: 1025px) and (max-width: 1440px) {
	.other-news-slider__slide {
		width: calc(33.333% - 13.333px);
	}
}

/* 2 колонки: от 768 до 1024 включительно */
@media (min-width: 768px) and (max-width: 1024px) {
	.other-news-slider__slide {
		width: calc(50% - 10px);
	}
}

/* 1 колонка: до 767 */
@media (max-width: 767px) {
	.other-news-slider__slide {
		width: 100%;
	}
}

/* Карточка */
.other-news-slider__card {
	border: 1px solid #eee;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.other-news-slider__figure {
	display: block;
	width: 100%;
	line-height: 0;
}

.other-news-slider__image {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 504 / 270;
	object-fit: cover;
}

.other-news-slider__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
}

.other-news-slider__date {
	font-size: 12px;
	color: #888;
	display: block;
	margin-bottom: 8px;
}

.other-news-slider__title-card {
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 16px 0;
	line-height: 1.4;
}

.other-news-slider__link {
	color: #000;
	text-decoration: none;
}
.other-news-slider__link:hover {
	color: #009D72;
}

/* Кнопки поделиться */
.other-news-slider__share {
	display: flex;
	align-items: center;
	gap: 8px;
}

.other-news-slider__share-btn {
	width: 24px;
	height: 24px;
	background: #fff;
	border: none;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
}

.other-news-slider__share-extra {
	display: none;
	gap: 4px;
	margin-left: 8px;
	opacity: 0;
	transform: translateX(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.other-news-slider__share[data-expanded="true"] .other-news-slider__share-extra {
	opacity: 1;
	transform: translateX(0);
	display: flex;
}

/* Стрелки */
/*button{
    border: none !important;
	background: none !important;
	padding: 0 !important;
}*/
.other-news-slider__nav {
	display: flex;
	justify-content: center;
	/*gap: 10px;*/
	margin-top: 30px;
}

.other-news-slider__arrow {
	/*width: 40px;
	height: 40px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;*/
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	/*transition: background 0.2s;*/
}
/*.other-news-slider__arrow:hover {
	background: #f5f5f5;
}*/
.other-news-slider__arrow svg {
	width: 54px;
	height: 54px;
}
.other-news-slider__arrow svg:hover {opacity: 0.5;}

/* Кнопка "Все новости" */
.other-news-slider__footer {
	text-align: center;
	margin-top: 40px;
}

.other-news-slider__btn-all {
	display: inline-block;
	padding: 12px 24px;
	font-size: 14px;
	line-height: 1.5;
	text-decoration: none;
	border: 1px solid #009D72;
	color: #009D72;
	border-radius: 3px;
	transition: all 0.2s ease;
}
.other-news-slider__btn-all:hover {
	background: #009D72;
	color: #fff;
}
.other-news-slider__card{
	border-radius: 4px;
}