.hsc-container {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: stretch;
	gap: 0;
	width: 100%;
	max-width: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-sizing: border-box;
}

.hsc-column {
	box-sizing: border-box;
	min-width: 0;
}

.hsc-input-column {
	display: flex;
	align-items: stretch;
	background-color: #ffffff;
}

.hsc-results-column {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background-color: #f7f8f9;
	padding: 20px;
	min-height: 220px;
}

.hsc-textarea {
	display: block;
	width: 100%;
	min-height: 220px;
	padding: 20px;
	border: 1px solid #e0e4e8;
	border-radius: 0;
	background-color: #ffffff;
	color: #1f2933;
	font-family: inherit;
	font-size: 16px;
	line-height: 1.6;
	resize: none;
	overflow: hidden;
	box-sizing: border-box;
	outline: none;
}

.hsc-textarea:focus {
	border-color: #8a96a3;
	box-shadow: inset 0 0 0 1px #8a96a3;
}

.hsc-textarea::placeholder {
	color: #7b8794;
	opacity: 1;
}

.hsc-results-list {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0;
	padding: 0;
	gap: 10px;
	box-sizing: border-box;
}

.hsc-results-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 16px;
	box-sizing: border-box;
}

.hsc-results-row-line {
	padding: 0;
}

.hsc-results-row-total-syllables {
	margin-top: 10px;
	padding-top: 14px;
	border-top: 1px solid #d9dee4;
}

.hsc-results-row-total-words {
	padding-top: 0;
}

.hsc-results-label {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	color: #1f2933;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	text-align: left;
}

.hsc-results-number {
	display: block;
	flex: 0 0 auto;
	min-width: 48px;
	color: #1f2933;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	text-align: right;
}

.hsc-results-number-total {
	font-weight: 700;
}

@media (max-width: 767px) {
	.hsc-container {
		grid-template-columns: 1fr;
	}

	.hsc-textarea {
		min-height: 180px;
	}

	.hsc-results-column {
		min-height: auto;
	}
}