/* Source: assets/css/pages/archive.css */
body.archive,
body.blog,
body.search{
	background:#f7f9fc;
}

.hs-archive-page{
	min-height:60vh;
	overflow:hidden;
	background:
		linear-gradient(180deg,#f5f8ff 0,#fff 470px);
	color:var(--hs-text);
}

.hs-archive-page *,
.hs-archive-page *::before,
.hs-archive-page *::after{
	box-sizing:border-box;
}

.hs-archive-page .hs-container{
	width:100%;
	max-width:var(--hs-container-width);
	margin-inline:auto;
	padding-inline:24px;
}

.hs-archive-hero{
	padding:46px 0 28px;
}

.hs-archive-hero__shell{
	display:grid;
	grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);
	gap:34px;
	align-items:center;
	padding:44px 48px;
	border:1px solid #dfe7f1;
	border-radius:26px;
	background:
		radial-gradient(circle at 92% 8%,rgba(37,99,235,.15),transparent 30%),
		linear-gradient(135deg,#fff,#f6f9ff);
	box-shadow:0 20px 56px rgba(15,23,42,.07);
}

.hs-archive-breadcrumb{
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	gap:8px;
	margin-bottom:22px;
	color:#94a3b8;
	font-size:13px;
}

.hs-archive-breadcrumb a{
	color:#64748b;
	text-decoration:none;
}

.hs-archive-breadcrumb a:hover{
	color:#1d4ed8;
}

.hs-archive-kicker{
	margin:0 0 8px;
	color:#2563eb;
	font-size:12px;
	font-weight:900;
	letter-spacing:.09em;
}

.hs-archive-hero h1{
	margin:0;
	color:#0f172a;
	font-size:clamp(38px,4.8vw,56px);
	line-height:1.13;
	letter-spacing:-.035em;
}

.hs-archive-hero__description{
	max-width:760px;
	margin:18px 0 0;
	color:#526078;
	font-size:16px;
	line-height:1.85;
}

.hs-archive-hero__meta{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	margin-top:24px;
}

.hs-archive-hero__meta span{
	padding:8px 12px;
	border:1px solid #dce6f1;
	border-radius:999px;
	background:rgba(255,255,255,.85);
	color:#64748b;
	font-size:13px;
}

.hs-archive-hero__meta strong{
	color:#1d4ed8;
}

.hs-archive-category-panel{
	padding:22px;
	border:1px solid rgba(255,255,255,.75);
	border-radius:18px;
	background:rgba(255,255,255,.76);
	box-shadow:0 12px 34px rgba(15,23,42,.05);
	backdrop-filter:blur(10px);
}

.hs-archive-category-panel > p{
	margin:0 0 13px;
	color:#172033;
	font-size:14px;
	font-weight:900;
}

.hs-archive-category-links{
	display:grid;
	gap:8px;
}

.hs-archive-category-links a{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:14px;
	padding:10px 12px;
	border-radius:9px;
	color:#475569;
	font-size:13px;
	font-weight:700;
	text-decoration:none;
	transition:background .18s ease,color .18s ease;
}

.hs-archive-category-links a:hover,
.hs-archive-category-links a[aria-current="page"]{
	background:#eff6ff;
	color:#1d4ed8;
}

.hs-archive-category-links small{
	display:inline-flex;
	min-width:28px;
	height:24px;
	align-items:center;
	justify-content:center;
	padding:0 7px;
	border-radius:999px;
	background:#eef2f7;
	color:#64748b;
	font-size:11px;
}

.hs-archive-category-links a[aria-current="page"] small{
	background:#dbeafe;
	color:#1d4ed8;
}

.hs-archive-content{
	padding:36px 0 72px;
}

.hs-archive-layout{
	display:grid;
	grid-template-columns:minmax(0,1fr) 300px;
	gap:30px;
	align-items:start;
}

.hs-archive-main{
	min-width:0;
}

.hs-archive-toolbar{
	display:flex;
	align-items:flex-end;
	justify-content:space-between;
	gap:30px;
	margin-bottom:22px;
}

.hs-archive-toolbar h2{
	margin:0;
	color:#0f172a;
	font-size:30px;
	line-height:1.3;
}

.hs-archive-toolbar > p{
	max-width:430px;
	margin:0 0 3px;
	color:#64748b;
	line-height:1.7;
	text-align:right;
}

.hs-archive-post-grid{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:20px;
}

.hs-archive-card{
	display:flex;
	min-width:0;
	overflow:hidden;
	flex-direction:column;
	border:1px solid #e1e8f0;
	border-radius:18px;
	background:#fff;
	box-shadow:0 11px 32px rgba(15,23,42,.04);
	transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}

.hs-archive-card:hover{
	transform:translateY(-4px);
	border-color:#cbd9ec;
	box-shadow:0 18px 44px rgba(15,23,42,.08);
}

.hs-archive-card__media{
	display:block;
	overflow:hidden;
	aspect-ratio:16/9;
	background:linear-gradient(135deg,#e7efff,#f5f8ff);
	text-decoration:none;
}

.hs-archive-card__media img{
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
	transition:transform .3s ease;
}

.hs-archive-card:hover .hs-archive-card__media img{
	transform:scale(1.035);
}

.hs-archive-card__placeholder{
	display:flex;
	width:100%;
	height:100%;
	align-items:center;
	justify-content:center;
	color:#2563eb;
	font-size:20px;
	font-weight:900;
}

.hs-archive-card__body{
	display:flex;
	flex:1;
	flex-direction:column;
	padding:22px;
}

.hs-archive-card__meta{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:14px;
	margin-bottom:10px;
	color:#94a3b8;
	font-size:12px;
}

.hs-archive-card__meta a{
	color:#2563eb;
	font-weight:800;
	text-decoration:none;
}

.hs-archive-card h2{
	display:-webkit-box;
	overflow:hidden;
	margin:0 0 11px;
	color:#172033;
	font-size:20px;
	line-height:1.45;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2;
}

.hs-archive-card h2 a{
	color:inherit;
	text-decoration:none;
}

.hs-archive-card p{
	display:-webkit-box;
	overflow:hidden;
	margin:0 0 18px;
	color:#64748b;
	font-size:14px;
	line-height:1.72;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:3;
}

.hs-archive-card__link{
	margin-top:auto;
	color:#1d4ed8;
	font-size:14px;
	font-weight:800;
	text-decoration:none;
}

.hs-archive-sidebar{
	min-width:0;
}

.hs-archive-sidebar__inner{
	position:sticky;
	top:calc(92px + var(--wp-admin--admin-bar--height, 0px));
	display:grid;
	gap:18px;
}

.hs-archive-widget{
	overflow:hidden;
	margin:0;
	padding:22px;
	border:1px solid #e1e8f0;
	border-radius:16px;
	background:#fff;
	box-shadow:0 10px 30px rgba(15,23,42,.045);
}

.hs-archive-widget__title,
.hs-archive-widget .widget-title,
.hs-archive-widget .wp-block-heading{
	margin:0 0 16px;
	color:#0f172a;
	font-size:18px;
	line-height:1.35;
}

.hs-archive-widget ul,
.hs-archive-widget ol{
	margin:0;
	padding:0;
	list-style:none;
}

.hs-archive-search-widget form,
.hs-archive-widget .wp-block-search__inside-wrapper{
	display:flex;
	gap:8px;
}

.hs-archive-search-widget label{
	display:none;
}

.hs-archive-search-widget input[type="search"],
.hs-archive-widget .wp-block-search__input{
	min-width:0;
	width:100%;
	min-height:42px;
	padding:9px 11px;
	border:1px solid #dbe4ee;
	border-radius:8px;
	background:#fff;
}

.hs-archive-search-widget input[type="submit"],
.hs-archive-widget .wp-block-search__button,
.hs-archive-widget button{
	min-height:42px;
	padding:9px 14px;
	border:0;
	border-radius:8px;
	background:#2563eb;
	color:#fff;
	font-weight:800;
	cursor:pointer;
}

.hs-archive-latest{
	counter-reset:archive-latest;
}

.hs-archive-latest li{
	position:relative;
	padding:13px 0 13px 34px;
	border-top:1px solid #edf1f5;
	counter-increment:archive-latest;
}

.hs-archive-latest li:first-child{
	padding-top:0;
	border-top:0;
}

.hs-archive-latest li::before{
	content:counter(archive-latest, decimal-leading-zero);
	position:absolute;
	top:13px;
	left:0;
	color:#2563eb;
	font-size:12px;
	font-weight:900;
}

.hs-archive-latest li:first-child::before{
	top:0;
}

.hs-archive-latest a{
	display:block;
	color:#172033;
	font-size:14px;
	font-weight:750;
	line-height:1.55;
	text-decoration:none;
}

.hs-archive-latest a:hover{
	color:#1d4ed8;
}

.hs-archive-latest time{
	display:block;
	margin-top:5px;
	color:#94a3b8;
	font-size:12px;
}

.hs-archive-category-widget li + li{
	border-top:1px solid #edf1f5;
}

.hs-archive-category-widget li a{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:16px;
	padding:11px 0;
	color:#334155;
	font-size:14px;
	text-decoration:none;
}

.hs-archive-category-widget li:first-child a{
	padding-top:0;
}

.hs-archive-category-widget li:last-child a{
	padding-bottom:0;
}

.hs-archive-category-widget li a:hover{
	color:#1d4ed8;
}

.hs-archive-category-widget small{
	display:inline-flex;
	min-width:28px;
	height:24px;
	align-items:center;
	justify-content:center;
	padding:0 7px;
	border-radius:999px;
	background:#eff6ff;
	color:#2563eb;
	font-size:11px;
	font-weight:800;
}

.hs-archive-cta{
	background:
		radial-gradient(circle at 90% 5%,rgba(255,255,255,.18),transparent 30%),
		linear-gradient(145deg,#1d4ed8,#3b82f6);
	color:#fff;
}

.hs-archive-cta__eyebrow{
	margin:0 0 7px;
	color:#bfdbfe;
	font-size:11px;
	font-weight:900;
	letter-spacing:.08em;
}

.hs-archive-cta h2{
	margin:0;
	color:#fff;
	font-size:20px;
	line-height:1.4;
}

.hs-archive-cta > p:not(.hs-archive-cta__eyebrow){
	margin:10px 0 18px;
	color:#dbeafe;
	font-size:14px;
	line-height:1.7;
}

.hs-archive-cta a{
	display:flex;
	min-height:42px;
	align-items:center;
	justify-content:center;
	padding:10px 14px;
	border-radius:9px;
	background:#fff;
	color:#1d4ed8;
	font-size:13px;
	font-weight:800;
	text-align:center;
	text-decoration:none;
}

.hs-archive-pagination{
	display:flex;
	justify-content:center;
	margin-top:38px;
}

.hs-archive-pagination .page-numbers{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:8px;
	margin:0;
	padding:0;
	list-style:none;
}

.hs-archive-pagination .page-numbers li{
	margin:0;
}

.hs-archive-pagination a,
.hs-archive-pagination span{
	display:flex;
	min-width:42px;
	height:42px;
	align-items:center;
	justify-content:center;
	padding:0 13px;
	border:1px solid #dce4ed;
	border-radius:9px;
	background:#fff;
	color:#475569;
	font-size:14px;
	font-weight:700;
	text-decoration:none;
}

.hs-archive-pagination a:hover{
	border-color:#b9cdf1;
	background:#eff6ff;
	color:#1d4ed8;
}

.hs-archive-pagination .current{
	border-color:#2563eb;
	background:#2563eb;
	color:#fff;
}

.hs-archive-pagination .dots{
	border-color:transparent;
	background:transparent;
}

.hs-archive-empty{
	padding:54px 28px;
	border:1px solid #e1e8f0;
	border-radius:18px;
	background:#fff;
	text-align:center;
}

.hs-archive-empty h2{
	margin:0;
	color:#172033;
}

.hs-archive-empty p{
	margin:10px 0 20px;
	color:#64748b;
}

.hs-archive-empty a{
	display:inline-flex;
	padding:11px 18px;
	border-radius:9px;
	background:#2563eb;
	color:#fff;
	font-weight:800;
	text-decoration:none;
}

@media(max-width:1000px){
	.hs-archive-hero__shell{
		grid-template-columns:1fr;
	}

	.hs-archive-category-links{
		grid-template-columns:repeat(2,minmax(0,1fr));
	}

	.hs-archive-layout{
		grid-template-columns:minmax(0,1fr) 270px;
		gap:22px;
	}
}

@media(max-width:860px){
	.hs-archive-layout{
		grid-template-columns:1fr;
	}

	.hs-archive-page .hs-archive-sidebar{
		display:block!important;
	}

	.hs-archive-sidebar__inner{
		position:static;
		grid-template-columns:repeat(2,minmax(0,1fr));
	}

	.hs-archive-cta{
		grid-column:1 / -1;
	}
}

@media(max-width:720px){
	.hs-archive-page .hs-container{
		padding-inline:18px;
	}

	.hs-archive-hero{
		padding:24px 0 18px;
	}

	.hs-archive-hero__shell{
		gap:26px;
		padding:28px 22px;
		border-radius:20px;
	}

	.hs-archive-hero h1{
		font-size:36px;
	}

	.hs-archive-category-links{
		grid-template-columns:1fr;
	}

	.hs-archive-content{
		padding:30px 0 52px;
	}

	.hs-archive-toolbar{
		display:block;
	}

	.hs-archive-toolbar > p{
		margin-top:10px;
		text-align:left;
	}

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

	.hs-archive-sidebar__inner{
		grid-template-columns:1fr;
	}

	.hs-archive-cta{
		grid-column:auto;
	}

	.hs-archive-pagination a,
	.hs-archive-pagination span{
		min-width:38px;
		height:38px;
		padding:0 10px;
		font-size:13px;
	}
}

/* Source: assets/css/layout/responsive.css */
.screen-reader-text{
	position:absolute!important;
	width:1px!important;
	height:1px!important;
	margin:-1px!important;
	padding:0!important;
	overflow:hidden!important;
	clip:rect(0,0,0,0)!important;
	clip-path:inset(50%)!important;
	border:0!important;
	white-space:nowrap!important;
}

.screen-reader-text:focus{
	z-index:100000!important;
	top:8px!important;
	left:8px!important;
	width:auto!important;
	height:auto!important;
	margin:0!important;
	padding:12px 16px!important;
	overflow:visible!important;
	clip:auto!important;
	clip-path:none!important;
	border-radius:8px;
	background:#fff;
	color:#0f172a;
	font-weight:800;
	box-shadow:0 10px 30px rgba(15,23,42,.18);
	white-space:normal!important;
}

.hs-skip-link{
	position:fixed!important;
}

:where(
	a,
	button,
	input,
	select,
	textarea,
	summary,
	[tabindex]:not([tabindex="-1"])
):focus-visible{
	outline:3px solid rgba(37,99,235,.32);
	outline-offset:3px;
}

:where(
	.hs-home-portal,
	.hs-city-page,
	.hs-business-page,
	.hs-city-category-page,
	.hs-archive-page,
	.hs-not-found-page,
	.hs-search,
	.hs-single,
	.hs-page,
	.hs-main
),
:where(
	.hs-single-layout,
	.hs-archive-layout,
	.hs-home-hero__shell,
	.hs-city-hero__shell,
	.hs-business-hero-card,
	.hs-not-found-hero__panel
),
:where(
	.hs-home-business-card,
	.hs-home-news-card,
	.hs-city-business-card,
	.hs-city-news-card,
	.hs-city-category-card,
	.hs-archive-card,
	.hs-article-card,
	.hs-related-card
){
	min-width:0;
}

:where(
	img,
	svg,
	video,
	canvas,
	iframe,
	embed,
	object
){
	max-width:100%;
}

:where(
	input,
	select,
	textarea,
	button
){
	max-width:100%;
	font:inherit;
}

:where(
	.hs-entry-content,
	.hs-business-details__content,
	.hs-business-facts,
	.hs-city-category-card__body,
	.hs-home-business-card__body,
	.hs-home-news-card__body,
	.hs-archive-card__body,
	.hs-not-found-request
) :where(a,p,li,dd,dt,strong,code){
	overflow-wrap:anywhere;
}

.hs-not-found-request code{
	white-space:normal;
	word-break:break-all;
}

.hs-menu-toggle{
	align-items:center;
	justify-content:center;
	border:1px solid transparent;
	border-radius:10px;
	background:transparent;
	color:#0f172a;
	cursor:pointer;
}

.hs-menu-toggle__line{
	display:block;
	width:22px;
	height:2px;
	border-radius:999px;
	background:currentColor;
	transform-origin:center;
	transition:transform .2s ease,opacity .2s ease;
}

.hs-menu-toggle[aria-expanded="true"] .hs-menu-toggle__line:nth-of-type(1){
	transform:translateY(7px) rotate(45deg);
}

.hs-menu-toggle[aria-expanded="true"] .hs-menu-toggle__line:nth-of-type(2){
	opacity:0;
}

.hs-menu-toggle[aria-expanded="true"] .hs-menu-toggle__line:nth-of-type(3){
	transform:translateY(-7px) rotate(-45deg);
}

body.hs-menu-open{
	overflow:hidden;
}

@media(max-width:1020px){
	.hs-related-grid{
		grid-template-columns:repeat(2,minmax(0,1fr));
	}

	.hs-not-found-service-grid,
	.hs-not-found-latest-grid{
		grid-template-columns:repeat(2,minmax(0,1fr));
	}
}

@media(max-width:900px){
	.hs-header__inner{
		position:relative;
		min-height:68px;
	}

	.hs-menu-toggle{
		display:flex;
		flex:0 0 44px;
		width:44px;
		height:44px;
		flex-direction:column;
		gap:5px;
	}

	.hs-navigation{
		z-index:1000;
		top:100%;
		max-height:calc(100vh - 68px - var(--wp-admin--admin-bar--height,0px));
		padding:12px 18px 20px;
		overflow-y:auto;
		border-top:1px solid #e7edf4;
		border-bottom:1px solid #dfe7f1;
		box-shadow:0 16px 34px rgba(15,23,42,.1);
		-webkit-overflow-scrolling:touch;
	}

	.hs-menu{
		display:grid;
		gap:0;
	}

	.hs-menu li{
		padding:0;
		border-bottom:1px solid #edf1f5;
	}

	.hs-menu li:last-child{
		border-bottom:0;
	}

	.hs-menu a{
		display:flex;
		min-height:46px;
		align-items:center;
		padding:10px 4px;
		overflow-wrap:anywhere;
	}

	.hs-menu .sub-menu{
		min-width:0;
		margin:0 0 8px;
		padding:0 0 0 15px;
		border:0;
		background:#f8fafc;
		border-radius:8px;
	}

	.hs-menu .sub-menu li{
		border-bottom:0;
	}

	.hs-menu .sub-menu a{
		min-height:42px;
		padding:8px 12px;
		font-size:14px;
	}
}

@media(max-width:860px){
	.hs-single-sidebar,
	.hs-archive-sidebar{
		width:100%;
	}

	.hs-single-sidebar__inner,
	.hs-archive-sidebar__inner{
		position:static!important;
	}

	.hs-sidebar-widget,
	.hs-archive-widget{
		min-width:0;
	}
}

@media(max-width:768px){
	:root{
		--hs-space-4:18px;
	}

	.hs-container{
		padding-inline:18px;
	}

	:where(
		.hs-home-button,
		.hs-city-page .hs-button,
		.hs-business-page .hs-button,
		.hs-not-found-button,
		.hs-city-category-back,
		.hs-back-to-top,
		.hs-sidebar-cta__button
	){
		min-height:44px;
	}

	:where(
		input[type="text"],
		input[type="email"],
		input[type="url"],
		input[type="search"],
		input[type="tel"],
		input[type="number"],
		select,
		textarea,
		button
	){
		min-height:44px;
	}

	.hs-breadcrumb,
	.hs-archive-breadcrumb,
	.hs-city-category-breadcrumb,
	.hs-not-found-breadcrumb{
		max-width:100%;
		overflow:hidden;
	}

	.hs-breadcrumb a,
	.hs-breadcrumb span,
	.hs-archive-breadcrumb a,
	.hs-archive-breadcrumb span,
	.hs-city-category-breadcrumb a,
	.hs-city-category-breadcrumb span,
	.hs-not-found-breadcrumb a,
	.hs-not-found-breadcrumb span{
		min-width:0;
		overflow:hidden;
		text-overflow:ellipsis;
		white-space:nowrap;
	}

	.hs-breadcrumb [aria-current="page"],
	.hs-archive-breadcrumb [aria-current="page"],
	.hs-city-category-breadcrumb [aria-current="page"]{
		flex:1 1 120px;
	}

	.hs-related-grid,
	.hs-not-found-service-grid,
	.hs-not-found-latest-grid{
		grid-template-columns:1fr;
	}

	.hs-related-posts__heading,
	.hs-not-found-section-heading{
		align-items:flex-start;
		flex-direction:column;
	}

	.hs-related-posts__heading > a,
	.hs-not-found-section-heading > a{
		min-height:44px;
		display:inline-flex;
		align-items:center;
	}

	.hs-post-navigation__item{
		min-height:104px;
	}

	.hs-author-box{
		align-items:start;
	}

	.hs-footer{
		padding-top:42px;
	}

	.hs-footer-bottom{
		line-height:1.7;
	}

	.hs-search{
		padding-top:30px;
		padding-bottom:52px;
	}

	.hs-search > h1{
		font-size:30px;
	}
}

@media(max-width:520px){
	.hs-container{
		padding-inline:16px;
	}

	.hs-brand-logo img,
	.hs-site-branding .custom-logo{
		max-width:min(184px,56vw);
		height:auto;
		max-height:40px;
	}

	.hs-article-header h1,
	.hs-home-hero h1,
	.hs-city-hero h1,
	.hs-city-category-hero h1,
	.hs-archive-hero h1,
	.hs-not-found-hero h1{
		font-size:clamp(29px,9vw,34px);
	}

	.hs-entry-content{
		padding:24px 18px;
	}

	.hs-author-box{
		grid-template-columns:48px minmax(0,1fr);
		gap:15px;
		padding:18px;
	}

	.hs-author-avatar img{
		width:48px;
		height:48px;
	}

	.hs-entry-meta{
		font-size:13px;
	}

	.hs-home-hero__stats{
		grid-template-columns:1fr;
	}

	.hs-not-found-actions,
	.hs-not-found-search__controls{
		width:100%;
		flex-direction:column;
	}

	.hs-not-found-button,
	.hs-not-found-search__controls button{
		width:100%;
		justify-content:center;
	}

	.hs-business-trust__links{
		flex-direction:column;
	}

	.hs-business-trust__links a{
		width:100%;
	}
}

@media(prefers-reduced-motion:reduce){
	html{
		scroll-behavior:auto!important;
	}

	*,
	*::before,
	*::after{
		scroll-behavior:auto!important;
		animation-duration:.01ms!important;
		animation-iteration-count:1!important;
		transition-duration:.01ms!important;
	}
}
