.cc-dm-hs-detailed-review {
	--cc-dm-detailed-review-text: #1b1919;
	--cc-dm-detailed-review-accent: #ab2424;
	--cc-dm-detailed-review-accent-hover: #8b1316;
	--cc-dm-detailed-review-card-bg: #f6f6f6;
	--cc-dm-detailed-review-stroke: #f6f6f6;
	--cc-dm-detailed-review-white: #ffffff;
	box-sizing: border-box;
	width: 100%;
	background: var(--cc-dm-detailed-review-white);
	color: var(--cc-dm-detailed-review-text);
	font-family: Montserrat, Arial, sans-serif;
}

.cc-dm-hs-detailed-review *,
.cc-dm-hs-detailed-review *::before,
.cc-dm-hs-detailed-review *::after {
	box-sizing: border-box;
}

.cc-dm-hs-detailed-review__inner {
	width: 100%;
	max-width: 1420px;
	margin-inline: auto;
	padding-inline: 0;
}

.cc-dm-hs-detailed-review__list {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cc-dm-hs-detailed-review__card {
	display: grid;
	grid-template-columns: 188px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
	min-width: 0;
	min-height: 243px;
	padding: 20px 24px;
	background: var(--cc-dm-detailed-review-card-bg);
	border: 1px solid var(--cc-dm-detailed-review-stroke);
	border-radius: 16px;
}

.cc-dm-hs-detailed-review__logo-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 188px;
	height: 79px;
	overflow: hidden;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.cc-dm-hs-detailed-review__logo {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center center;
}

.cc-dm-hs-detailed-review__logo-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 79px;
	height: 79px;
	background: var(--cc-dm-detailed-review-stroke);
	border-radius: 999px;
	color: var(--cc-dm-detailed-review-accent);
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.cc-dm-hs-detailed-review__content {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	min-width: 0;
}

.cc-dm-hs-detailed-review__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	min-height: 34px;
}

.cc-dm-hs-detailed-review__name {
	margin: 0;
	color: var(--cc-dm-detailed-review-text);
	font-size: 28px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 34px;
	overflow-wrap: anywhere;
}

.cc-dm-hs-detailed-review__stars {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: flex-end;
	gap: 2px;
	margin-top: 5px;
	color: var(--cc-dm-detailed-review-accent);
}

.cc-dm-hs-detailed-review__star {
	position: relative;
	display: block;
	width: 24px;
	height: 24px;
	color: rgba(27, 25, 25, 0.18);
}

.cc-dm-hs-detailed-review__star::before {
	content: "\2605";
	position: absolute;
	inset: 0;
	color: currentColor;
	font-size: 24px;
	line-height: 1;
}

.cc-dm-hs-detailed-review__star--active {
	color: var(--cc-dm-detailed-review-accent);
}

.cc-dm-hs-detailed-review__text-wrap {
	width: 100%;
	min-width: 0;
	margin-top: 24px;
}

.cc-dm-hs-detailed-review__text {
	overflow: hidden;
	color: var(--cc-dm-detailed-review-text);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 20px;
	transition: height 280ms ease;
}

.cc-dm-hs-detailed-review__text p {
	margin: 0;
}

.cc-dm-hs-detailed-review__text p + p {
	margin-top: 10px;
}

.cc-dm-hs-detailed-review__text ul,
.cc-dm-hs-detailed-review__text ol {
	margin: 12px 0 0;
	padding-left: 1.25em;
}

.cc-dm-hs-detailed-review__text-panel[hidden] {
	display: none;
}

.cc-dm-hs-detailed-review__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 41px;
	margin-top: 24px;
	padding: 11px 24px;
	background: var(--cc-dm-detailed-review-accent);
	border: 1px solid var(--cc-dm-detailed-review-accent);
	border-radius: 100px;
	box-shadow: none;
	color: var(--cc-dm-detailed-review-white);
	cursor: pointer;
	font-family: Montserrat, Arial, sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 17px;
	text-align: center;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.cc-dm-hs-detailed-review__toggle:hover,
.cc-dm-hs-detailed-review__toggle:focus {
	background: var(--cc-dm-detailed-review-accent-hover);
	border-color: var(--cc-dm-detailed-review-accent-hover);
	color: var(--cc-dm-detailed-review-white);
	text-decoration: none;
}

.cc-dm-hs-detailed-review__toggle:focus-visible {
	outline: 2px solid rgba(171, 36, 36, 0.32);
	outline-offset: 4px;
}

.cc-dm-hs-detailed-review__toggle[hidden] {
	display: none;
}

@media (max-width: 800px) {
	.cc-dm-hs-detailed-review__card {
		grid-template-columns: 1fr;
		gap: 20px;
		min-height: 0;
		padding: 20px 16px;
		border-radius: 16px;
	}

	.cc-dm-hs-detailed-review__logo-wrap {
		justify-content: flex-start;
		width: 188px;
		max-width: 100%;
		height: 79px;
	}

	.cc-dm-hs-detailed-review__head {
		flex-direction: column;
		gap: 12px;
		min-height: 0;
	}

	.cc-dm-hs-detailed-review__name {
		font-size: 22px;
		line-height: 28px;
	}

	.cc-dm-hs-detailed-review__stars {
		justify-content: flex-start;
		margin-top: 0;
	}

	.cc-dm-hs-detailed-review__text-wrap {
		margin-top: 18px;
	}
}

@media (max-width: 480px) {
	.cc-dm-hs-detailed-review__card {
		padding: 18px 16px;
	}

	.cc-dm-hs-detailed-review__name {
		font-size: 20px;
		line-height: 26px;
	}

	.cc-dm-hs-detailed-review__text {
		font-size: 15px;
		line-height: 20px;
	}

	.cc-dm-hs-detailed-review__toggle {
		min-height: 40px;
		margin-top: 20px;
		padding: 10px 22px;
	}
}
