.hcp-audio-box .row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	/* Adjust space between items */
	justify-content: center;
	/* Center items in the row */
}

.hcp-audio-box .row .hcp-audio-box__item {
	flex: 1 1 calc(33.33% - 20px);
	/* Ensures 3 items per row */
	max-width: calc(33.33% - 20px);
	/* Prevents items from stretching too much */
}