.blog-listing {
	padding-bottom: 4rem;
}

.blog-main,
.blog-sidebar {
	min-width: 0;
}

@media screen and (max-width: 1023px) {
	.blog-sidebar {
		margin-top: 2rem;
	}
}

.blog-card-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}

@media screen and (min-width: 640px) {
	.blog-card-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 1024px) {
	.blog-card-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.blog-card-cell {
	display: flex;
	min-width: 0;
}

.blog-card {
	background: #fff;
	border: none;
	border-radius: 4px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 100%;
	margin-bottom: 0;
	overflow: hidden;
	position: relative;
	text-align: left;
	width: 100%;
}

.blog-card-hit {
	inset: 0;
	position: absolute;
	z-index: 1;
}

.blog-card-hit:focus {
	outline: 2px solid #0D4747;
	outline-offset: -2px;
}

.blog-card .blog-category {
	position: relative;
	z-index: 2;
}

.blog-card-image {
	display: block;
	line-height: 0;
}

.blog-card img {
	display: block;
	width: 100%;
}

.blog-card .card-section {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.25rem;
}

.blog-category {
	color: #0D4747;
	text-decoration: none;
}

.blog-category:hover {
	color: #008274;
}

.blog-card .blog-category {
	display: inline-block;
	font-size: 0.875em;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.blog-card-title {
	color: #2E2E2F;
	margin-bottom: 0.75rem;
}

.blog-card:hover .blog-card-title {
	color: #0D4747;
}

.blog-excerpt {
	color: #666;
	display: -webkit-box;
	margin-bottom: 1rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.blog-excerpt p {
	margin-bottom: 0;
}

.blog-card-footer {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 0.5rem;
	margin-top: auto;
}

.blog-card-meta {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.blog-card-author {
	color: #2E2E2F;
	font-weight: 600;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.blog-card-date {
	color: #999;
	line-height: 1.3;
}

.blog-card-action {
	flex: 0 0 auto;
	min-width: 0;
}

.blog-card-readmore {
	align-items: center;
	border: 1px solid #1d5c4c;
	border-radius: 5px;
	box-sizing: border-box;
	color: #1d5c4c;
	display: inline-flex;
	font-size: 16px;
	font-weight: 600;
	gap: 4px;
	line-height: normal;
	margin-bottom: 0;
	padding: 5px 12px;
	white-space: nowrap;
}

.blog-card-readmore-icon {
	display: block;
	flex-shrink: 0;
}

.blog-card:hover .blog-card-readmore {
	background: #1d5c4c;
	color: #fff;
}

.banner-inner {
	position: relative;
	z-index: 1;
}

.banner-meta {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	margin: 0.5rem 0 0;
}

.banner-meta-sep {
	margin: 0 0.5rem;
	opacity: 0.75;
}

.banner-meta-link {
	color: #fff;
	text-decoration: underline;
}

.banner-meta-link:hover {
	color: #c5e86c;
}

.blog-single-image {
	margin-bottom: 1.5rem;
}

.blog-single-image img {
	display: block;
	width: 100%;
}

.blog-single-content > *:first-child {
	margin-top: 0;
}

.blog-single-content > *:last-child {
	margin-bottom: 0;
}

.blog-single-content p {
	margin-bottom: 1rem;
}

.blog-single-content h2 {
	color: #0D4747;
	font-size: 1.875rem;
	margin: 2rem 0 1rem;
}

.blog-single-content h3 {
	color: #2E2E2F;
	font-size: 1.5rem;
	margin: 1.75rem 0 0.75rem;
}

.blog-single-content h4 {
	color: #2E2E2F;
	font-size: 1.25rem;
	margin: 1.5rem 0 0.5rem;
}

.blog-single-content h5 {
	color: #2E2E2F;
	font-size: 1.125rem;
	margin: 1.25rem 0 0.5rem;
}

.blog-single-content h6 {
	color: #2E2E2F;
	font-size: 1rem;
	margin: 1rem 0 0.5rem;
}

@media screen and (min-width: 40em) {
	.blog-single-content h2 {
		font-size: 2.5rem;
	}

	.blog-single-content h3 {
		font-size: 1.75rem;
	}

	.blog-single-content h4 {
		font-size: 1.5rem;
	}

	.blog-single-content h5 {
		font-size: 1.25rem;
	}
}

.blog-single-content a {
	color: #0D4747;
	text-decoration: underline;
}

.blog-single-content a:hover,
.blog-single-content a:focus {
	color: #008274;
}

.blog-single-content ul,
.blog-single-content ol {
	margin: 0 0 1rem 1.5rem;
	padding: 0;
}

.blog-single-content li {
	margin-bottom: 0.5rem;
}

.blog-single-content li > ul,
.blog-single-content li > ol {
	margin-bottom: 0;
	margin-top: 0.5rem;
}

.blog-single-content blockquote {
	background: rgba(137, 186, 22, 0.12);
	border: none;
	border-left: 4px solid #0D4747;
	color: #2E2E2F;
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
}

.blog-single-content blockquote p:last-child {
	margin-bottom: 0;
}

.blog-single-content blockquote cite {
	color: #666;
	display: block;
	font-style: normal;
	margin-top: 0.75rem;
}

.blog-single-content hr {
	background: #89BA16;
	border: 0;
	height: 2px;
	margin: 2rem 0;
}

.blog-single-content img {
	display: block;
	height: auto;
	margin: 1.5rem 0;
	max-width: 100%;
}

.blog-single-content .wp-caption,
.blog-single-content figure {
	margin: 1.5rem 0;
	max-width: 100%;
}

.blog-single-content .wp-caption-text,
.blog-single-content figcaption {
	color: #666;
	margin-top: 0.5rem;
	text-align: center;
}

.blog-single-content pre {
	background: #f5f5f5;
	border-radius: 4px;
	margin-bottom: 1rem;
	overflow-x: auto;
	padding: 1rem;
}

.blog-single-content code {
	background: rgba(13, 71, 71, 0.08);
	border-radius: 3px;
	padding: 0.15em 0.35em;
}

.blog-single-content pre code {
	background: transparent;
	padding: 0;
}

.blog-page-links {
	margin-top: 2rem;
}

.blog-author-box-role {
	color: #89BA16;
	letter-spacing: 0.05em;
	margin-top: 0.25rem;
	text-transform: uppercase;
}

.blog-author-box {
	background: rgba(137, 186, 22, 0.12);
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	padding: 1.5rem;
}

.blog-author-box-avatar img {
	border-radius: 50%;
}

.blog-share {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	margin-top: 2rem;
}

.blog-share-label {
	color: #2E2E2F;
	font-weight: 600;
}

.blog-share-icons {
	align-items: center;
	display: flex;
	gap: 0.75rem;
}

.blog-share a {
	align-items: center;
	display: inline-flex;
	line-height: 1;
	text-decoration: none;
}

.blog-share img {
	filter: brightness(0) saturate(100%) invert(18%) sepia(30%) saturate(1200%) hue-rotate(130deg) brightness(95%) contrast(90%);
	height: 24px;
	width: 24px;
}

.blog-share-email {
	color: #0D4747;
	font-size: 1.25rem;
}

.blog-sidebar-widget + .blog-sidebar-widget {
	margin-top: 2rem;
}

.blog-sidebar input[type="search"] {
	background: #fff;
	border: 1px solid #cacaca;
	margin-bottom: 0;
	width: 100%;
}

.blog-sidebar input[type="search"]::placeholder {
	color: #8a8a8a;
	opacity: 1;
}

.blog-category-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.blog-category-list li {
	border-bottom: 1px solid #ddd;
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
}

.blog-category-list li a {
	color: inherit;
	text-decoration: none;
}

.blog-category-list .count {
	color: #999;
}

.blog-pagination {
	margin-top: 2rem;
	text-align: center;
}

.blog-pagination .page-numbers,
.blog-pagination .nav-links .page-numbers {
	border: 1px solid #ddd;
	display: inline-block;
	margin: 0 0.15rem;
	padding: 0.35rem 0.75rem;
	text-decoration: none;
}

.blog-pagination .page-numbers.current,
.blog-pagination .nav-links .page-numbers.current {
	background: #89BA16;
	border-color: #89BA16;
	color: #fff;
}

.blog-recent-posts {
	padding-bottom: 2rem;
}

.comments-area {
	border-top: 1px solid #e6e6e6;
	margin-top: 3rem;
	padding-top: 2rem;
}

.comments-title,
.comment-reply-title {
	color: #0D4747;
	margin-bottom: 1rem;
}

.comment-respond {
	margin-top: 2rem;
}

.comment-notes,
.logged-in-as {
	color: #666;
	margin-bottom: 1.25rem;
}

.comment-list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.comment-list .comment {
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
}

.comment-list .children {
	list-style: none;
	margin: 1.5rem 0 0 1.5rem;
	padding: 0;
}

.comment-meta {
	color: #666;
	margin-bottom: 0.5rem;
}

.comment-form p {
	margin-bottom: 1rem;
}

.comment-form label {
	display: block;
	margin-bottom: 0.35rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	border: 1px solid #cacaca;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
	margin-bottom: 0;
	padding: 0.5rem 0.75rem;
	width: 100%;
}

.comment-form textarea {
	min-height: 140px;
	resize: vertical;
}

.comment-form .form-submit {
	margin-bottom: 0;
	margin-top: 0.5rem;
}

.comment-form #submit {
	background: transparent;
	border: 1px solid #008274;
	color: #008274;
	cursor: pointer;
	font-weight: 600;
	margin-bottom: 0;
	padding: 0.85em 1em;
}

.comment-form #submit:hover {
	background: #0D4747;
	border-color: #0D4747;
	color: #fff;
}
