/*  vlastni fancy title s podkresovou carou
	> kvuli tomu, ze originalni fancy ittle nepodporuje header elementy,
	ale divy a neumi s tim pak pracovat TOC plugin
*/
.my-fancy-title {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-top: 40px;
}
h2.my-fancy-title{
	color: var(--the7-h2-color);
	/* font: var(--the7-h2-font); */
	text-transform: var(--the7-h2-text-transform);
	letter-spacing: var(--the7-h2-letter-spacing);
	word-spacing: var(--the7-h2-word-spacing);
	text-decoration: var(--the7-h2-text-decoration);
}
h3.my-fancy-title{
	color: var(--the7-h3-color);
	/* font: var(--the7-h3-font); */
	text-transform: var(--the7-h3-text-transform);
	letter-spacing: var(--the7-h3-letter-spacing);
	word-spacing: var(--the7-h3-word-spacing);
	text-decoration: var(--the7-h3-text-decoration);
}

@media screen and (max-width: 992px) {
    
}

.my-fancy-title::before,
.my-fancy-title::after {
	content: "";
	flex: 1;
	height: 5px;
	background: #ddd;
}

.my-fancy-title span {
	white-space: nowrap;
}