body{
	overflow: unset !important;
}
.blog-hero-ui .container-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
}
.blog-hero-ui {
	background: #ebf4fd;
	padding: 60px 0;
}

.blog-content-left h2 {
	color: #0a3c57;
	font-size: 34px;
	font-weight: 700;
	padding-bottom: 16px;
	margin: 0;
}

.author-section {
	display: flex;
	align-items: center;
}
.author-section figure img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 50px;
}
.author-section .user-name {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-right: 16px;
	position: relative;
}
.author-section .user-name:after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	background: #d8d8d8;
	height: 30px;
	margin: auto;
}

.author-section .user-name h5 {
	font-weight: 500;
	color: var(--clr-pri);
	font-size: 16px;
}
.author-section .date {
	padding-left: 16px;
	color: #595854;
}

.checklist-card {
	display: flex;
	background: #fff;
	padding: 22px 20px;
	gap: 26px;
	border-radius: 20px;
	margin-top: 20px;
}
.checklist-card .drone-icon {
	flex: 0 0 152px;
}

.checklist-card .drone-icon img {
	display: block;
	border-radius: 12px;
	max-height: 110px;
	width: 100%;
	object-fit: cover;
}
.checklist-content .checklist-title {
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 12px 0;
	padding: 0;
}
.checklist-content .checklist-subtitle {
	font-size: 14px;
	margin-bottom: 18px;
}
.checklist-content .btn.btn-primary {
	border-radius: 8px;
	text-transform: uppercase;
}
.checklist-content .btn.btn-primary::before {
	border-radius: 8px;
}

.blog-content-right img {
	display: block;
	height: 100%;
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
	object-position: left center;
}

.checklist-card.widget-free-items {
	background: #ebf4fd;
}
.checklist-card.widget-free-items .checklist-title {
	font-size: 26px;
	font-weight: 600;
	color: #0a3c55;
}
.checklist-card.widget-free-items .checklist-subheading {
	font-size: 18px;
	line-height: 24px;
	letter-spacing: normal;
}

ul.list-checklist {
	list-style: none;
	padding: 10px 0;
}
ul.list-checklist li {
	list-style: none;
	margin: 14px 0 14px 0;
	font-size: 16px;
	line-height: normal;
	display: flex;
	padding-left: 28px;
	font-weight: 600;
	position: relative;
}
ul.list-checklist li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 7px;
	transform: translateY(-50%) rotate(-49deg);
	width: 12px;
	height: 6px;
	border-left: 3px solid;
	border-bottom: 3px solid;
	color: var(--clr-pri);
}

section.related-article-blog {
	padding-top: 20px;
}
.related-blog-grid .blog-item {
	position: relative;
}
.related-article-blog h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--clr-pri);
	margin-bottom: 20px;
}
.related-blog-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}
.related-blog-grid figure {
	display: flex;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 12px;
}
.related-blog-grid figure img {
	width: 100%;
	height: 166px;
	object-fit: cover;
}
.related-blog-grid .blog-item time {
	font-size: 13px;
	opacity: 0.6;
	letter-spacing: normal;
}
.related-blog-grid .blog-item h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	padding-top: 4px;
}
.related-blog-grid .blog-item .link-over {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

/* Updated CSS */

.blog-content-main h2,
.blog-content-main h3,
.faq-block h2,
.author .author-sec-heading,
.faq-container .faq-item .head-faq .cs-icon,
.blog-detail-comments h3#reply-title {
	color: var(--clr-pri);
}

@media screen and (max-width: 1100px) {
	.blog-content-left h2 {
		font-size: 26px;
	}
	.checklist-content .checklist-title {
		font-size: 18px;
	}
	.checklist-card .drone-icon {
		flex: 0 0 122px;
	}
	.checklist-card {
		font-size: 16px;
	}
	.blog-hero-ui .container-main {
		gap: 36px;
	}
	.checklist-card.widget-free-items .checklist-title {
		font-size: 20px;
	}
	.checklist-card.widget-free-items .checklist-subheading {
		font-size: 16px;
	}
	ul.list-checklist li {
		font-size: 14px;
	}
}

@media screen and (max-width: 991px) {
	.checklist-card {
		font-size: 16px;
		flex-direction: column;
		gap: 10px;
	}
	.blog-hero-ui .container-main {
		gap: 26px;
	}
	.checklist-card.widget-free-items {
		flex-direction: row;
	}
	.author-section,
	.author-section .user-name h5 {
		font-size: 14px;
	}
	.author-section .user-name {
		padding-right: 10px;
	}
	.author-section .date {
		padding-left: 10px;
	}
	.author-section figure img {
		width: 40px;
		height: 40px;
	}
}

@media screen and (max-width: 767px) {
	.blog-hero-ui .container-main {
		grid-template-columns: 1fr;
	}
	.blog-hero-ui {
		padding: 40px 0;
	}
	.blog-content-left h2 {
		font-size: 22px;
	}

	.blog-hero-ui .container-main {
		display: flex;
		flex-direction: column-reverse;
	}
	.related-article-blog h2 {
		font-size: 22px;
	}
}
@media screen and (max-width: 575px) {
	.checklist-card.widget-free-items {
		flex-direction: column;
	}
	.related-blog-grid .blog-item h3 {
		font-size: 14px;
	}
	.related-blog-grid .blog-item time {
		font-size: 12px;
	}
}
