#stories {
	padding: 96px;
	padding-left: 192px;
	background: var(--uulblue);
	overflow: hidden;
}

#stories h2 {
	font-size: 40px;
	font-family: "Cachet Book", sans-serif;
}

#stories h3 {
	font-size: 25px;
	font-family: "Cachet Extra Light", sans-serif;
	color: var(--dgrey);
	margin-top: 16px;
	margin-bottom: 48px;
}

#stories .nav-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#stories .nav-row .stories-nav {
	display: flex;
	font-size: 75px;
}

#stories .nav-row .stories-nav .icon {
	color: var(--dgrey);
	margin-left: 16px;
	cursor: pointer;
}

#stories .member-story {
	display: flex;
}

#stories .member-story .image-side {
	width: 400px;
}

#stories .member-story .image-side img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#stories .member-story .content-side {
	width: calc(100% - 400px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 48px;
	padding-bottom: 96px;
	background: white;
}

#stories .member-story .content-side h3 {
	margin-bottom: 0;
}

#stories .member-story .content-side p {
	font-size: 40px;
	font-family: "Cachet Book", sans-serif;
	line-height: 1.2;
	margin-bottom: 32px;
}

#stories .stories-button-row {
	display: flex;
	justify-content: flex-end;
	margin-top: 32px;
}

#stories .splide__pagination {
	width: fit-content;
	margin: 0;
	margin-left: calc(400px + 50px);
	transform: translateY(-56px);
	position: absolute;
	display: flex;
	padding-left: 0;
	list-style: none;
	bottom: 0;
}

#stories .splide__pagination li button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mblue);
	margin-right: 16px;
	opacity: 0.5;
}

#stories .splide__pagination li button.is-active {
	opacity: 1;
	transform: unset;
}

#stories .splide__pagination button {
	opacity: 0;
}

#stories .splide {
	background: white;
	border-radius: 10px;
	overflow: hidden;
}

@media (max-width: 1600px) {
	#stories {
		padding-left: 96px;
	}
	#stories .member-story .content-side p {
		font-size: 30px;
	}
}
@media (max-width: 1200px) {
	#stories h3 {
		font-size: 20px;
	}
	#stories {
		padding: 64px 32px;
	}
	#stories .nav-row .stories-nav .icon {
		font-size: 60px;
	}
}
@media (max-width: 768px) {
	#stories .stories-button-row {
		justify-content: center;
	}
	#stories .member-story {
		flex-direction: column;
	}
	#stories h2 {
		font-size: 30px;
	}
	#stories .member-story .content-side p {
		font-size: 20px;
	}
	#stories .member-story .image-side,
	#stories .member-story .content-side {
		width: 100%;
	}
	#stories .member-story .image-side img {
		aspect-ratio: 16/9;
		object-fit: cover;
	}
	#stories h3 {
		font-size: 15px;
	}
	#stories .glider-track h3 {
		margin-bottom: 32px;
		margin-top: 0;
	}
	#stories .member-story .content-side {
		padding-bottom: 80px;
		height: 100%;
	}
	#stories .splide__pagination {
		margin-left: 50px;
	}
	#stories .nav-row .stories-nav .icon {
		font-size: 40px;
	}
}
