/* UKK-osio (Usein kysytyt kysymykset) - sivun lopussa, content jälkeen. */

.ukk-osio {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #e5e2da;
}

.ukk-osio-otsikko {
	margin-bottom: 20px;
}

.ukk-lista {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ukk-kohta {
	border: 1px solid #e5e2da;
	border-radius: 4px;
	background: #fff;
}

.ukk-kysymys {
	cursor: pointer;
	list-style: none;
	position: relative;
	padding: 14px 45px 14px 18px;
	font-weight: 600;
	outline: none;
}

.ukk-kysymys::-webkit-details-marker {
	display: none;
}

.ukk-kysymys::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
	color: #8a7956;
	font-size: 22px;
	font-weight: 300;
	transition: transform 0.2s ease;
}

.ukk-kohta[open] .ukk-kysymys::after {
	transform: translateY(-50%) rotate(45deg);
}

.ukk-vastaus {
	padding: 0 18px 16px 18px;
	color: #555;
}

.ukk-vastaus p:last-child {
	margin-bottom: 0;
}
