/**
 * testimonials_list_section.css
 *
 * Cream BG. Stacked centered serif quotes with author below. Hairline
 * divider between items.
 */

.ncm-testimonials {
	background: #FCFAF8;
	padding: 120px 0;
}

.ncm-testimonials__inner {
	max-width: 930px;
	text-align: center;
}

.ncm-testimonials__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ncm-testimonials__item {
	border-bottom: 1px solid #2F3E3440;
}

.ncm-testimonials__item:not(:first-of-type) {
	padding-top: 90px;
}

.ncm-testimonials__item {
	padding-bottom: 90px;
}

.ncm-testimonials__quote,
.ncm-testimonials__quote p {
	color: var(--clr-fg-dark);
	margin: 0 0 50px;
	font-family: var(--ff-display);
	font-weight: 400;
	font-size: 48px;
	line-height: 60px;
	letter-spacing: -2%;
	text-align: center;
}

.ncm-testimonials__author {
	font-family: var(--ff-primary);
	font-weight: 700;
	color: var(--clr-fg-dark);
	margin: 0;
	font-size: 21px;
	line-height: 24px;
	letter-spacing: 0%;
	text-align: center;
}

@media (max-width: 768px) {

	.ncm-testimonials__quote,
	.ncm-testimonials__quote p {
		font-size: 22px;
		line-height: normal;
        margin-bottom: 30px;
	}

	.ncm-testimonials {
		padding-block: 80px;
	}

	.ncm-testimonials__item {
		padding-bottom: 50px;
	}

	.ncm-testimonials__item:not(:first-of-type) {
		padding-top: 50px;
	}
}