/*!
Theme Name: Information Design Hub
Theme URI: https://informationdesignhub.com
Author: Krsto
Author URI: https://informationdesignhub.com
Description: Wordpress template created by Krsto for InformationDesignHub.
Version: 1.0
*/

body {
	/*background: #d5d6d7; */
	color: var(--text);
	font-family: 'IBM Plex Sans', Arial, Helvetica, sans-serif;
	line-height: 1.8;
	font-size: 18px;
}

:root {
    --lightblue: #6CADE3;
	--blue: #4281b7;
	--darkblue: #366996;
    --darkgray: #2C99FF;
	--text: #333;
}
/* Background & Gradient */
.bg-blue {
	background: var(--blue);
}

.bg-lightblue {
	background: var(--lightblue);
}

.bg-darkblue {
	background: var(--darkblue);
}

.header-gradient {
	background: rgb(108,173,227);
	background: linear-gradient(180deg, rgba(108,173,227,1) 0%, rgba(66,129,183,1) 100%);
}

/* Links & Text */
a, a:visited {
	color: var(--darkblue);
	text-decoration: none;
}

a:hover  {
	color: var(--lightblue);
	text-decoration: none;
}

ul li::before {
	content:'';
}

.logo-link {
	font-size: 1.25rem;
}

a.link-white, a:visited.link-white {
	color: #fff;
}

.text-white-opacity {
	color: rgba(255,255,255,0.75)
}

p.lead {
	font-size: 22px;
}

.fw-700 {
	font-weight: 700;
}

/* Single Post */
.entry-title {
	font-size: 50px;
	line-height: 54px;
}

/* WP Caption */
.wp-caption {
	text-align: center;
	max-width: 100%!important;
}
.wp-caption img {
}
.wp-caption p.wp-caption-text {
}

/* Blockquote Element */
blockquote {
	border-left: 1px dotted #d7d7d7;
	color: #444;
}
blockquote p {
	margin-bottom: 0px;
}

/* Further Reading */
.further-reading ul li {
	padding-left: 25px;
	position: relative;
}

.further-reading ul li::before {
	position: absolute;
	left: 1px;
	top: 8px;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-left: 11px solid var(--darkblue);
	border-bottom: 6px solid transparent;
	border-radius: 0px;
	
}

/* Sidebar */


ul.recent-posts-list {
	padding:0;
	list-style-type: none;
	margin-bottom: 0px;
}

ul.recent-posts-list li::before {
	content: "•";
	color: var(--blue);
	padding-right: 0.5rem;
}

/* Footer */
footer {
	background: var(--darkblue);
}

/* Responsive Styles */
@media (max-width: 768px) {
	.entry-title {
		font-size: 36px;
		line-height: 40px;
	}
}