/* stylelint-disable */
.c-quote-slider {
	position: relative;
	background-color: var(--color-gray-2);
}

.c-quote-slider__slide.swiper-slide {
	height: auto;
}

@media (min-width: 1024px) {
	.c-quote-slider__slide.swiper-slide {
		min-height: 260px;
	}
}

@media (min-width: 1440px) {
	.c-quote-slider__slide.swiper-slide {
		min-height: 360px;
	}
}

.c-quote-slider__slide-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.c-quote-slider__quote {
	max-width: 820px;
	margin: 2em 4em;
	line-height: 1.5;
	font-size: var(--font-size-14);
}

@media (min-width: 1024px) {
	.c-quote-slider__quote {
		font-size: var(--font-size-18);
	}
}

@media (min-width: 1440px) {
	.c-quote-slider__quote {
		font-size: var(--font-size-20);
	}
}

.c-quote-slider__text {
	text-align: left;
	margin-bottom: 2em;
}

.c-quote-slider__author {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1em;
}

.c-quote-slider__author-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 3em;
	max-height: 3em;
	flex-shrink: 0;
}

.c-quote-slider__author-info {
	color: var(--color-blue-1);
	font-weight: bold;
}

.c-quote-slider__button-next,
.c-quote-slider__button-prev {
	width: 1em;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: var(--z-1);
	cursor: pointer;
}

.c-quote-slider__button-next svg,
.c-quote-slider__button-prev svg {
	width: 100%;
	height: auto;
}

.c-quote-slider__button-next:hover,
.c-quote-slider__button-prev:hover {
	color: var(--color-orange);
}

.c-quote-slider__button-next:hover svg path,
.c-quote-slider__button-prev:hover svg path {
	opacity: 1;
}

@media (min-width: 0) and (max-width: 1023px) {
	.c-quote-slider__button-next svg path,
	.c-quote-slider__button-prev svg path {
		stroke-width: 1px;
	}
}

@media (min-width: 1024px) {
	.c-quote-slider__button-next,
	.c-quote-slider__button-prev {
		width: auto;
	}
}

.c-quote-slider__button-next {
	right: 0.5rem;
}

@media (min-width: 1024px) {
	.c-quote-slider__button-next {
		right: 2.75rem;
	}
}

.c-quote-slider__button-prev {
	left: 0.5rem;
}

@media (min-width: 1024px) {
	.c-quote-slider__button-prev {
		left: 2.75rem;
	}
}

/*# sourceMappingURL=quote-slider.css.map */