@import url("https://fonts.googleapis.com/css2?family=Cabin&amp;family=Roboto:wght@400;500&amp;display=swap");

.logic-block-container {
	background: #ffffff;
	box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.15);
	border-radius: 5px;
}

.logic-block-head {
	background: linear-gradient(
		359.53deg,
		rgba(255, 255, 255, 0) 12.28%,
		rgba(240, 246, 255, 0.5) 99.5%
	);
	border: 1px solid #e4e8ee;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
	padding-top: 55px;
}

.logic-block-title {
	font-family: "Cabin";
	font-style: normal;
	font-weight: 700;
	font-size: clamp(1.7rem, 3vw, 5rem);
	text-transform: capitalize;
	color: #1f1f1f;
}

.logic-block-tabs {
	display: flex;
	gap: 3rem;
}

.logic-block-tabs-item {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	color: #1f1f1f;
	padding-bottom: 1.3rem;
	cursor: pointer;
}

.logic-block-tabs-item.active {
	border-bottom: 2px solid #4285f4;
}

.logic-block-content-item {
	display: none;
}

.logic-block-content-item.active {
	display: block;
}

.logic-block-content {
	padding: 2.5rem;
	height: 400px;
	overflow: auto;
}

.ta-links-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.ta-links-container > a {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 400;
	font-size: 15px;
	color: #4285f4;
	text-decoration: none;
}

.ta-links-container > a:hover {
	color: #143f83;
}

.ta-review-boxes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1rem;
	justify-content: center;
}

.ta-review-box {
	background: #ffffff;
	border: 1px solid #d8e1e1;
	border-radius: 5px;
	padding: 20px;
	/* max-width: 350px; */
	cursor: pointer;
}

.ta-review-box:hover {
	background: #f7f7f7;
}

.ta-review-box-head {
	display: flex;
	justify-content: space-between;
}

.ta-review-box-head > img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
}
.fallback-image{
	width: 60px;
	height: 60px;
	border-radius: 50%;

}
.ta-review-box-head-title {
	flex: 1;
	margin-left: 1rem;
}

.ta-review-box-head-title > a {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 21px;
	color: #1f1f1f;
	text-decoration: none;
	word-break: break-all;
}

.ta-review-box-rating {
	display: flex;
	gap: 15px;
}

.ta-review-box-date {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
	color: #889191;
}

.ta-review-box-text {
	margin-top: 1rem;
	font-family: "Roboto";
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	color: #1f1f1f;
}

@media (max-width: 850px) {
	.ta-review-box {
		max-width: initial;
	}
}
