.page-blog-wrap {
	color: #555;
	overflow-x: hidden;
}

.page-blog-wrap .blog-banner {
	overflow: hidden;
	background: #f2f2f2;
}

.page-blog-wrap .blog-banner picture,
.page-blog-wrap .blog-banner img {
	display: block;
	width: 100%;
	margin: 0;
	height: auto;
}

.page-blog-wrap .search {
	padding: 1rem 0;
	background-color: #eaeaea;
}

.page-blog-wrap .search-form {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
}

.page-blog-wrap .search-form label {
	margin: 0;
}

.page-blog-wrap .search-form input {
	border: none;
	border-radius: 0.5rem;
	width: 15rem;
	max-width: 100%;
	padding: 0.55rem 0.8rem;
	height: 2.5rem;
}

.page-blog-wrap .search-form button {
	background-color: #b00;
	color: #fff;
	border: none;
	border-radius: 0.5rem;
	padding: 0.5rem 1.5rem;
	cursor: pointer;
	transition: background-color 0.2s ease;
	height: 2.5rem;
	font-weight: 600;
}

.page-blog-wrap .search-form button:hover {
	background-color: #f33;
}

.page-blog-wrap .visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.page-blog-wrap .page-blog {
	padding: 1.5rem 0 3rem;
	background-color: #f5f5f7;
}

.page-blog-wrap .blog-search-result {
	margin: 0 0 1.25rem;
	color: #555;
}

.page-blog-wrap .blog-search-result a {
	margin-left: 0.75rem;
	color: #fb0104;
}

.page-blog-wrap .grid-post > [class*="col-"] {
	margin-bottom: 1.5rem;
}

.page-blog-wrap .item-post {
	height: 100%;
	background-color: #fff;
	overflow: hidden;
	border-radius: 1rem;
	border: 0.2rem solid #fff;
	transition: 0.3s;
	display: flex;
	flex-flow: column;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.page-blog-wrap .item-post:hover {
	transform: translateY(-0.5rem);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.page-blog-wrap .item-post a {
	color: #282828;
	text-decoration: none;
}

.page-blog-wrap .item-post .thumb {
	display: block;
}

.page-blog-wrap .item-post img {
	width: 100%;
	margin-bottom: 0;
	height: 15rem;
	object-fit: cover;
	display: block;
}

.page-blog-wrap .item-post h2 {
	font-size: 1.25rem;
	margin: 0.5rem 0;
	font-weight: 800;
	line-height: 1.3;
	color: #282828;
}

.page-blog-wrap .item-post .metadata p {
	margin: 0;
	color: #666;
	font-size: 0.95rem;
	line-height: 1.45;
}

.page-blog-wrap .blog-card-text {
	flex-direction: column;
	flex: 1;
	justify-content: space-between;
	display: flex;
	padding: 0.75rem 1rem 0;
}

.page-blog-wrap .blog-card-text .details {
	border-top: 0.1rem solid #eee;
	font-size: 0.8rem;
	margin: 1rem 0 0;
	padding: 0.9rem 0;
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
	color: #777;
}

.page-blog-wrap .blog-empty {
	background: #fff;
	border-radius: 1rem;
	padding: 2rem;
	text-align: center;
}

.page-blog-wrap .blog-empty h2 {
	margin: 0 0 0.5rem;
	color: #333;
}

.page-blog-wrap .blog-empty a {
	color: #fb0104;
}

/* Pagination */
.blog-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 2.5rem;
	flex-wrap: wrap;
}

.blog-pagination .page-num,
.blog-pagination .page-prev,
.blog-pagination .page-next {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border-radius: 0.5rem;
	border: 0.1rem solid #dde;
	background: #fff;
	color: #333;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: 0.2s;
}

.blog-pagination .page-num:hover,
.blog-pagination .page-prev:hover,
.blog-pagination .page-next:hover {
	background: #fb0104;
	border-color: #fb0104;
	color: #fff;
}

.blog-pagination .page-num.active {
	background: #fb0104;
	border-color: #fb0104;
	color: #fff;
	cursor: default;
}

.blog-pagination .page-dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	color: #999;
	font-weight: 600;
}

/* Single post */
.page-blog-single .page-title {
	padding: 1.1rem 0;
	background-color: #fb0104;
	color: #fff;
	border-top: 2px solid #fff;
}

.page-blog-single .page-title h1 {
	margin: 0;
	font-size: 1.85rem;
	font-weight: 700;
	line-height: 1.3;
}

.page-blog-single .page-post {
	padding: 2rem 0 3rem;
	background: #fff;
}

.page-blog-single .img-post {
	width: 100%;
	border-radius: 1rem;
	display: block;
	margin-bottom: 1rem;
}

.page-blog-single .artigo {
	color: #323232;
}

.page-blog-single .artigo p,
.page-blog-single .artigo li {
	color: #323232;
	line-height: 1.7;
}

.page-blog-single .artigo p {
	margin-bottom: 1.5rem;
}

.page-blog-single .artigo h2 {
	margin: 1.6rem 0 0.85rem;
	font-size: 1.45rem;
	font-weight: 800;
	color: #333;
}

.page-blog-single .artigo h3 {
	margin: 1.2rem 0 0.6rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: #444;
}

.page-blog-single .artigo img {
	max-width: 100%;
	height: auto;
	border-radius: 0.75rem;
}

.page-blog-single .artigo a {
	color: #fb0104;
}

.page-blog-single .artigo ul,
.page-blog-single .artigo ol {
	margin-bottom: 1.25rem;
	padding-left: 1.25rem;
}

.page-blog-single .box-meta {
	top: 7rem;
	position: sticky;
	background-color: #f3f3f3;
	padding: 1rem;
	border-radius: 1rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.page-blog-single .box-meta h5 {
	font-size: 1.1rem;
	color: #fb0104;
	margin: 0.75rem 0 0.5rem;
	font-weight: 700;
}

.page-blog-single .single-meta {
	margin: 0 0 0.75rem;
	color: #555;
	line-height: 1.55;
}

.page-blog-single .compartilhe-me {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0 0 0.75rem;
}

.page-blog-single .compartilhe-me a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 0.35rem;
	background: #ccc;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 0.8rem;
	font-weight: 700;
}

.page-blog-single .compartilhe-me a:nth-child(1) { background: #2d4156; }
.page-blog-single .compartilhe-me a:nth-child(2) { background: #333; }
.page-blog-single .compartilhe-me a:nth-child(3) { background: #3673b3; }
.page-blog-single .compartilhe-me a:nth-child(4) { background: #0ab833; }

.page-blog-single .veja-tambem {
	padding: 0;
	margin: 0 0 1rem;
	list-style: none;
}

.page-blog-single .veja-tambem li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #eee;
	list-style: none;
	font-size: 0.9rem;
}

.page-blog-single .veja-tambem a {
	color: #414141;
	text-decoration: none;
}

.page-blog-single .veja-tambem a:hover {
	color: #fb0104;
}

.page-blog-single .back-blog {
	margin: 0.75rem 0 0;
}

.page-blog-single .back-blog a {
	color: #fb0104;
	font-weight: 600;
	text-decoration: none;
}

.page-blog-single .banner_post {
	padding: 2rem 0 0.5rem;
}

.page-blog-single .banner_post img {
	width: 100%;
	border-radius: 1rem;
	display: block;
}

.page-blog-single .compartilhe-footer {
	margin-top: 2rem;
}

.page-blog-single .compartilhe-footer h5 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 0.75rem;
}

.page-blog-single .compartilhe-footer p {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
}

.page-blog-single .compartilhe-footer a {
	flex: 1 1 10rem;
	background-color: #ccc;
	border-radius: 0.3rem;
	padding: 0.65rem 0.5rem;
	color: #fff !important;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0.55rem;
	text-decoration: none !important;
	font-weight: 600;
}

.page-blog-single .compartilhe-footer a.c-linkedin { background-color: #2d4156; }
.page-blog-single .compartilhe-footer a.c-twitter { background-color: #333; }
.page-blog-single .compartilhe-footer a.c-facebook { background-color: #3673b3; }
.page-blog-single .compartilhe-footer a.c-whatsapp { background-color: #0ab833; }

@media (max-width: 991px) {
	.page-blog-wrap .search-form {
		justify-content: stretch;
	}

	.page-blog-wrap .search-form label,
	.page-blog-wrap .search-form input {
		width: 100%;
		flex: 1;
	}

	.page-blog-single .page-title h1 {
		font-size: 1.4rem;
	}

	.page-blog-single .box-meta {
		position: static;
		top: auto;
	}

	.page-blog-single .compartilhe-footer a span:last-child {
		display: none;
	}
}
