<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.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, 27.5rem);
	height: clamp(10rem, 14vw, 16.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);
    }
    </pre></body></html>