.PageCarouselArtists {
	display: block;
	width: 100%;
	display: flex;
	flex-direction: column;
	font-size: 1rem;

	& ul.carousel {
		gap: 0;
		padding: 0;
		margin: 0;
		box-sizing: border-box;
	}
	& ul.carousel>li {
		aspect-ratio: 1 / 1.7;
		box-sizing: border-box;
		padding: 0;
	}
	& .list_item_container {
		width: 280px;
		height: 485px;
		display: block;
		margin: 10px 10px auto auto;
		transition: all 0.3s ease-in-out;
		padding: 10px;
		box-sizing: border-box;
		border-radius: 10px;
		cursor: pointer;
		position: relative;
		&:hover {
			box-shadow: 0 4px 10px rgba(0, 0, 0, 0.55);
			background-color: #FFF;
		}
		& .x4Square {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			grid-template-rows: repeat(2, 1fr);
			gap: 1rem;
			width: 100%;
			aspect-ratio: 1/1;
			&>span {
				background-color: #000;
				overflow: hidden;
				aspect-ratio: 1/1;
				& img {
					width: 100%;
					height: 100%;
					object-fit: cover;
					vertical-align: top;
					border: none;
					transition: all 0.3s ease-in-out;
				}
				&:hover img {
					scale: 1.2;
				}
			}
		}
		& .content {

			width: 100%;
			aspect-ratio: 1 / 0.83;
			display: block;
			overflow: hidden;
			position: relative;
			margin: .8rem 0 0 0;
			font-size: 1rem;
			& > div {
				display: flex;
				flex-direction: column;
				box-sizing: border-box;

				overflow-y: hidden;
			}
			& .artist-name {
				text-transform: uppercase;
				font-weight: 600;
				font-size: 1.1em;
				width: 100%;
				height: 1.25em;
				position: relative;
				z-index: 5;
				white-space: nowrap;
				overflow: hidden;
				text-overflow: ellipsis;
			}
			& .artist-country {
				position: relative;
				font-size: 1em;
				position: relative;
				height: 1.3rem;
				font-weight: 500;
			}
			& .artStyles {
				position: relative;
				width: 100%;
				height: 2.65em;
				font-size: 0.9em;
				z-index: 5;
				padding: 2px 0 0 0;
				font-style: italic;
				display: block;
				line-height: 1.2;
				&::before {
					display: block;
					width: 35px;
					height: 10px;
					content: " ";
					float: right;
				}
			}
			& .about-artist {
				line-height: 1.41;
				width: 100%;
				font-size: 0.97em;
				height: 7.4rem;
				padding: 5px 0 0 0;
				overflow: hidden;
				display: -webkit-box;
				-webkit-line-clamp: 5;
				line-clamp: 5;
				-webkit-box-orient: vertical;
				& * {
					padding: 0;
					margin: 0;
				};
			};
			& img {
				position: absolute;
				display: block;
				width: 20%;
				border-radius: 50%;
				height: auto;
				right: 0;
				top: 0;
				object-fit: cover;
				aspect-ratio: 1 / 1;
				transition: all 0.2s ease-in-out;
			}
		}
		& .readmore {
			position: absolute;
			bottom: 8px;
			left: 0;
			font-size: 0.8rem;
			font-weight: 600;
			&::before {
				content: " ";
				width: .8em;
				height: .8em;
				display: inline-block;
				background-color: #000;
				margin: 0 .5em 0;
				border-radius: 50%;
				position: relative;
				top: 0.08em;
			}
		}
	}
	& scalable-to-parent {
		width: 296px;
		height: auto;
	}
	&>.carousel {
		padding: 0;
		font-size: 0.75rem;
	}
	& a {
		color: var(--font_color_main);
		text-decoration: none;
	}
}