.widget-title {
	font-size: var(--font-size);
	color: rgba(0,0,0, 1);
	font-weight: 700;
	position: relative;
	margin-bottom: 1.375em;
}
	.widget-title:after {
		content: ':';
	}
	.widget-title:before {
		content: '';
		width: 60px;
		height: 4px;
		background: rgba(var(--color-blue), 1);
		position: absolute;
		left: 0;
		bottom: -0.6875em;
	}

/* widget_media_image */
.widget_media_image img {
	box-shadow: 0 6px 18px rgba(0,0,0, 0.1);
}	
	
/* widget_categories */
.widget_categories ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1.375em;
}

.widget_categories li {
	margin: 0 0.34375em 0.34375em 0;
}

.widget_categories a {
	display: block;
	padding: 5px 10px;
	text-transform: uppercase;
	color: rgba(0,0,0, 1);
	background: rgba(var(--color-gray), 0.1);
	font-size: 12px;
}

/* widget_tag_cloud */
.widget_tag_cloud .tagcloud {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1.375em;
}

.widget_tag_cloud .tag-cloud-link {
	margin: 0 0.34375em 0.34375em 0;
	color: rgba(var(--color-gray), 1);
}

/* widget_rss */
.widget_rss .widget-title:before {
	background: rgba(var(--color-orange), 1);
}
	.widget_rss.is-style-press .widget-title:before {
		background: rgba(var(--color-light-blue), 1);
	}

.widget_rss .widget-title a:first-child img {
	display: none;
}

.widget_rss .widget-title a:first-child:before {
	content: '\f143';
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	font-weight: 900;
	font-size: var(--font-size-small);
	color: rgba(var(--color-orange), 1);
}
	.widget_rss.is-style-press .widget-title a:first-child:before {
		color: rgba(var(--color-light-blue), 1);
	}
	
.widget_rss ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1.375em;
}

.widget_rss li {
	display: flex;
	flex-wrap: wrap;
	padding: 0.6875em 0;
	border-top: 1px solid rgba(var(--color-gray), 0.2);
	width: 100%;
}
	.widget_rss li:first-child {
		padding-top: 0;
		border-top: 0;
	}
	.widget_rss.is-style-press li {
		padding-left: 1.375em
	}

.widget_rss li .rsswidget {
	width: 100%;
	order: 2;
	font-weight: 700;
	position: relative;
}
	.widget_rss.is-style-press li .rsswidget:before {
		content: '\f35d';
		font-family: "Font Awesome 5 Free";
		display: inline-block;
		font-weight: 900;
		color: rgba(var(--color-light-blue), 1);
		font-size: var(--font-size-xsmall);
		position: absolute;
		left: -24px;
		top: 4px;
	}

.widget_rss li .rss-date {
	width: 100%;
	order: 1;
	font-size: var(--font-size-small);
}