.block-testimonial {
	margin: 25px auto;

	.single-testimonial {
		display: flex;
		width: 100%;
		justify-content: space-between;
	    align-items: center;
	    background-color: #f2f1f2;

		.testimonial-image {
			width: 250px;
			min-height: 250px;
			height: 100%;

			img {
				width: 100%;
				height: 100%;
				min-height: 250px;
				object-fit: cover;
			}
		}
		.testimonial-text {
			width: calc(100% - 250px);
			padding: 20px 20px 20px 75px;
			min-height: 250px;
			display: flex;
			flex-direction: column;
			justify-content: center;

			.quote {
				margin-top: 35px;

				&:before {
					color: #651d32;
					font-family: 'playfair-display', serif;
					margin-bottom: 15px;
				}
			}

			.attribution p {
				font-size: 1.1em;
				margin-bottom: 0;
				line-height: 1.5;
			}
		}
	}
	&.block-full-width {
		background: #002b49;
/*		padding: 25px 0;*/

		.multi-testimonial {
			padding: 40px 0;

			h2 {
				color: #fff;
				font-weight: 500;
				font-size: 30px;
				padding: 0 30px;
				max-width: 1400px;
			}

			.testimonial-item {
				display: flex;
				justify-content: space-between;
	    		align-items: center;
	    		padding: 20px 30px 40px;

				.testimonial-text {
					color: #fff;
					padding-right: 100px;
					max-width: calc(100% - 350px);

					.quote {
						margin-top: 35px;
						color: inherit;
						font-size: 18px;

						&:before {
							color: #fff;
							font-family: 'playfair-display', serif;
							margin-bottom: 15px;
						}
					}
					.attribution p {
						font-size: 1.1em;
						margin-bottom: 0;
						line-height: 1.3;
	/*					color: inherit;*/
					}

				}
				.testimonial-image {
					width: 350px;
					height: 350px;

					img {
						object-fit: cover;
    					height: 100%;
    					width: 100%;
    					max-height: 350px;

					}

				}
				&:nth-of-type(2n) {
					flex-direction: row-reverse;

					.testimonial-text {
						padding: 0 0 0 112px;
					}
				}
			}
		}
	}

	@media (max-width: 1300px) {
		&.block-full-width .multi-testimonial .testimonial-item {

			.testimonial-text {
				padding-right: 50px;
			}
			.testimonial-image {
				padding-right: 12px;
			}
			&:nth-of-type(2n) {
				.testimonial-text {
					padding-left: 62px;
				}
				.testimonial-image {
					padding-right: 0;
				}
			}

		}

	}

	@media (max-width: 1200px) {
		.single-testimonial .testimonial-text {
			padding-left: 40px;
		}
	}

	@media (max-width: 1000px) {
		&.block-full-width .multi-testimonial .testimonial-item {
			flex-direction: column;

			.testimonial-text {
				width: 100%;
				max-width: 100%;
				padding: 20px 0;
				order: 2;
			}
			.testimonial-image {
				order: 1;
				max-width: calc(100% - 12px);
				width: auto;
			}
			&:nth-of-type(2n) {
				flex-direction: column;

				.testimonial-text {
					padding: 20px 0;
				}
			}
		}
	}
	@media (max-width: 900px) {
		.single-testimonial {
			display: block;

			.testimonial-image {
				max-width: 100%;
				width: auto;

				img {
					margin: 0 auto;
				}
			}
			.testimonial-text {
				padding: 40px 30px;
				width: 100%;
			}
		}
	}
}