.responses {
	width: 100%;
	margin-top: var(--py-section);
	margin-bottom: var(--py-section);
}

.responses-top {
	margin-bottom: 40px;
}

.responses-top h2 {
	font-size: 34px;
	line-height: 48px;
	color: var(--color-primary);
}

.responses-grid {
	display: grid;
	gap: 22px;
	margin-bottom: 40px;
}

.responses-block {
	font-size: 16px;
}

.responses-block h3 {
	font-size: 22px;
	color: var(--color-blue);
	font-family: var(--font-family-body), sans-serif;
	font-weight: 700;
}

.responses-stars {
	color: var(--color-red);
	letter-spacing: 2px;
	margin: 0 0 14px;
	font-weight: 800;
}

.responses-author {
	font-weight: 700;
	margin-bottom: 10px;
}

.responses-category {
	color: var(--color-red);
	font-weight: 800;
	text-transform: uppercase;
	font-size: 13px;
}

@media screen and (min-width: 640px) {
	.responses-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 1025px) {
	.responses-top h2 {
		font-size: 48px;
	}

	.responses-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
