.SectionTitleWidget {
	display: flex;
	flex-direction: column;
	width: fit-content;
	max-width: 100%;
	direction: rtl;
}

.my-theme-section-title-width-fit .SectionTitleWidget {
	width: fit-content;
}

.my-theme-section-title-width-full .SectionTitleWidget {
	width: 100%;
}

.my-theme-section-title-width-custom .SectionTitleWidget {
	max-width: 100%;
}

.SectionTitleWidget__line {
	display: block;
	flex: 0 0 auto;
	height: 1px;
	background-color: #c9a400;
}

.SectionTitleWidget__line--top,
.SectionTitleWidget__line--bottom {
	align-self: stretch;
}

.SectionTitleWidget__inner {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 8px 0px !important;
}

.SectionTitleWidget__title {
	width: 100%;
	margin: 0;
	color: #111;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.5;
}

.SectionTitleWidget__link {
	display: block;
	width: 100%;
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.SectionTitleWidget__link:hover,
.SectionTitleWidget__link:focus {
	color: inherit;
	text-decoration: none;
}

.SectionTitleWidget__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
}

.SectionTitleWidget__text {
	display: inline-block;
	font-family: "shabnam";
}

.SectionTitleWidget__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	color: #c9a400;
	font-size: 13px;
	line-height: 1;
}

.SectionTitleWidget__icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.my-theme-section-title-width-fit .SectionTitleWidget__inner,
.my-theme-section-title-width-fit .SectionTitleWidget__title,
.my-theme-section-title-width-fit .SectionTitleWidget__link,
.my-theme-section-title-width-fit .SectionTitleWidget__content {
	width: auto;
}

.my-theme-section-title-width-fit .SectionTitleWidget__content {
	white-space: nowrap;
}

@media (max-width: 1024px) {
	
	

}

@media (max-width: 767px) {
	.SectionTitleWidget__inner {
		padding-right: 14px;
		padding-left: 14px;
	}

	.SectionTitleWidget__title {
		font-size: 17px;
	}

	.my-theme-section-title-width-fit .SectionTitleWidget__content {
		white-space: normal;
	}
}