/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Child theme for Asia Property Reviews.
Author: Asia Property Reviews
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

:root {
	--apr-red: #b91f2b;
	--apr-red-dark: #8f1720;
	--apr-ink: #111111;
	--apr-muted: #6f7478;
	--apr-line: #e9e5df;
	--apr-paper: #ffffff;
	--apr-warm: #f7f4ef;
	--apr-footer: #151515;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--apr-paper);
	color: var(--apr-ink);
	font-family: Arial, Helvetica, sans-serif;
}

a {
	color: inherit;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	top: 14px;
	left: 14px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--apr-ink);
	color: #ffffff;
	text-decoration: none;
}

.apr-site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid var(--apr-line);
	box-shadow: 0 8px 28px rgba(17, 17, 17, 0.04);
}

.apr-header-inner {
	display: grid;
	grid-template-columns: minmax(170px, 250px) minmax(0, 1fr) auto;
	align-items: center;
	gap: 30px;
	width: min(100%, 1280px);
	min-height: 92px;
	margin: 0 auto;
	padding: 14px 48px;
}

.apr-brand {
	display: flex;
	align-items: center;
	min-width: 0;
}

.apr-brand-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.apr-brand-logo,
.apr-brand img,
.apr-brand .custom-logo {
	display: block;
	width: auto;
	max-width: 210px;
	height: 66px;
	object-fit: contain;
}

.apr-primary-nav {
	display: flex;
	justify-content: center;
	min-width: 0;
}

.apr-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.apr-menu li {
	position: relative;
	margin: 0;
	padding: 0;
}

.apr-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--apr-ink);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 160ms ease;
}

.apr-menu a::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 4px;
	height: 2px;
	content: "";
	background: var(--apr-red);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 160ms ease;
}

.apr-menu a:hover,
.apr-menu a:focus,
.apr-menu .current-menu-item > a,
.apr-menu .current_page_item > a,
.apr-menu .current-menu-ancestor > a {
	color: var(--apr-red);
}

.apr-menu a:hover::after,
.apr-menu a:focus::after,
.apr-menu .current-menu-item > a::after,
.apr-menu .current_page_item > a::after,
.apr-menu .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.apr-menu .sub-menu,
.apr-mobile-menu-list .sub-menu {
	list-style: none;
}

.apr-primary-nav .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	min-width: 210px;
	margin: 0;
	padding: 12px 0;
	background: #ffffff;
	border: 1px solid var(--apr-line);
	box-shadow: 0 18px 35px rgba(17, 17, 17, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.apr-primary-nav li:hover > .sub-menu,
.apr-primary-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.apr-primary-nav .sub-menu a {
	justify-content: flex-start;
	width: 100%;
	min-height: 0;
	padding: 10px 18px;
	font-size: 12px;
	text-transform: none;
}

.apr-primary-nav .sub-menu a::after {
	display: none;
}

.apr-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
}

.apr-icon-button,
.apr-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	color: var(--apr-ink);
	background: transparent;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	text-decoration: none;
	transition: color 160ms ease, background 160ms ease;
}

.apr-icon-button:hover,
.apr-icon-button:focus,
.apr-menu-toggle:hover,
.apr-menu-toggle:focus {
	color: var(--apr-red);
	background: var(--apr-warm);
	outline: 0;
}

.apr-icon-button i,
.apr-menu-toggle i {
	font-size: 20px;
}

.apr-menu-toggle {
	display: none;
}

.apr-header-search-panel {
	background: #ffffff;
	border-top: 1px solid var(--apr-line);
	box-shadow: 0 18px 30px rgba(17, 17, 17, 0.08);
}

.apr-header-search-panel[hidden] {
	display: none;
}

.apr-header-search-inner {
	width: min(100%, 1280px);
	margin: 0 auto;
	padding: 16px 48px;
}

.apr-header-search-form {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr) 46px 46px;
	align-items: center;
	max-width: 760px;
	margin: 0 0 0 auto;
	background: #ffffff;
	border: 1px solid #dcdcdc;
}

.apr-header-search-form > i {
	margin-left: 14px;
	color: var(--apr-muted);
	font-size: 15px;
}

.apr-header-search-form input[type="search"] {
	min-width: 0;
	height: 46px;
	padding: 0 14px;
	color: var(--apr-ink);
	font: inherit;
	font-size: 15px;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.apr-header-search-form input[type="search"]:focus {
	outline: 0;
}

.apr-header-search-submit,
.apr-header-search-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	border-radius: 0;
	cursor: pointer;
}

.apr-header-search-submit {
	color: #ffffff;
	background: var(--apr-red);
}

.apr-header-search-submit:hover,
.apr-header-search-submit:focus {
	background: var(--apr-red-dark);
}

.apr-header-search-close {
	color: var(--apr-ink);
	background: #f4f4f4;
}

.apr-header-search-close:hover,
.apr-header-search-close:focus {
	color: var(--apr-red);
	background: var(--apr-warm);
}

.apr-mobile-panel {
	border-top: 1px solid var(--apr-line);
	background: #ffffff;
}

.apr-mobile-panel[hidden] {
	display: none;
}

.apr-mobile-menu-list {
	width: min(100%, 1280px);
	margin: 0 auto;
	padding: 10px 28px 28px;
	list-style: none;
}

.apr-mobile-menu-list li {
	border-bottom: 1px solid var(--apr-line);
}

.apr-mobile-menu-list a {
	display: flex;
	align-items: center;
	min-height: 48px;
	color: var(--apr-ink);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.apr-mobile-menu-list a:hover,
.apr-mobile-menu-list a:focus,
.apr-mobile-menu-list .current-menu-item > a,
.apr-mobile-menu-list .current_page_item > a {
	color: var(--apr-red);
}

.apr-mobile-menu-list .sub-menu {
	margin: 0 0 10px;
	padding: 0 0 0 18px;
}

.apr-mobile-menu-list .sub-menu li {
	border-bottom: 0;
}

.apr-mobile-menu-list .sub-menu a {
	min-height: 34px;
	color: var(--apr-muted);
	font-size: 12px;
	font-weight: 700;
	text-transform: none;
}

.site-main {
	min-height: 50vh;
}

.apr-page-content,
.apr-builder-content {
	width: 100%;
}

.apr-builder-content:empty {
	display: none;
}

.apr-search-results {
	padding: 58px 0 84px;
	background: #ffffff;
}

.apr-search-results-header {
	margin: 0 0 38px;
	padding: 0 0 26px;
	border-bottom: 1px solid var(--apr-line);
}

.apr-search-results-header h1 {
	max-width: 900px;
	margin: 0;
	color: var(--apr-ink);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.16;
}

.apr-search-results-header h1 span {
	color: var(--apr-red);
}

.apr-search-result-count {
	margin: 14px 0 0;
	color: var(--apr-muted);
	font-size: 14px;
}

.apr-search-empty {
	padding: 60px 24px;
	text-align: center;
	background: var(--apr-warm);
	border: 1px solid var(--apr-line);
}

.apr-search-empty > i {
	margin-bottom: 18px;
	color: var(--apr-red);
	font-size: 28px;
}

.apr-search-empty h2 {
	margin: 0 0 10px;
	font-size: 28px;
}

.apr-search-empty > p {
	margin: 0 0 24px;
	color: var(--apr-muted);
}

.apr-search-retry-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	width: min(100%, 560px);
	margin: 0 auto;
}

.apr-search-retry-form input[type="search"] {
	min-width: 0;
	height: 48px;
	padding: 0 15px;
	font: inherit;
	font-size: 14px;
	background: #ffffff;
	border: 1px solid #d6d6d6;
	border-radius: 0;
}

.apr-search-retry-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 12px 20px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	background: var(--apr-red);
	border: 0;
	border-radius: 0;
	cursor: pointer;
}

.apr-search-retry-form button:hover,
.apr-search-retry-form button:focus {
	background: var(--apr-red-dark);
}

.search .apr-site-footer {
	margin-top: 0;
}

.apr-site-footer {
	color: #ffffff;
	background: #111111;
	border-top: 3px solid var(--apr-red);
}

.apr-footer-inner {
	width: min(100%, 1280px);
	margin: 0 auto;
	padding: 58px 48px 28px;
}

.apr-footer-main {
	display: grid;
	grid-template-columns: minmax(280px, 1.5fr) minmax(150px, 0.65fr) minmax(180px, 0.8fr);
	gap: 64px;
	align-items: start;
}

.apr-footer-logo-link {
	display: inline-block;
	text-decoration: none;
}

.apr-footer-logo {
	display: block;
	width: 100%;
	max-width: 180px;
	height: auto;
	margin: 0;
}

.apr-footer-intro {
	max-width: 440px;
	margin: 22px 0 0;
	color: #c5c5c5;
	font-size: 14px;
	line-height: 1.75;
}

.apr-footer-column h2,
.apr-footer-widget-title {
	margin: 0 0 18px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
	text-transform: uppercase;
}

.apr-footer-column ul,
.apr-footer-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.apr-footer-column li,
.apr-footer-widget li {
	margin: 0 0 10px;
}

.apr-footer-column a,
.apr-footer-widget a,
.apr-footer-top-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #dddddd;
	font-size: 14px;
	line-height: 1.5;
	text-decoration: none;
	transition: color 160ms ease;
}

.apr-footer-column a i {
	color: var(--apr-red);
	font-size: 9px;
}

.apr-footer-column a:hover,
.apr-footer-column a:focus,
.apr-footer-widget a:hover,
.apr-footer-widget a:focus,
.apr-footer-top-link:hover,
.apr-footer-top-link:focus {
	color: #ffffff;
}

.apr-footer-widgets {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px;
	margin-top: 44px;
	padding-top: 34px;
	border-top: 1px solid #333333;
}

.apr-footer-widget {
	margin: 0;
}

.apr-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 44px;
	padding-top: 24px;
	border-top: 1px solid #333333;
}

.apr-footer-copy {
	margin: 0;
	color: #aaaaaa;
	font-size: 13px;
	line-height: 1.7;
}

.apr-footer-top-link {
	color: #aaaaaa;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

@media (max-width: 1100px) {
	.apr-header-inner {
		grid-template-columns: minmax(150px, 210px) minmax(0, 1fr) auto;
		gap: 20px;
		padding: 14px 30px;
	}

	.apr-menu {
		gap: 0 18px;
	}

	.apr-menu a {
		font-size: 11px;
	}
}

@media (max-width: 900px) {
	.apr-site-header {
		position: sticky;
	}

	.apr-header-inner {
		grid-template-columns: minmax(120px, 1fr) auto;
		min-height: 78px;
		padding: 10px 22px;
	}

	.apr-brand-logo,
	.apr-brand img,
	.apr-brand .custom-logo {
		max-width: 158px;
		height: 58px;
	}

	.apr-primary-nav {
		display: none;
	}

	.apr-menu-toggle {
		display: inline-flex;
	}

	.apr-header-actions {
		gap: 8px;
	}

	.apr-footer-inner {
		padding: 48px 30px 26px;
	}

	.apr-footer-main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 38px;
	}

	.apr-footer-brand {
		grid-column: 1 / -1;
	}

	.apr-footer-widgets {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.apr-header-inner {
		padding: 10px 16px;
	}

	.apr-icon-button,
	.apr-menu-toggle {
		width: 38px;
		height: 38px;
	}

	.apr-footer-inner {
		padding: 42px 20px 24px;
	}

	.apr-footer-main,
	.apr-footer-widgets {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.apr-footer-brand {
		grid-column: auto;
	}

	.apr-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
		margin-top: 34px;
	}
}

.blog .apr-site-footer,
.archive .apr-site-footer,
.single-post .apr-site-footer {
	margin-top: 0;
}

.apr-container {
	width: min(100%, 1280px);
	margin: 0 auto;
	padding: 0 48px;
}

.apr-page-hero {
	display: flex;
	align-items: center;
	min-height: 330px;
	color: #ffffff;
	background-color: #151515;
	background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.48));
	background-position: center;
	background-size: cover;
	border-bottom: 1px solid var(--apr-line);
}

.apr-page-hero .apr-container {
	padding-top: 56px;
	padding-bottom: 56px;
}

.apr-page-hero h1 {
	max-width: 560px;
	margin: 0 0 16px;
	color: #ffffff;
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 800;
	line-height: 1.04;
}

.apr-page-hero p,
.apr-hero-description {
	max-width: 520px;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 16px;
	line-height: 1.7;
}

.apr-hero-description p {
	margin: 0;
}

.apr-kicker {
	display: inline-flex;
	margin: 0 0 14px;
	color: var(--apr-red);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.apr-archive-section,
.apr-single-wrap,
.apr-related-section {
	padding: 44px 0 80px;
	background: #ffffff;
}

.apr-related-section {
	padding-top: 0;
}

.apr-category-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px 26px;
	margin: 0 0 38px;
	padding: 0 0 18px;
	border-bottom: 1px solid var(--apr-line);
}

.apr-category-tabs a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	color: var(--apr-ink);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.apr-category-tabs a::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -19px;
	height: 2px;
	content: "";
	background: var(--apr-red);
	transform: scaleX(0);
	transition: transform 160ms ease;
}

.apr-category-tabs a:hover,
.apr-category-tabs a:focus,
.apr-category-tabs a.is-active {
	color: var(--apr-red);
}

.apr-category-tabs a:hover::after,
.apr-category-tabs a:focus::after,
.apr-category-tabs a.is-active::after {
	transform: scaleX(1);
}

.apr-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 0 0 26px;
}

.apr-section-head h2 {
	position: relative;
	margin: 0;
	padding-bottom: 12px;
	color: var(--apr-ink);
	font-size: 22px;
	font-weight: 800;
	text-transform: uppercase;
}

.apr-section-head h2::after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 44px;
	height: 2px;
	content: "";
	background: var(--apr-red);
}

.apr-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.apr-post-list {
	display: grid;
	gap: 30px;
}

.apr-post-card {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid var(--apr-line);
	box-shadow: 0 14px 32px rgba(17, 17, 17, 0.05);
}

.apr-post-card-media {
	display: block;
	overflow: hidden;
	background: #141414;
	text-decoration: none;
}

.apr-post-card-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 240ms ease;
}

.apr-post-card-media:hover .apr-post-card-image,
.apr-post-card-media:focus .apr-post-card-image {
	transform: scale(1.035);
}

.apr-image-placeholder {
	min-height: 210px;
	padding: 24px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
	background:
		linear-gradient(135deg, rgba(185, 31, 43, 0.78), rgba(17, 17, 17, 0.9)),
		linear-gradient(90deg, #151515, #2b2b2b);
}

.apr-fallback-image {
	background: #151515;
	object-fit: cover;
}

.apr-post-card-body {
	padding: 22px 22px 24px;
}

.apr-post-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin: 0 0 14px;
	color: var(--apr-muted);
	font-size: 12px;
	line-height: 1.4;
}

.apr-post-category {
	color: var(--apr-red);
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.apr-post-category:hover,
.apr-post-category:focus {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.apr-post-card-title {
	margin: 0 0 12px;
	color: var(--apr-ink);
	font-size: 21px;
	font-weight: 800;
	line-height: 1.24;
}

.apr-post-card-title a {
	color: inherit;
	text-decoration: none;
}

.apr-post-card-title a:hover,
.apr-post-card-title a:focus {
	color: var(--apr-red);
}

.apr-post-card p {
	margin: 0 0 18px;
	color: #555b60;
	font-size: 14px;
	line-height: 1.65;
}

.apr-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--apr-red);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.apr-read-more:hover,
.apr-read-more:focus {
	color: var(--apr-red-dark);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.apr-post-card-list {
	display: grid;
	grid-template-columns: minmax(220px, 42%) minmax(0, 1fr);
	align-items: stretch;
	box-shadow: none;
}

.apr-post-card-list .apr-post-card-media,
.apr-post-card-list .apr-post-card-image {
	height: 100%;
	min-height: 220px;
}

.apr-post-card-list .apr-post-card-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 28px 32px;
}

.apr-post-card-list .apr-post-card-title {
	font-size: 24px;
}

.apr-content-with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 306px;
	gap: 48px;
	align-items: start;
}

.apr-sidebar {
	position: sticky;
	top: 120px;
	min-width: 0;
}

.apr-sidebar-widget {
	margin: 0 0 42px;
}

.apr-sidebar-widget h2 {
	position: relative;
	margin: 0 0 22px;
	padding-bottom: 12px;
	color: var(--apr-ink);
	font-size: 17px;
	font-weight: 800;
	text-transform: uppercase;
}

.apr-sidebar-widget h2::after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 34px;
	height: 2px;
	content: "";
	background: var(--apr-red);
}

.apr-sidebar-category-list,
.apr-popular-posts {
	margin: 0;
	padding: 0;
	list-style: none;
}

.apr-sidebar-category-list li {
	border-bottom: 1px solid var(--apr-line);
}

.apr-sidebar-category-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 42px;
	color: #333333;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.apr-sidebar-category-list a:hover,
.apr-sidebar-category-list a:focus {
	color: var(--apr-red);
}

.apr-popular-posts {
	display: grid;
	gap: 18px;
	counter-reset: popular-posts;
}

.apr-popular-posts li {
	display: grid;
	grid-template-columns: 26px 70px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
}

.apr-popular-rank {
	color: #b9b9b9;
	font-size: 30px;
	font-weight: 300;
	line-height: 1;
}

.apr-popular-media {
	display: block;
	overflow: hidden;
	background: #151515;
}

.apr-popular-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 58px;
	object-fit: cover;
}

.apr-popular-image.apr-image-placeholder {
	min-height: 58px;
	padding: 6px;
	font-size: 8px;
}

.apr-popular-title {
	display: block;
	margin: 0 0 5px;
	color: var(--apr-ink);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	text-decoration: none;
}

.apr-popular-title:hover,
.apr-popular-title:focus {
	color: var(--apr-red);
}

.apr-popular-posts time {
	color: var(--apr-muted);
	font-size: 12px;
}

.apr-pagination {
	display: flex;
	justify-content: center;
	margin: 38px 0 0;
}

.apr-pagination ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.apr-pagination a,
.apr-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 12px;
	color: var(--apr-ink);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	border: 1px solid var(--apr-line);
}

.apr-pagination .current,
.apr-pagination a:hover,
.apr-pagination a:focus {
	color: #ffffff;
	background: var(--apr-red);
	border-color: var(--apr-red);
}

.apr-empty-state {
	padding: 52px;
	text-align: center;
	border: 1px solid var(--apr-line);
	background: var(--apr-warm);
}

.apr-empty-state h2 {
	margin: 0 0 10px;
	font-size: 26px;
}

.apr-empty-state p {
	margin: 0;
	color: var(--apr-muted);
}

.apr-blog-shortcode {
	width: 100%;
	background: #ffffff;
}

body.category .site-main {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.apr-latest-articles {
	width: 100%;
}

.apr-latest-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.apr-latest-articles .apr-post-card {
	display: flex;
	flex-direction: column;
	box-shadow: none;
}

.apr-latest-articles .apr-post-card-image {
	aspect-ratio: 16 / 9;
}

.apr-latest-articles .apr-post-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 26px;
}

.apr-latest-articles .apr-post-meta {
	margin-bottom: 20px;
	font-size: 12px;
}

.apr-latest-articles .apr-post-card-title {
	margin-bottom: 16px;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
}

.apr-latest-articles .apr-post-card p {
	margin-bottom: 24px;
	font-size: 15px;
	line-height: 1.8;
}

.apr-latest-articles .apr-read-more {
	margin-top: auto;
	font-size: 12px;
}

.apr-contact-form {
	display: grid;
	gap: 14px;
	width: 100%;
}

.apr-contact-form p,
.apr-contact-field {
	margin: 0;
}

.apr-contact-form .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.apr-contact-form input[type="text"],
.apr-contact-form input[type="email"],
.apr-contact-form input[type="tel"],
.apr-contact-form textarea {
	display: block;
	width: 100%;
	color: var(--apr-ink);
	font: inherit;
	font-size: 14px;
	line-height: 1.5;
	background: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 0;
	box-shadow: none;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.apr-contact-form input[type="text"],
.apr-contact-form input[type="email"],
.apr-contact-form input[type="tel"] {
	height: 52px;
	padding: 0 16px;
}

.apr-contact-form textarea {
	min-height: 180px;
	padding: 15px 16px;
	resize: vertical;
}

.apr-contact-form input::placeholder,
.apr-contact-form textarea::placeholder {
	color: #777777;
	opacity: 1;
}

.apr-contact-form input:focus,
.apr-contact-form textarea:focus {
	border-color: var(--apr-red);
	outline: 0;
	box-shadow: 0 0 0 2px rgba(185, 31, 43, 0.14);
}

.apr-contact-form .wpcf7-not-valid {
	border-color: var(--apr-red);
}

.apr-contact-form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	color: var(--apr-red-dark);
	font-size: 12px;
	line-height: 1.4;
}

.apr-contact-submit-row {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-self: start;
	margin-top: 4px;
}

.apr-contact-form .apr-contact-submit {
	min-height: 48px;
	margin: 0;
	padding: 13px 48px 13px 22px;
	color: #ffffff;
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
	background: var(--apr-red);
	border: 0;
	border-radius: 0;
	cursor: pointer;
	transition: background 160ms ease;
}

.apr-contact-form .apr-contact-submit:hover,
.apr-contact-form .apr-contact-submit:focus {
	background: var(--apr-red-dark);
	outline: 0;
}

.apr-contact-form .apr-contact-submit:disabled {
	cursor: wait;
	opacity: 0.7;
}

.apr-contact-submit-row > i {
	position: absolute;
	top: 50%;
	right: 20px;
	color: #ffffff;
	font-size: 12px;
	pointer-events: none;
	transform: translateY(-50%);
}

.apr-contact-submit-row .wpcf7-spinner {
	position: absolute;
	left: calc(100% + 10px);
	margin: 0;
}

.wpcf7 form .wpcf7-response-output {
	margin: 18px 0 0;
	padding: 12px 14px;
	font-size: 13px;
	line-height: 1.5;
	border: 1px solid var(--apr-line);
	border-radius: 0;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #2f7d4a;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	border-color: var(--apr-red);
}

.apr-blog-hero {
	color: #ffffff;
	background: #0b0b0b;
}

.apr-blog-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(480px, 1.05fr);
	width: min(100%, 1280px);
	min-height: 430px;
	margin: 0 auto;
}

.apr-blog-hero-copy {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 68px 32px 68px 48px;
}

.apr-blog-eyebrow {
	margin: 0 0 18px;
	color: var(--apr-red);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: uppercase;
}

.apr-blog-hero-copy h1 {
	max-width: 660px;
	margin: 0 0 22px;
	color: #ffffff;
	font-size: 54px;
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: 0;
}

.apr-blog-hero-copy > p:last-child {
	max-width: 580px;
	margin: 0;
	color: #d8d8d8;
	font-size: 17px;
	line-height: 1.8;
}

.apr-blog-hero-copy .apr-hero-description {
	max-width: 580px;
	color: #d8d8d8;
	font-size: 17px;
	line-height: 1.8;
}

.apr-blog-hero-media {
	position: relative;
	min-height: 430px;
	overflow: hidden;
}

.apr-blog-hero-media::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, #0b0b0b 0%, rgba(11, 11, 11, 0.5) 38%, rgba(11, 11, 11, 0) 100%);
}

.apr-blog-hero-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
}

.apr-blog-filter-wrap {
	width: min(100%, 1180px);
	margin: 0 auto;
	padding: 44px 32px 20px;
}

.apr-blog-shortcode .apr-category-tabs {
	justify-content: flex-start;
	gap: 12px;
	margin: 0;
	padding: 0;
	border: 0;
}

.apr-blog-shortcode .apr-category-tabs a {
	min-height: 40px;
	padding: 12px 18px;
	color: var(--apr-ink);
	font-size: 12px;
	line-height: 1.3;
	letter-spacing: 0;
	background: #f5f5f5;
}

.apr-blog-shortcode .apr-category-tabs a::after {
	display: none;
}

.apr-blog-shortcode .apr-category-tabs a:hover,
.apr-blog-shortcode .apr-category-tabs a:focus,
.apr-blog-shortcode .apr-category-tabs a.is-active {
	color: #ffffff;
	background: var(--apr-red);
}

.apr-blog-content {
	padding: 30px 0 90px;
}

.apr-blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 2.2fr) 300px;
	gap: 48px;
	align-items: start;
	width: min(100%, 1180px);
	margin: 0 auto;
	padding: 0 32px;
}

.apr-blog-layout-full {
	grid-template-columns: minmax(0, 1fr);
}

.apr-blog-feed {
	min-width: 0;
}

.apr-featured-post {
	overflow: hidden;
	margin: 0 0 38px;
	background: #ffffff;
	border: 1px solid var(--apr-line);
}

.apr-featured-media {
	position: relative;
	display: block;
	overflow: hidden;
	height: 430px;
	background: #141414;
}

.apr-featured-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.apr-featured-media:hover .apr-featured-image,
.apr-featured-media:focus .apr-featured-image {
	transform: scale(1.025);
}

.apr-featured-label {
	position: absolute;
	top: 24px;
	left: 24px;
	padding: 10px 16px;
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: uppercase;
	background: var(--apr-red);
}

.apr-featured-body {
	padding: 34px;
}

.apr-featured-body .apr-post-meta {
	margin-bottom: 18px;
}

.apr-featured-body h2 {
	margin: 0 0 18px;
	color: var(--apr-ink);
	font-size: 40px;
	font-weight: 500;
	line-height: 1.18;
	letter-spacing: 0;
}

.apr-featured-body h2 a {
	color: inherit;
	text-decoration: none;
}

.apr-featured-body h2 a:hover,
.apr-featured-body h2 a:focus {
	color: var(--apr-red);
}

.apr-featured-body > p {
	margin: 0 0 28px;
	color: #555555;
	font-size: 16px;
	line-height: 1.85;
}

.apr-blog-shortcode .apr-post-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.apr-blog-shortcode .apr-blog-layout:not(.apr-blog-layout-full) .apr-post-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.apr-blog-shortcode .apr-post-card {
	display: flex;
	flex-direction: column;
	box-shadow: none;
}

.apr-blog-shortcode .apr-post-card-image {
	aspect-ratio: 16 / 9;
}

.apr-blog-shortcode .apr-post-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px 18px 20px;
}

.apr-blog-shortcode .apr-post-meta {
	margin-bottom: 10px;
	font-size: 11px;
}

.apr-blog-shortcode .apr-post-card-title {
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 1.26;
}

.apr-blog-shortcode .apr-post-card p {
	margin-bottom: 16px;
	font-size: 13px;
	line-height: 1.58;
}

.apr-blog-shortcode .apr-read-more {
	margin-top: auto;
	font-size: 11px;
}

.apr-blog-shortcode .apr-pagination {
	margin-top: 48px;
}

.apr-blog-shortcode .apr-pagination a,
.apr-blog-shortcode .apr-pagination span {
	min-width: 38px;
	height: 38px;
	background: #f5f5f5;
	border: 0;
}

.apr-blog-shortcode .apr-pagination .current,
.apr-blog-shortcode .apr-pagination a:hover,
.apr-blog-shortcode .apr-pagination a:focus {
	color: #ffffff;
	background: var(--apr-red);
}

.apr-blog-sidebar {
	top: 118px;
}

.apr-blog-sidebar .apr-sidebar-widget {
	margin: 0 0 32px;
	padding: 28px;
	background: #ffffff;
	border: 1px solid var(--apr-line);
}

.apr-blog-sidebar .apr-sidebar-widget h2,
.apr-blog-sidebar .apr-newsletter-title {
	margin: 0 0 20px;
	padding: 0;
	font-size: 20px;
	line-height: 1.25;
	letter-spacing: 0;
}

.apr-blog-sidebar .apr-sidebar-widget h2::after,
.apr-blog-sidebar .apr-newsletter-title::after {
	display: none;
}

.apr-blog-search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 48px;
}

.apr-blog-search-form input[type="search"] {
	min-width: 0;
	height: 48px;
	padding: 0 14px;
	color: var(--apr-ink);
	font: inherit;
	font-size: 14px;
	background: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 0;
}

.apr-blog-search-form input[type="search"]:focus {
	outline: 2px solid rgba(185, 31, 43, 0.25);
	outline-offset: 1px;
}

.apr-blog-search-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	color: #ffffff;
	background: var(--apr-red);
	border: 0;
	border-radius: 0;
	cursor: pointer;
}

.apr-blog-search-form button:hover,
.apr-blog-search-form button:focus {
	background: var(--apr-red-dark);
}

.apr-blog-search-form button i {
	font-size: 16px;
}

.apr-blog-sidebar .apr-sidebar-category-list a {
	min-height: 46px;
	font-size: 15px;
	font-weight: 400;
}

.apr-blog-sidebar .apr-category-count {
	color: var(--apr-muted);
	font-size: 13px;
}

.apr-blog-sidebar .apr-popular-posts {
	gap: 20px;
}

.apr-blog-sidebar .apr-popular-posts li {
	grid-template-columns: 26px 76px minmax(0, 1fr);
	gap: 14px;
}

.apr-blog-sidebar .apr-popular-rank {
	color: var(--apr-red);
	font-size: 22px;
	font-weight: 700;
}

.apr-blog-sidebar .apr-popular-image {
	width: 76px;
	height: 62px;
}

.apr-blog-sidebar .apr-popular-title {
	font-size: 14px;
}

.apr-blog-sidebar .apr-blog-newsletter {
	padding: 32px;
	background: var(--apr-warm);
	border: 0;
}

.apr-newsletter-icon {
	margin: 0 0 14px;
	color: var(--apr-red);
	font-size: 28px;
}

.apr-blog-newsletter p {
	margin: 0 0 22px;
	color: #555555;
	font-size: 15px;
	line-height: 1.75;
}

.apr-newsletter-button,
.apr-blog-newsletter input[type="submit"],
.apr-blog-newsletter button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 20px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	background: var(--apr-red);
	border: 0;
	border-radius: 0;
}

.apr-newsletter-button:hover,
.apr-newsletter-button:focus,
.apr-blog-newsletter input[type="submit"]:hover,
.apr-blog-newsletter input[type="submit"]:focus,
.apr-blog-newsletter button:hover,
.apr-blog-newsletter button:focus {
	color: #ffffff;
	background: var(--apr-red-dark);
}

.apr-blog-newsletter input[type="email"],
.apr-blog-newsletter input[type="text"] {
	width: 100%;
	height: 48px;
	margin: 0 0 12px;
	padding: 0 14px;
	background: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 0;
}

.apr-blog-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.apr-blog-tags a {
	display: inline-flex;
	padding: 9px 12px;
	color: var(--apr-ink);
	font-size: 12px;
	line-height: 1.3;
	text-decoration: none;
	background: #f5f5f5;
}

.apr-blog-tags a:hover,
.apr-blog-tags a:focus {
	color: #ffffff;
	background: var(--apr-red);
}

.apr-single-layout {
	grid-template-columns: minmax(0, 1fr) 306px;
}

.apr-single-article {
	min-width: 0;
}

.apr-single-featured {
	overflow: hidden;
	margin: 0 0 30px;
	background: #151515;
}

.apr-single-featured img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 8;
	object-fit: cover;
}

.apr-single-header {
	padding: 0 0 26px;
	border-bottom: 1px solid var(--apr-line);
}

.apr-single-header h1 {
	max-width: 820px;
	margin: 0;
	color: var(--apr-ink);
	font-size: clamp(34px, 5vw, 52px);
	font-weight: 800;
	line-height: 1.08;
}

.apr-single-header .apr-post-meta {
	justify-content: flex-start;
	margin-bottom: 16px;
}

.apr-single-content {
	padding-top: 28px;
	color: #303438;
	font-size: 16px;
	line-height: 1.85;
}

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

.apr-single-content p,
.apr-single-content ul,
.apr-single-content ol {
	margin: 0 0 22px;
}

.apr-single-content h2,
.apr-single-content h3,
.apr-single-content h4 {
	margin: 38px 0 16px;
	color: var(--apr-ink);
	font-weight: 800;
	line-height: 1.25;
}

.apr-single-content h2 {
	font-size: 28px;
}

.apr-single-content h3 {
	font-size: 23px;
}

.apr-single-content img {
	max-width: 100%;
	height: auto;
}

.apr-single-content blockquote {
	margin: 32px 0;
	padding: 6px 0 6px 24px;
	color: var(--apr-ink);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
	border-left: 3px solid var(--apr-red);
}

.apr-single-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 34px 0 0;
}

.apr-single-tags a {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 12px;
	color: var(--apr-red);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	border: 1px solid rgba(185, 31, 43, 0.28);
}

.apr-single-tags a:hover,
.apr-single-tags a:focus {
	color: #ffffff;
	background: var(--apr-red);
}

.apr-post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 44px 0 0;
	padding-top: 24px;
	border-top: 1px solid var(--apr-line);
}

.apr-post-navigation div:last-child {
	text-align: right;
}

.apr-post-navigation a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--apr-ink);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.4;
	text-decoration: none;
}

.apr-post-navigation div:last-child a {
	justify-content: flex-end;
}

.apr-post-navigation a:hover,
.apr-post-navigation a:focus {
	color: var(--apr-red);
}

.apr-page-links {
	margin: 28px 0;
	font-weight: 800;
}

@media (max-width: 1100px) {
	.apr-container {
		padding-right: 30px;
		padding-left: 30px;
	}

	.apr-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.apr-content-with-sidebar,
	.apr-single-layout {
		grid-template-columns: minmax(0, 1fr) 280px;
		gap: 34px;
	}
}

@media (max-width: 900px) {
	.apr-container {
		padding-right: 24px;
		padding-left: 24px;
	}

	.apr-page-hero {
		min-height: 300px;
	}

	.apr-content-with-sidebar,
	.apr-single-layout {
		grid-template-columns: 1fr;
	}

	.apr-sidebar {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px;
	}

	.apr-sidebar-widget {
		margin-bottom: 0;
	}
}

@media (max-width: 720px) {
	.apr-page-hero h1 {
		font-size: 36px;
	}

	.apr-post-grid {
		grid-template-columns: 1fr;
	}

	.apr-post-card-list {
		grid-template-columns: 1fr;
	}

	.apr-post-card-list .apr-post-card-media,
	.apr-post-card-list .apr-post-card-image {
		height: auto;
		min-height: 0;
	}

	.apr-sidebar {
		grid-template-columns: 1fr;
	}

	.apr-single-featured img {
		aspect-ratio: 16 / 10;
	}

	.apr-post-navigation {
		grid-template-columns: 1fr;
	}

	.apr-post-navigation div:last-child {
		text-align: left;
	}
}

@media (max-width: 620px) {
	.apr-container {
		padding-right: 16px;
		padding-left: 16px;
	}

	.apr-page-hero .apr-container {
		padding-top: 42px;
		padding-bottom: 42px;
	}

	.apr-page-hero {
		min-height: 270px;
	}

	.apr-archive-section,
	.apr-single-wrap,
	.apr-related-section {
		padding: 34px 0 56px;
	}

	.apr-category-tabs {
		justify-content: flex-start;
		gap: 6px 18px;
		overflow-x: auto;
		padding-bottom: 14px;
	}

	.apr-category-tabs a {
		white-space: nowrap;
	}

	.apr-category-tabs a::after {
		bottom: -15px;
	}

	.apr-post-card-body,
	.apr-post-card-list .apr-post-card-body {
		padding: 20px;
	}

	.apr-post-meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.apr-single-header h1 {
		font-size: 33px;
	}

	.apr-empty-state {
		padding: 34px 20px;
	}
}

@media (max-width: 1100px) {
	.apr-blog-hero-copy {
		padding-left: 32px;
	}

	.apr-blog-hero-copy h1 {
		font-size: 46px;
	}

	.apr-blog-layout {
		grid-template-columns: minmax(0, 1fr) 280px;
		gap: 34px;
		padding-right: 30px;
		padding-left: 30px;
	}

	.apr-blog-layout-full {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 900px) {
	.apr-blog-hero-inner {
		grid-template-columns: 1fr;
	}

	.apr-blog-hero-copy {
		padding: 58px 30px;
	}

	.apr-blog-hero-copy h1 {
		font-size: 42px;
	}

	.apr-blog-hero-media,
	.apr-blog-hero-media img {
		min-height: 320px;
		height: 320px;
	}

	.apr-blog-hero-media::after {
		background: linear-gradient(180deg, #0b0b0b 0%, rgba(11, 11, 11, 0.38) 30%, rgba(11, 11, 11, 0) 100%);
	}

	.apr-blog-layout {
		grid-template-columns: 1fr;
	}

	.apr-blog-sidebar {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}

	.apr-blog-sidebar .apr-sidebar-widget {
		margin: 0;
	}
}

@media (max-width: 720px) {
	.apr-blog-hero-copy {
		padding: 48px 24px;
	}

	.apr-blog-hero-copy h1 {
		font-size: 36px;
	}

	.apr-blog-hero-copy > p:last-child {
		font-size: 16px;
		line-height: 1.7;
	}

	.apr-blog-hero-media,
	.apr-blog-hero-media img {
		min-height: 270px;
		height: 270px;
	}

	.apr-blog-filter-wrap {
		padding: 34px 24px 14px;
	}

	.apr-blog-shortcode .apr-category-tabs {
		gap: 8px;
		overflow: visible;
	}

	.apr-blog-shortcode .apr-category-tabs a {
		min-height: 38px;
		padding: 10px 14px;
		white-space: normal;
	}

	.apr-blog-content {
		padding: 24px 0 64px;
	}

	.apr-blog-layout {
		padding-right: 24px;
		padding-left: 24px;
	}

	.apr-featured-media {
		height: auto;
		aspect-ratio: 16 / 10;
	}

	.apr-featured-body {
		padding: 24px;
	}

	.apr-featured-body h2 {
		font-size: 30px;
	}

	.apr-blog-shortcode .apr-post-grid,
	.apr-blog-sidebar {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.apr-blog-hero-copy h1 {
		font-size: 32px;
	}

	.apr-blog-hero-media,
	.apr-blog-hero-media img {
		min-height: 230px;
		height: 230px;
	}

	.apr-blog-filter-wrap,
	.apr-blog-layout {
		padding-right: 16px;
		padding-left: 16px;
	}

	.apr-featured-label {
		top: 16px;
		left: 16px;
	}

	.apr-featured-body {
		padding: 20px;
	}

	.apr-featured-body h2 {
		font-size: 27px;
	}

	.apr-blog-sidebar .apr-sidebar-widget,
	.apr-blog-sidebar .apr-blog-newsletter {
		padding: 22px;
	}
}

@media (max-width: 900px) {
	.apr-latest-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.apr-latest-grid {
		grid-template-columns: 1fr;
	}

	.apr-latest-articles .apr-post-card-body {
		padding: 20px;
	}

	.apr-latest-articles .apr-post-card-title {
		font-size: 21px;
	}
}

@media (max-width: 720px) {
	.apr-search-results {
		padding: 42px 0 60px;
	}

	.apr-search-results-header h1 {
		font-size: 31px;
	}

	.apr-search-retry-form {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}

@media (max-width: 620px) {
	.apr-header-search-inner {
		padding: 12px 16px;
	}

	.apr-header-search-form {
		grid-template-columns: minmax(0, 1fr) 42px 42px;
	}

	.apr-header-search-form > i {
		display: none;
	}

	.apr-header-search-submit,
	.apr-header-search-close {
		width: 42px;
		height: 44px;
	}

	.apr-search-empty {
		padding: 42px 18px;
	}
}


.apr-about-faq-content{padding-top:20px !important;}
