.lht-blog-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	min-height: 352px;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.lht-blog-banner__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}

.lht-blog-banner__overlay {
	position: absolute;
	inset: 0;
	background: rgba(8, 18, 34, 0.28);
}

.lht-blog-banner__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
}

.lht-blog-banner__title {
	margin: 0;
	color: #fff;
	text-align: center;
	font-family: "Times New Roman", serif;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 36px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lht-blog-banner__breadcrumbs,
.lht-blog-banner__breadcrumbs a,
.lht-blog-banner__breadcrumbs span {
	color: #fff;
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
}

.lht-blog-banner__breadcrumbs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.lht-blog-banner__breadcrumbs a:hover {
	color: #fff;
	text-decoration: underline;
}

.lht-featured-posts {
	background: #fff;
}

.lht-featured-posts--shortcode {
	background: transparent;
}

.lht-featured-posts--shortcode .lht-featured-posts__inner {
	padding:0;
}

.lht-featured-posts__inner {
	position: relative;
	max-width: 1470px;
	margin: 0 auto;
	padding: 100px 15px 80px;
}

.lht-featured-posts__inner::after {
	content: "";
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 0;
	border-bottom: 1px solid #e5e7eb;
}

.lht-featured-posts__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin-bottom: 48px;
	text-align: center;
}

.lht-featured-posts__title {
	margin: 0;
	color: #0d1a2d;
	text-align: center;
	font-family: "Times New Roman", serif;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 36px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lht-featured-posts__description {
	margin: 0;
	color: #6b7280;
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.lht-featured-posts__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 44px;
	align-items: stretch;
}

.lht-featured-posts__primary,
.lht-featured-posts__secondary {
	min-width: 0;
}

.lht-post-card {
	position: relative;
	display: block;
	height: 100%;
	min-height: 456px;
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
}

.lht-post-card__media {
	position: absolute;
	inset: 0;
	border-radius: 8px;
	background-color: #0d1a2d;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.lht-post-card__content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	height: 100%;
	padding: 0 30px 30px;
}

.lht-post-card__content-group {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
}

.lht-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.lht-post-card__category {
	color: #c5a059;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 15px;
	text-transform: uppercase;
}

.lht-post-card__separator,
.lht-post-card__date {
	color: #9ca3af;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 15px;
	text-transform: uppercase;
}

.lht-post-card__title {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: #fff;
	font-family: "Times New Roman", serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.24px;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.lht-post-card:hover .lht-post-card__title {
	color: var(--fs-color-primary);
}

.lht-featured-posts__secondary {
	display: grid;
	grid-template-rows: repeat(3, 1fr);
	gap: 24px;
}

.lht-post-list-card {
	height: 100%;
}

.lht-post-list-card__link {
	display: grid;
	grid-template-columns: 193px minmax(0, 1fr);
	height: 100%;
	border: 1px solid #eef2f7;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	text-decoration: none;
}

.lht-post-list-card__image-wrap {
	height: 100%;
}

.lht-post-list-card__image {
	display: block;
	width: 193px;
	height: 136px;
	border-radius: 8px 0 0 8px;
	object-fit: cover;
}

.lht-post-list-card__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
	padding: 20px 22px;
	min-width: 0;
}

.lht-post-list-card__title {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: #0d1a2d;
	font-family: "Times New Roman", serif;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
	letter-spacing: 0.22px;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.lht-post-list-card__link:hover .lht-post-list-card__title {
	color: var(--fs-color-primary);
}

.lht-featured-posts__empty {
	color: #6b7280;
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	line-height: 24px;
}

.lht-blog-content {
	background: #fff;
}

.lht-blog-content__inner {
	display: grid;
	grid-template-columns: 380px minmax(0, 1fr);
	gap: 29px;
	max-width: 1470px;
	margin: 0 auto;
}

.lht-blog-content__inner--page {
	padding: 80px 15px;
}

.lht-blog-content__inner--category {
	padding: 80px 15px;
}

.lht-blog-content__inner--single {
	padding: 10px 15px 50px;
}

.lht-blog-content__inner--search {
	grid-template-columns: minmax(0, 1fr);
	padding: 56px 15px 80px;
}

.lht-blog-content__sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.lht-topic-box {
	padding: 25px;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	background: #f9fafb;
}

.lht-topic-box__group {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.lht-topic-box__title {
	position: relative;
	margin: 0;
	padding-bottom: 18px;
	color: #0d1a2d;
	text-align: left;
	font-family: "Times New Roman", serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
	text-transform: uppercase;
}

.lht-topic-box__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #c5a059;
}

.lht-topic-box__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lht-topic-box__item {
	display: flex;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	padding: 12px;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	background: #fff;
	text-decoration: none;
}

.lht-topic-box__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	border-radius: 10px;
	background: #f6f2eb;
}

.lht-topic-box__name {
	color: #0d1a2d;
	font-family: "Times New Roman", serif;
	font-size: 17px;
	font-style: normal;
	font-weight: 700;
	line-height: 22px;
}

.lht-topic-box__item:hover .lht-topic-box__name {
	color: var(--fs-color-primary);
}

.lht-topic-box__item--current {
	border-color: #c5a059;
	background: #fffdfa;
}

.lht-blog-cta {
	min-height: 304px;
	border-radius: 8px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.lht-blog-cta__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	padding: 40px 28px 28px;
	max-width: 320px;
}

.lht-blog-cta__title {
	margin: 0;
	color: #c5a059;
	font-family: "Times New Roman", serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 30px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lht-blog-cta__description {
	margin: 0;
	color: #9ca3af;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.lht-blog-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px;
	border: 1px solid #c5a059;
	border-radius: 4px;
	background: #c5a059;
	color: #fff;
	text-decoration: none;
}

.lht-blog-cta__button:hover {
	border-color: #fff;
	color: #fff;
}

.lht-blog-cta__button-text {
	color: #fff;
	font-family: "Times New Roman", serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: 18px;
	text-transform: uppercase;
}

.lht-blog-cta__button-arrow {
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	line-height: 0;
}

.lht-blog-cta__button-arrow svg {
	display: block;
	width: 14px;
	height: 14px;
}

.lht-blog-content__main {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.lht-search-results__main {
	gap: 32px;
}

.lht-search-results__header {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lht-search-results__title {
	margin: 0;
	color: #0d1a2d;
	font-family: "Times New Roman", serif;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 36px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lht-search-results__description {
	margin: 0;
	color: #6b7280;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.lht-search-results__description strong {
	color: #0d1a2d;
	font-weight: 600;
}

.lht-search-results__empty {
	padding: 32px;
	border: 1px solid #f3f4f6;
	border-radius: 8px;
	background: #fff;
	color: #6b7280;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	line-height: 24px;
}

.lht-search-results__pagination {
	margin-top: 12px;
}

.lht-search-results__pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lht-search-results__pagination .page-numbers li {
	margin: 0;
}

.lht-search-results__pagination .page-numbers a,
.lht-search-results__pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
	color: #6b7280;
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
}

.lht-search-results__pagination .page-numbers .current {
	border-color: #c5a059;
	background: #c5a059;
	color: #fff;
}

.lht-search-results__pagination .page-numbers a:hover {
	border-color: #c5a059;
	color: #c5a059;
}

.lht-category-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 12px;
}

.lht-category-toolbar__title {
	margin: 0;
	color: #0d1a2d;
	font-family: "Times New Roman", serif;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 36px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.lht-category-toolbar__form {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	margin: 0;
}

.lht-category-toolbar__select {
	padding: 0 18px 0 0;
	border: 0;
	background: transparent;
	background-color: transparent;
	color: #0d1a2d;
	text-align: right;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 21px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	box-shadow: none;
	min-height: 21px;
	margin: 0;
}

.lht-category-toolbar__select:focus {
	outline: none;
}

.lht-category-toolbar__select::-ms-expand {
	display: none;
}

.lht-category-toolbar__form::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 10px;
	height: 6px;
	transform: translateY(-50%);
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%230D1A2D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

.lht-blog-article-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.lht-blog-article-card {
	display: grid;
	grid-template-columns: 400px minmax(0, 1fr);
	align-items: stretch;
	gap: 30px;
	padding: 0;
	border-radius: 8px;
	border: 1px solid #f3f4f6;
	background: #fff;
	overflow: hidden;
}

.lht-blog-article-card__image-wrap {
	display: block;
}

.lht-blog-article-card__image {
	display: block;
	width: 100%;
	max-width: 400px;
	height: 250px;
	object-fit: cover;
}

.lht-blog-article-card__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
	padding: 24px 24px 24px 0;
	min-width: 0;
}

.lht-blog-article-card__title {
	margin: 0;
}

.lht-blog-article-card__title a {
	display: -webkit-box;
	overflow: hidden;
	color: #0d1a2d;
	font-family: "Times New Roman", serif;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
	letter-spacing: 0.22px;
	text-decoration: none;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.lht-blog-article-card__title a:hover {
	color: var(--fs-color-primary);
}

.lht-blog-article-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	color: #6b7280;
	text-align: justify;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.lht-blog-pagination-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
	justify-content: center;
}

.lht-blog-pagination-controls button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 11px 17px;
	border: 1px solid #dbe2ea;
	border-radius: 8px;
	background: #fff;
	color: #0d1a2d;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px;
	cursor: pointer;
	margin: 0;
	min-height: 42px;
}

.lht-blog-pagination-controls button.is-active {
	border-color: #c5a059;
	background: #c5a059;
	color: #fff;
}

.lht-blog-pagination-controls button:hover:not(.is-active) {
	border-color: #c5a059;
}

.lht-blog-pagination-controls .site-pagination-step-prev,
.lht-blog-pagination-controls .site-pagination-step,
.lht-blog-pagination-controls .site-pagination-edge-prev,
.lht-blog-pagination-controls .site-pagination-edge {
	padding: 10px;
}

.lht-blog-pagination-controls .site-pagination-step-prev svg,
.lht-blog-pagination-controls .site-pagination-step svg,
.lht-blog-pagination-controls .site-pagination-edge-prev svg,
.lht-blog-pagination-controls .site-pagination-edge svg {
	display: block;
	width: 20px;
	height: 20px;
}

.lht-single-post-section {
	background: #fff;
}

.lht-single-post-card {
	padding: 42px 30px;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	background: #f9fafb;
}

.lht-single-post__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.lht-single-post__category,
.lht-single-post__date,
.lht-single-post__separator {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 15px;
	text-transform: uppercase;
}

.lht-single-post__category {
	color: #c5a059;
}

.lht-single-post__date,
.lht-single-post__separator {
	color: #9ca3af;
}

.lht-single-post-card__title {
	margin: 0 0 24px;
	color: #0d1a2d;
	text-align: justify;
	font-family: "Times New Roman", serif;
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

.lht-single-post-card__content {
	color: #0d1a2d;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
}

.lht-single-post-card__content > *:first-child {
	margin-top: 0;
}

.lht-single-post-card__content > *:last-child {
	margin-bottom: 0;
}

.lht-single-post-card__content p,
.lht-single-post-card__content li,
.lht-single-post-card__content blockquote,
.lht-single-post-card__content figcaption {
	color: #0d1a2d;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
}

.lht-single-post-card__content h2,
.lht-single-post-card__content h3,
.lht-single-post-card__content h4,
.lht-single-post-card__content h5,
.lht-single-post-card__content h6 {
	color: #0d1a2d;
	font-family: "Times New Roman", serif;
	font-weight: 700;
}

.lht-single-post-card__content a {
	color: var(--fs-color-primary);
}

.lht-single-post-card__content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.lht-single-post-card__footer {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 32px;
}

.lht-single-post-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: top;
	gap: 12px;
}

.lht-single-post-actions__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	background: #2a384b;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	margin: 0;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lht-single-post-actions__button:hover,
.lht-single-post-actions__button.is-copied {
	border-color: #2a384b;
	background: var(--fs-color-primary);
	color: #fff;
}

.lht-single-post-actions__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	line-height: 0;
}

.lht-single-post-actions__icon svg {
	display: block;
	width: 20px;
	height: 20px;
}

.lht-single-post-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.lht-single-post-tags__label {
	color: #0d1a2d;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.lht-single-post-tags__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.lht-single-post-tags__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid #e5e7eb;
	background: #fff;
	color: #0d1a2d;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 19.2px;
	text-decoration: none;
}

.lht-single-post-tags__item:hover {
	border-color: var(--fs-color-primary);
	color: var(--fs-color-primary);
}

.lht-single-latest-posts {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.lht-single-latest-post {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
}

.lht-single-latest-post__thumb-link {
	display: block;
	text-decoration: none;
}

.lht-single-latest-post__image {
	display: block;
	width: 110px;
	height: 110px;
	border-radius: 8px 0 0 8px;
	object-fit: cover;
	background: #eef2f7;
}

.lht-single-latest-post__image--placeholder {
	display: block;
}

.lht-single-latest-post__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	min-width: 0;
}

.lht-single-latest-post__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.lht-single-latest-post__category,
.lht-single-latest-post__date,
.lht-single-latest-post__separator {
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 15px;
	text-transform: uppercase;
}

.lht-single-latest-post__category {
	color: #c5a059;
}

.lht-single-latest-post__date {
	color: #9ca3af;
}

.lht-single-latest-post__separator {
	color: #9ca3af;
}

.lht-single-latest-post__title {
	margin: 0;
}

.lht-single-latest-post__title a {
	display: -webkit-box;
	overflow: hidden;
	color: #0d1a2d;
	font-family: "Times New Roman", serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.18px;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.lht-single-latest-post__title a:hover {
	color: var(--fs-color-primary);
}

@media only screen and (max-width: 1366px) and (min-width: 850px) {
	.lht-blog-content__inner--page,
	.lht-blog-content__inner--category {
		grid-template-columns: 300px minmax(0, 1fr);
	}

	.lht-blog-content__inner--search {
		grid-template-columns: minmax(0, 1fr);
	}

	.lht-blog-article-card {
		grid-template-columns: 280px minmax(0, 1fr);
		gap: 18px;
	}

	.lht-blog-article-card__image {
		max-width: 280px;
		height: 200px;
	}

	.lht-blog-article-card__content {
		gap: 10px;
		padding: 18px 18px 18px 0;
	}

	.lht-blog-article-card__title a {
		font-size: 18px;
		line-height: 24px;
	}

	.lht-blog-article-card__excerpt {
		font-size: 15px;
		line-height: 22px;
		-webkit-line-clamp: 2;
	}
}

@media only screen and (max-width: 849px) {
	.lht-blog-banner {
		min-height: 260px;
	}

	.lht-blog-banner__title {
		font-size: 30px;
		line-height: 30px;
	}

	.lht-featured-posts__inner {
		padding-top: 72px;
		padding-bottom: 56px;
	}

	.lht-featured-posts__title {
		font-size: 30px;
		line-height: 30px;
	}

	.lht-featured-posts__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.lht-post-card {
		min-height: 380px;
	}

	.lht-featured-posts__secondary {
		grid-template-rows: none;
	}

	.lht-post-list-card__link {
		grid-template-columns: 160px minmax(0, 1fr);
	}

	.lht-post-list-card__image {
		width: 160px;
	}

	.lht-blog-content__inner {
		grid-template-columns: 1fr;
	}

	.lht-blog-content__inner--search {
		padding-top: 48px;
		padding-bottom: 64px;
	}

	.lht-blog-content__main {
		order: 1;
	}

	.lht-blog-content__sidebar {
		order: 2;
	}

	.lht-category-toolbar {
		flex-direction: column;
		align-items: flex-start;
	}

	.lht-category-toolbar__title {
		font-size: 30px;
		line-height: 30px;
	}

	.lht-search-results__title {
		font-size: 30px;
		line-height: 30px;
	}

	.lht-blog-article-card {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.lht-blog-article-card__image {
		max-width: none;
		height: 260px;
	}

	.lht-blog-article-card__content {
		padding: 24px;
	}

	.lht-single-post-card {
		padding: 32px 24px;
	}

	.lht-single-post-card__title {
		font-size: 26px;
		line-height: 34px;
	}

	.lht-single-post-card__footer {
		margin-top: 28px;
	}
}

@media only screen and (max-width: 549px) {
	.lht-featured-posts__inner {
		padding-top: 56px;
		padding-bottom: 40px;
	}

	.lht-featured-posts__heading {
		margin-bottom: 32px;
	}

	.lht-post-card {
		min-height: 320px;
	}

	.lht-post-card__content {
		padding: 0 20px 20px;
	}

	.lht-post-list-card__link {
		grid-template-columns: 1fr;
	}

	.lht-post-list-card__image {
		width: 100%;
		height: 220px;
		border-radius: 8px 8px 0 0;
	}

	.lht-blog-content__inner--page,
	.lht-blog-content__inner--category,
	.lht-blog-content__inner--single {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.lht-blog-content__inner--search {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.lht-category-toolbar__title {
		font-size: 24px;
		line-height: 28px;
	}

	.lht-search-results__title {
		font-size: 24px;
		line-height: 28px;
	}

	.lht-topic-box {
		padding: 20px;
	}

	.lht-topic-box__item {
		gap: 16px;
	}

	.lht-blog-cta__content {
		max-width: 100%;
	}

	.lht-blog-article-card__image {
		height: 220px;
	}

	.lht-blog-article-card__content {
		padding: 20px;
	}

	.lht-single-post-card {
		padding: 24px 20px;
	}

	.lht-single-post-card__title {
		font-size: 22px;
		line-height: 30px;
	}

	.lht-single-latest-post {
		grid-template-columns: 96px minmax(0, 1fr);
	}

	.lht-single-latest-post__image {
		width: 96px;
		height: 96px;
	}

	.lht-single-latest-post__title a {
		font-size: 16px;
	}

	.lht-single-post-tags {
		flex-direction: column;
		align-items: flex-start;
	}

	.lht-single-post-card__content,
	.lht-single-post-card__content p,
	.lht-single-post-card__content li,
	.lht-single-post-card__content blockquote,
	.lht-single-post-card__content figcaption {
		line-height: 28px;
	}
}
