.tcw-wrapper {
	display: flex;
	align-items: flex-start;
	position: relative;
	max-width: 900px;
	margin: 0 auto 40px;
}

.tcw-circle-col {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	    top: 68px;
    left: -64px;
}

.tcw-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: #1C87C9;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	flex-shrink: 0;
}

.tcw-card {
	position: relative;
	flex: 1;
	background-color: #E5E5E5;
	border-radius: 18px;
	padding: 35px 45px;
	margin-left: -32px;
	padding-left: 65px;
}

/* Little triangle "notch" connecting the circle to the card, like the reference image */
.tcw-card::before {
	content: "";
	position: absolute;
	top: 88px;
	left: -14px;
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-right: 14px solid #E5E5E5;
}

/* Circle on the right variant */
.tcw-circle-right {
	flex-direction: row-reverse;
}

.tcw-circle-right .tcw-card {
	margin-left: 0;
	margin-right: -32px;
	padding-left: 45px;
	padding-right: 65px;
}

.tcw-circle-right .tcw-card::before {
	left: auto;
	right: -14px;
	border-right: none;
	border-left: 14px solid #E5E5E5;
}

.tcw-stars {
	font-size: 20px;
	line-height: 1;
	margin-bottom: 12px;
	letter-spacing: -2px;
}

.tcw-star {
	display: inline-block;
}

.tcw-star.filled {
	color: #F5A623;
}

.tcw-star.empty {
	color: #C9C9C9;
}

.tcw-title {
	font-weight: 700;
	font-size: 20px;
	color: #1A1A1A;
	margin-bottom: 14px;
}

.tcw-description {
	font-size: 15px;
	color: #4A4A4A;
	margin-bottom: 10px;
}

.tcw-text {
	/*font-style: italic;
	font-size: 15px;
	line-height: 1.6;
	color: #333;*/
	font-family: Arial;
	font-style: italic;
    font-size: 17px;
    margin-bottom: 18px;
}

.tcw-author {
	font-weight: 700;
	font-style: italic;
	font-size: 15px;
	color: #1A1A1A;
}

.tcw-author-prefix {
	margin-right: 4px;
}

.tcw-author-name {
	margin-right: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
	.tcw-wrapper {
  		max-width: 600px;
	}
}	
@media (max-width: 767px) {
	.tcw-card::before {
		display: none;
	}
	
	.tcw-circle-col {
  		display: none;
	}
	.tcw-wrapper {
    	max-width: 100%;
    	margin-left: 30px;
  	}
}	
@media (max-width: 600px) {
	.tcw-wrapper {
		flex-direction: column;
		align-items: center;
		margin-left: auto;
	}

	.tcw-circle-col {
		margin-bottom: -32px;
	}

	.tcw-card {
		margin-left: 0;
		padding: 45px 24px 24px;
	}

	.tcw-card::before {
		display: none;
	}
	
	.tcw-circle-col {
  		display: none;
	}

	.tcw-circle-right .tcw-card {
		margin-right: 0;
		padding-right: 24px;
	}
}
