.humat-verse-engine {
	max-width: 520px;
	width: 100%;
	margin: 40px auto;
	padding: 0px;

	display: flex;
	flex-direction: column;
	align-items: center;

	font-family: Georgia, "Times New Roman", serif;
}


.humat-generate-button,
#humat-copy-verse {
	all: unset;
	cursor: pointer;

	width: 100%;
	max-width: 520px;

	margin-top: 16px;
	padding: 12px 0;

	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;

	color: #555;
	text-align: center;

	border-bottom: 1px solid transparent;
}


.humat-generate-button:hover,
#humat-copy-verse:hover {
	color: #000;

}


.humat-verse-result {
	margin-top: 24px;
}

.humat-verse-text {
	width: 100%;
	max-width: 520px;
	aspect-ratio: 1 / 1;

	background-color: #f6f6f6;
	border-radius: 12px;

	display: flex;
	align-items: center;
	justify-content: center;

	position: relative;
	padding: 16px;
	box-sizing: border-box;
	
}

@media (max-width: 480px) {

	.humat-verse-text {
		border-radius: 10px;
	}

	.humat-verse-text > span {
		font-size: 0.95rem;
		line-height: 1.55;
	}

	.humat-verse-text::before,
	.humat-verse-text::after {
		font-size: 2.8rem;
	}
}



.humat-verse-text > span {
	max-width: 420px;
	margin: 0 auto;

	text-align: center;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.05rem;
	letter-spacing: 0.02em;
	line-height: 1.6;
	color: #111;

	white-space: normal;      /* 🔴 POISTAA väärän rivittymisen */
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
	white-space: pre-line;
	padding: 10px 40px;
}





.humat-verse-text::before {
	content: "“";
	position: absolute;
	top: 32px;
	left: 28px;
	font-size: 3.5rem;
	color: #ddd;
}

.humat-verse-text::after {
	content: "”";
	position: absolute;
	bottom: 2px;
	right: 28px;
	font-size: 3.5rem;
	color: #ddd;
}




