.testimonial {
	.single_post_list {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--gap-xl);
	}
	.post_tags {
		justify-content: center;
		.location {
			background-color: var(--primary);
			color: var(--white);
		}
		.author {
			background-color: var(--tertiary);
		}
	}
	.single_post {
		text-align: center;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: var(--gap-s);
		.post_thumb {
			display: inline-block;
			aspect-ratio: auto;
			padding: 10px 12px;
			background: var(--white);
			border-radius: var(--border-radius-m);
			img {
				width: auto;
				height: 50px;
			}
		}
		.post_data {
			padding: 0;
		}
		.wp_content {
			* {
				color: var(--white);
			}
		}
	}
}
@media (width < 1200px) {
	.testimonial {
		.single_post_list {
			grid-template-columns: repeat(1, 1fr);
			gap: 60px;
		}
	}
}