.simple-card__container {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 2rem;
}

.simple-card {
	position: relative;
	transition: all .2s ease-out;
	cursor: pointer;
	/* width: fit-content; */
	/* height: fit-content; */
	/* overflow: hidden; */
}



.simple-card__content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
	background-position: center;
	background-size: cover;
	opacity: 0;
	transition: all .2s ease-out;
}

.simple-card__content:hover{
	opacity: 1;
}

.simple-card__age-limit {
	position: absolute;
	top: 0;
	right: 0;
	padding: 1rem;
	font-weight: bold;
	color: var(--text-color-emphasis);
	filter: brightness(1.3);
}

.simple-card__top-side {
	width: clamp(15rem, 21vw, 23.5rem);
	height: clamp(10rem, 14vw, 14.5rem);
	/* width: 100%; */

}

.simple-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 7px;
}

.simple-card__title {
	font-size: 1.3rem;
	overflow: hidden; 
	text-overflow: ellipsis;
	display: -webkit-box; 
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	width: clamp(15rem, 21vw, 27.5rem);
}

.simple-card:hover .simple-card__title {
	color: var(--text-color-emphasis);
	filter: brightness(1.2) drop-shadow(0 0 7px rgba(0, 253, 21, 0.7));
  }

/* Обёртка слайдера */
.simple-slider__wrapper {
	position: relative;
    }
    
    /* Контейнер слайдера */
    .simple-slider__container {
	position: relative;
	overflow: visible;
	width: 100%;
    }
    
    /* Трек слайдера */
    .simple-slider__track {
	display: flex;
	transition: transform 0.3s ease;
	gap: 20px;
    }
    
    /* Кнопки навигации */
    .simple-slider-prev,
    .simple-slider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	padding: 10px;
	cursor: pointer;
	z-index: 10;

	height: 100%;
	min-width: 7rem;
	width: fit-content;
    }
    .simple-slider-prev {
	left: -5%;
    }
    .simple-slider-next {
	right: -5%;
    }
    
    /* Элементы эффекта затемнения */
    .simple-slider__fade {
	position: absolute;
	top: 0;
	width: 15vw;
	height: 100%;
	pointer-events: none;
	z-index: 6;
    }
    .simple-slider__fade-left {
	left: 0;
	transform: translateX(-50%);
	background: linear-gradient(to right, rgba(0, 0, 0, 1), transparent);
    }
    .simple-slider__fade-right {
	right: 0;
	transform: translateX(50%);
	background: linear-gradient(to left, rgba(0, 0, 0, 1), transparent);
    }
    