/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.bt-blog-post-banner {
  position: relative;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bt-blog-post__author .image-wrapper .image {
	height: 105px;
	width: 105px;
	border-radius: 105px;
	object-fit: cover;
}

.bt-blog-post__body {
  padding: 100px 0 35px;
  color: var(--Text, #333);
  font-family: Montserrat;
  font-size: 16px;
  line-height: 22px;
	font-weight: 400;
}

.bt-blog-post__body img {
	border-radius: 10px;
}

.bt-blog-post__body h1 {
  color: var(--Blue, #0F2370);
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 42px;
  margin-bottom: 35px;
}

.image-wrapper a {
	display: inline-block;
}

h1.bt-post-title {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #fff;
}

.bt-blog-post-banner:before {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	top: 0;
	background: rgba(0, 0, 0, 0.5);
}

.blog-header__author-title {
	color: var(--Blue, #0F2370);
	font-family: Montserrat;
	font-size: 22px;
	font-style: normal;
	font-weight: 800;
	line-height: 42px;
	margin-bottom: 13px;
}

.blog-header__author-subtitle {
	color: var(--Gray, #909A9E);
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	margin: 0;
}

.image-wrapper {
	flex: 0 0 100px;
}

.author-info {
	flex: 1;
}

.bt-blog-post__author {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding: 61px 0 77px;
	border-top: 1px solid #0F2370;
	gap: 34px;
}

a:hover .blog-header__author-title {
  color: #909A9E;
}

.blog-header__author-social-links.author span svg {
	fill: #fff;
	width: 18px;
	height: 18px;
}

.blog-header__author-social-links.author a:hover {
	background:
		color: inherit;
	transform: translateY(-3px);
}

.blog-header__author-social-links.author a {
	width: 40px;
	height: 40px;
	background: #24324a;
	border-radius: 100%;
	align-items: center;
	justify-content: center;
	margin: 0px 10px 5px 0px;
	color: #fff;
	display: flex;
}

.blog-header__author-social-links.author {
	display: flex;
	align-items: flex-end;
}

.blog-header__author-social-links.author a span {
	display: flex;
}


@media(max-width:767px){
	.bt-blog-post-banner {
		padding: 120px 0 50px 0;
	}

	.bt-blog-post__author {
		flex-direction: column;
		text-align: center;
		gap: 14px;
		padding: 64px 0 83px;
	}

	.blog-header__author-title {
		font-size: 18px;
	}
}