/* stylelint-disable */
.c-text-quote {
	display: flex;
	flex-direction: column;
}

@media (min-width: 1024px) {
	.c-text-quote {
		flex-direction: row;
	}
}

@media (min-width: 1024px) {
	.c-text-quote__block {
		width: 50%;
		aspect-ratio: 1;
	}
}

.c-text-quote__text {
	padding: 2rem 1rem;
}

@media (min-width: 1024px) {
	.c-text-quote__text {
		padding: 3rem 3rem 3rem 2rem;
	}
}

.c-text-quote__quote {
	height: 100%;
	background-color: var(--color-blue-1);
	padding: 3rem;
	margin: 0;
}

@media (min-width: 1024px) {
	.c-text-quote__quote {
		padding: 4rem;
	}
}

@media (min-width: 1440px) {
	.c-text-quote__quote {
		padding: 6rem;
	}
}

.c-text-quote__quote-text {
	margin: 0;
	color: var(--color-white);
	font-family: var(--font-family-accent);
	font-weight: var(--font-weight-regular);
	font-size: var(--font-size-36);
	line-height: 1.1;
}

@media (min-width: 1024px) {
	.c-text-quote__quote-text {
		font-size: var(--font-size-46);
	}
}

@media (min-width: 1440px) {
	.c-text-quote__quote-text {
		font-size: var(--font-size-60);
	}
}

.c-text-quote__quote-mark {
	color: var(--color-orange);
}

.c-text-quote__quote-author {
	margin-top: 2rem;
}

@media (min-width: 1024px) {
	.c-text-quote__quote-author {
		margin-top: 4rem;
	}
}

.c-text-quote__quote-author-name {
	color: var(--color-white);
	font-family: var(--font-family-accent);
	font-weight: var(--font-weight-regular);
	font-size: var(--font-size-24);
}

@media (min-width: 1024px) {
	.c-text-quote__quote-author-name {
		font-size: var(--font-size-30);
	}
}

@media (min-width: 1440px) {
	.c-text-quote__quote-author-name {
		font-size: var(--font-size-40);
	}
}

.c-text-quote__quote-author-title {
	margin-top: 0.5em;
	color: var(--color-orange);
	font-weight: var(--font-weight-bold);
	font-size: var(--font-size-14);
}

@media (min-width: 1024px) {
	.c-text-quote__quote-author-title {
		font-size: var(--font-size-16);
	}
}

@media (min-width: 1440px) {
	.c-text-quote__quote-author-title {
		font-size: var(--font-size-18);
	}
}

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