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

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: "Inter", sans-serif;
	color: #101828;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
}

@keyframes skeleton-shimmer {
	to {
		background-position: -200% 0;
	}
}

img[loading="lazy"] {
	opacity: 0.5;
	transition: opacity 0.4s ease-in-out;
	background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
	background-size: 200% 100%;
	animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

img[loading="lazy"].loaded {
	opacity: 1;
	animation: none;
	background: none;
}

ins.adsbygoogle[data-ad-status="unfilled"] {
	display: none !important;
}

/* ==================== HEADER ==================== */
.header {
	position: relative;
	width: 100%;
	height: 64px;
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid #e5e7eb;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
}

.mobile-nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 98;
}

.mobile-nav-overlay.open {
	display: block;
}

.header-inner {
	height: 100%;
	width: 100%;
	max-width: 1200px;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 50%;
}

.logo img {
	height: 100%;
	object-fit: contain;
}

.nav {
	display: flex;
	gap: 32px;
}

.nav a {
	font-size: 14px;
	font-weight: 600;
	color: #364153;
	text-transform: uppercase;
	letter-spacing: 0.2px;
	line-height: 20px;
}

.nav a:hover {
	color: #1174eb;
}

/* ==================== HERO ==================== */
.hero {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 450px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(../Images/s8/s8.avif);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-scroll-btn {
	position: absolute;
	bottom: -22px;
	left: 50%;
	z-index: 2;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid #000;
	background: #fff;
	backdrop-filter: blur(4px);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: hero-bounce 2s ease infinite;
	transition: background 0.2s, border-color 0.2s;
}

.hero-scroll-btn-svg {
	width: 26px;
	height: 26px;
	stroke: #000;
	fill: none;
	transform: rotate(90deg);
}

@keyframes hero-bounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
		animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
	}
	50% {
		transform: translateX(-50%) translateY(-20px);
		animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
	}
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.hero-content {
	position: relative;
	z-index: 3;
	max-width: 896px;
	text-align: center;
	padding: 0 40px;
}

.hero h1 {
	font-size: 48px;
	font-weight: 700;
	color: #fff;
	line-height: 62.4px;
	letter-spacing: 0.35px;
}

.hero-subtitle {
	font-size: 18px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	line-height: 30.6px;
	letter-spacing: -0.44px;
	margin-top: 16px;
}

.search-bar {
	position: relative;
	max-width: 848px;
	margin: 32px auto 0;
	height: 58px;
}

.search-input {
	width: 100%;
	height: 58px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 9999px;
	padding: 0 64px;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #101828;
	letter-spacing: -0.31px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 8px 10px -6px rgba(0, 0, 0, 0.1);
	outline: none;
}

.search-input::placeholder {
	color: #6a7282;
}

.search-icon-left {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	fill: none;
	stroke: #6a7282;
	pointer-events: none;
}

.search-icon-right {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s;
	stroke: #364153;
}

.search-icon-right:hover .search-icon-right-svg {
	stroke: #1174eb;
}

.search-icon-right::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	padding: 6px 12px;
	background: #1174eb;
	color: #fff;
	font-size: 13px;
	white-space: nowrap;
	border-radius: 6px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s;
}

.search-icon-right:hover::after {
	opacity: 1;
}

.search-icon-right-svg {
	width: 100%;
	height: 100%;
	transition: stroke 0.15s;
}

.search-icon-right.locating .search-icon-right-svg {
	animation: pulse-locate 1s ease-in-out infinite;
}

@keyframes pulse-locate {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
}

.search-suggestions {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 8px 10px -6px rgba(0, 0, 0, 0.1);
	z-index: 100;
	max-height: 320px;
	overflow-y: auto;
}

.search-suggestions.active {
	display: block;
}

.search-suggestion-item {
	list-style: none;
}

.search-suggestion-item.no-results {
	padding: 14px 20px;
	color: #9ca3af;
	font-size: 15px;
	text-align: center;
}

.search-suggestion-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 20px;
	cursor: pointer;
	transition: background 0.15s;
}

.search-suggestion-item:hover .search-suggestion-link,
.search-suggestion-link:hover {
	background: #f3f4f6;
}

.suggestion-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: #9ca3af;
}

.suggestion-text {
	text-align: start;
	font-size: 15px;
	font-weight: 400;
	color: #374151;
	line-height: 22px;
	display: -webkit-box;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-all;
}

.suggestion-text b {
	font-weight: 600;
	color: #101828;
}

.popular-cities {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
	flex-wrap: wrap;
}

.city-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 38px;
	padding: 0 16px 0 12px;
	background: #d4e5f7;
	border: 1px solid #d4e5f7;
	border-radius: 9999px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
	font-size: 12px;
	font-weight: 600;
	color: #101828;
	cursor: pointer;
}

.city-tag-icon {
	width: 20px;
	height: 20px;
	background: #1174eb;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.city-tag-icon-svg {
	width: 12px;
	height: 12px;
	fill: none;
	stroke: #fff;
}

/* ==================== FINDING AFFORDABLE HOUSING ==================== */
.section-finding {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.finding-icon {
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: linear-gradient(135deg, #1174eb 0%, #0d5fc4 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.finding-icon-svg {
	width: 28px;
	height: 28px;
	fill: #fff;
	stroke: #fff;
}

.finding-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.finding-content h2 {
	font-size: 30px;
	font-weight: 700;
	line-height: 39px;
	letter-spacing: 0.4px;
	color: #101828;
}

.finding-content p {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: -0.31px;
	color: #364153;
}

.finding-content .highlight {
	color: #1174eb;
	font-weight: 600;
}

/* ==================== ADVERTISEMENT ==================== */
.section-ad {
	padding: 24px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ads {
	width: 100%;
	max-width: 1100px;
}

/* ==================== SEARCH BY STATE ==================== */
.section-search {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	text-align: center;
}

.search-state-title-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.search-state-icon {
	width: 40px;
	height: 40px;
	background: #1174eb;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.search-state-icon-svg {
	width: 28px;
	height: 28px;
}

.section-search h2 {
	font-size: 30px;
	font-weight: 700;
	line-height: 39px;
	letter-spacing: 0.4px;
	color: #101828;
}

.section-search .search-desc {
	font-size: 18px;
	font-weight: 400;
	color: #4a5565;
	line-height: 30.6px;
	letter-spacing: -0.44px;
	margin-top: 12px;
}

.state-dropdown-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.state-dropdown {
	width: 448px;
	height: 66px;
	border: 3px solid #1174eb;
	border-radius: 24px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
	background: #fff;
	padding: 0 24px;
	padding-right: 48px;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	color: #4a5565;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpath d='M1 1l7 7 7-7' stroke='%234A5565' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 16px 10px;
	cursor: pointer;
	outline: none;
}

.map-container {
	margin-top: 48px;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 48px;
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
}

.map-container img {
	width: 100%;
	height: auto;
}

/* Inline US map SVG — responsive + theme */
#map {
	width: 100%;
	line-height: 0;
}

.map-container svg#USA {
	width: 100%;
	max-width: 1090px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.map-container a {
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.map-container a:focus-visible {
	outline: 2px solid #1174eb;
	outline-offset: 3px;
	border-radius: 2px;
}

.map-container .state {
	fill: #e8f3fc;
	stroke: #1174eb;
	stroke-width: 0.9;
	transition: fill 0.2s ease, stroke 0.2s ease;
}

.map-container a:hover .state,
.map-container a:focus-visible .state {
	fill: #1174eb;
	stroke: #0d5cb8;
}

.map-container #DC {
	fill: #e8f3fc;
	stroke: #1174eb;
	stroke-width: 0.9;
	transition: fill 0.2s ease, stroke 0.2s ease;
}

.map-container a:hover #DC,
.map-container a:focus-visible #DC {
	fill: #1174eb;
	stroke: #0d5cb8;
}

.map-container circle:not(#DC) {
	fill: #fff;
	stroke: #1174eb;
	stroke-width: 1;
	transition: fill 0.2s ease, stroke 0.2s ease;
}

.map-container a:hover circle:not(#DC),
.map-container a:focus-visible circle:not(#DC) {
	fill: #1174eb;
	stroke: #0d5cb8;
}

.map-container line {
	stroke: #1174eb;
	stroke-opacity: 0.45;
}

.map-container text {
	fill: #101828;
	font-family: "Inter", system-ui, -apple-system, sans-serif;
	font-weight: 600;
	pointer-events: none;
	transition: fill 0.2s ease;
}

.map-container a:hover text,
.map-container a:focus-visible text {
	fill: #fff;
}

/* ==================== JOIN CTA ==================== */
.section-join {
	background: #1174eb;
	padding: 64px 40px;
	text-align: center;
}

.section-join h2 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	line-height: 46.8px;
	letter-spacing: 0.37px;
}

.section-join .join-desc {
	font-size: 18px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	line-height: 30.6px;
	letter-spacing: -0.44px;
	margin-top: 24px;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	height: 50px;
	padding: 0 32px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
	font-size: 16px;
	font-weight: 600;
	color: #1174eb;
	letter-spacing: -0.31px;
	margin-top: 32px;
	cursor: pointer;
	border: none;
}

.cta-button-icon {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #1174eb;
}

/* ==================== HELPFUL GUIDES ==================== */
.section-guides {
	max-width: 1200px;
	margin: 0 auto;
	padding: 64px 40px 0;
}

.section-title-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.section-title-icon {
	width: 40px;
	height: 40px;
	background: #1174eb;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.section-title-icon-svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: #fff;
}

.section-title-row h2 {
	font-size: 30px;
	font-weight: 700;
	line-height: 39px;
	letter-spacing: 0.4px;
	color: #101828;
}

.guides-desc {
	font-size: 16px;
	font-weight: 400;
	color: #364153;
	line-height: 27.2px;
	letter-spacing: -0.31px;
	margin-top: 16px;
	max-width: 760px;
}

.guides-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 24px;
}

.guide-card {
	display: block;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -2px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s, box-shadow 0.2s;
}

.guide-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.15),
		0 4px 8px -2px rgba(0, 0, 0, 0.1);
}

.guide-card-img {
	width: 100%;
	height: 192px;
	object-fit: cover;
}

.guide-card-body {
	padding: 24px;
}

.guide-card-body h3 {
	font-size: 18px;
	font-weight: 700;
	color: #101828;
	line-height: 23.4px;
	letter-spacing: -0.44px;
}

.guide-card-body p {
	font-size: 14px;
	font-weight: 400;
	color: #4a5565;
	line-height: 20px;
	letter-spacing: -0.15px;
	margin-top: 10px;
}

.read-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 40px;
	padding: 0 24px;
	background: #1174eb;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.15px;
	margin-top: 16px;
	cursor: pointer;
	border: none;
}

.read-more-btn:hover {
	background: #0d5cb8;
}

.read-more-btn-icon {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: #fff;
}

/* ==================== WHY CHOOSE ==================== */
.section-why {
	max-width: 1200px;
	margin: 64px auto 0;
	padding: 0 40px 64px;
	display: flex;
	gap: 48px;
	align-items: center;
}

.why-image {
	width: 552px;
	flex-shrink: 0;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.why-image img {
	width: 100%;
	height: 368px;
	object-fit: cover;
}

.why-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.why-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.why-feature {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.why-feature-icon {
	width: 48px;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	padding-top: 4px;
}

.why-feature-icon-svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: #1174eb;
}

.why-feature-text {
	flex: 1;
}

.why-feature-text h3 {
	font-size: 20px;
	font-weight: 700;
	color: #101828;
	line-height: 26px;
	letter-spacing: -0.45px;
}

.why-feature-text p {
	font-size: 16px;
	font-weight: 400;
	color: #4a5565;
	line-height: 27.2px;
	letter-spacing: -0.31px;
	margin-top: 8px;
}

/* ==================== FOOTER ==================== */
.footer {
	background: #1e293b;
	padding: 48px 40px;
	text-align: center;
}

.footer-logo {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-logo img {
	height: 36px;
}

.footer-nav {
	display: flex;
	justify-content: center;
	gap: 32px;
	margin-top: 32px;
}

.footer-nav a {
	font-size: 14px;
	font-weight: 600;
	color: #d1d5dc;
	text-transform: uppercase;
	letter-spacing: 0.2px;
	line-height: 20px;
}

.footer-nav a:hover {
	color: #fff;
}

.footer-copy {
	font-size: 14px;
	font-weight: 400;
	color: #99a1af;
	line-height: 20px;
	letter-spacing: -0.15px;
	margin-top: 32px;
}

/* ==================== MOBILE MENU ==================== */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 32px;
	height: 32px;
	position: relative;
	flex-shrink: 0;
}

.menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #364153;
	border-radius: 2px;
	position: absolute;
	left: 5px;
	transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle span:nth-child(1) {
	top: 8px;
}
.menu-toggle span:nth-child(2) {
	top: 15px;
}
.menu-toggle span:nth-child(3) {
	top: 22px;
}

.menu-toggle.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #e5e7eb;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	z-index: 99;
	padding: 16px 20px;
	flex-direction: column;
	gap: 0;
}

.mobile-nav.open {
	display: flex;
}

.mobile-nav a {
	display: block;
	padding: 14px 0;
	font-size: 15px;
	font-weight: 600;
	color: #364153;
	text-transform: uppercase;
	letter-spacing: 0.2px;
	border-bottom: 1px solid #f3f4f6;
}

.mobile-nav a:last-child {
	border-bottom: none;
}

.mobile-nav a:hover {
	color: #1174eb;
}

/* ================================================================== */
/* STATE LIST PAGE                                                     */
/* ================================================================== */

/* Breadcrumb */
.breadcrumb-bar {
	background: #fff;
	border-bottom: 1px solid #e5e7eb;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
	padding: 12px 0;
}

.breadcrumb-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.breadcrumb-link {
	font-size: 14px;
	font-weight: 500;
	color: #4a5565;
	letter-spacing: -0.15px;
	line-height: 20px;
}

.breadcrumb-link:hover {
	color: #1174eb;
}

.breadcrumb-sep {
	width: 16px;
	height: 16px;
}

.breadcrumb-current {
	font-size: 14px;
	font-weight: 600;
	color: #101828;
	letter-spacing: -0.15px;
	line-height: 20px;
}

/* Page Hero */
.sl-hero {
	background: #e6f2ff;
	padding: 48px 40px;
	text-align: center;
}

.sl-hero-title {
	font-size: 36px;
	font-weight: 700;
	color: #101828;
	line-height: 50px;
	letter-spacing: 0.37px;
}

.sl-hero-desc {
	font-size: 18px;
	font-weight: 400;
	color: #4a5565;
	line-height: 30.6px;
	letter-spacing: -0.44px;
	margin-top: 12px;
}

.sl-hero-desc strong {
	font-weight: 700;
	color: #101828;
}

/* Layout */
.sl-layout {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 40px 64px;
	display: flex;
	gap: 48px;
	align-items: flex-start;
}

.sl-main {
	flex: 1;
	width: 100%;
	max-width: 728px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Intro */
.sl-intro {
	font-size: 18px;
	font-weight: 400;
	color: #364153;
	line-height: 30.6px;
	letter-spacing: -0.44px;
}

.sl-link-underline {
	color: #1174eb;
	font-weight: 500;
	text-decoration: underline;
}

/* What You'll Find */
.sl-find-box {
	background: #f9fafb;
	border-radius: 24px;
	padding: 32px;
}

.sl-find-title {
	font-size: 24px;
	font-weight: 700;
	color: #101828;
	line-height: 30px;
	letter-spacing: 0.07px;
	margin-bottom: 24px;
}

.sl-find-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 48px;
}

.sl-find-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sl-find-icon-svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.sl-find-item span,
.sl-find-item a {
	font-size: 16px;
	font-weight: 400;
	color: #364153;
	line-height: 24px;
	letter-spacing: -0.31px;
}

/* Journey text */
.sl-journey-text {
	font-size: 16px;
	font-weight: 400;
	color: #364153;
	line-height: 24px;
	letter-spacing: -0.31px;
}

/* Browse by State */
.sl-browse {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.sl-browse-header {
	display: flex;
	align-items: center;
	gap: 10px;
}

.sl-browse-icon-svg {
	width: 30px;
	height: 30px;
	fill: none;
	stroke: #1174eb;
}

.sl-browse-header h2 {
	font-size: 24px;
	font-weight: 700;
	color: #101828;
	line-height: 30px;
	letter-spacing: 0.4px;
}

.sl-state-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 10px;
}

.sl-state-grid .ads {
	grid-column: -1/1;
}

.sl-state-card {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 64px;
	padding: 0 13px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.2s, border-color 0.2s;
}

.sl-state-grid.state > .sl-state-card {
	justify-content: center;
}

.sl-state-card:hover {
	border-color: #1174eb;
	box-shadow: 0 4px 12px rgba(17, 116, 235, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sl-state-abbr {
	width: 40px;
	height: 40px;
	background: #e6f2ff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	color: #1174eb;
	letter-spacing: -0.31px;
	flex-shrink: 0;
}

.sl-state-name {
	font-size: 14px;
	font-weight: 600;
	color: #101828;
	letter-spacing: -0.15px;
	line-height: 20px;
}

.sl-state-grid.state .sl-state-name {
	text-align: center;
}

/* About Section */
.sl-about-box {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 33px;
}

.sl-about-box h2 {
	font-size: 24px;
	font-weight: 700;
	color: #101828;
	line-height: 30px;
	letter-spacing: 0.07px;
	margin-bottom: 24px;
}

.sl-about-box p {
	font-size: 16px;
	font-weight: 400;
	color: #364153;
	line-height: 24px;
	letter-spacing: -0.31px;
}

.sl-about-box p + p {
	margin-top: 16px;
}

/* Sidebar */
.sl-sidebar {
	width: 290px;
	flex-shrink: 0;
}

.sl-sidebar-header {
	border-bottom: 1px solid #e5e7eb;
	padding-bottom: 16px;
	margin-bottom: 24px;
}

.sl-sidebar-header h2 {
	font-size: 20px;
	font-weight: 700;
	color: #101828;
	line-height: 26px;
	letter-spacing: -0.45px;
}

.sl-sidebar-header p {
	font-size: 14px;
	font-weight: 400;
	color: #4a5565;
	line-height: 23.8px;
	letter-spacing: -0.15px;
	margin-top: 4px;
}

.sl-sidebar-cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.sl-sidebar-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -2px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s;
}

.sl-sidebar-card:hover {
	box-shadow: 0 8px 16px -2px rgba(0, 0, 0, 0.15),
		0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

.sl-sidebar-card-img {
	width: 100%;
	height: 162px;
	object-fit: cover;
}

.sl-sidebar-card-body {
	padding: 20px;
}

.sl-sidebar-card-body h3 {
	font-size: 16px;
	font-weight: 700;
	color: #101828;
	line-height: 20.8px;
	letter-spacing: -0.31px;
}

.sl-sidebar-card-body p {
	font-size: 14px;
	font-weight: 400;
	color: #4a5565;
	line-height: 23.8px;
	letter-spacing: -0.15px;
	margin-top: 8px;
}

.sl-read-more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 600;
	color: #1174eb;
	letter-spacing: -0.15px;
	line-height: 20px;
	margin-top: 12px;
}

.sl-read-more-icon {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: #1174eb;
}

/* ==================== TABLET (max-width: 1024px) ==================== */
@media (max-width: 1024px) {
	.header-inner {
		padding: 0 24px;
	}

	.section-finding {
		padding: 0 24px;
	}

	.ad-inner {
		padding: 0 24px;
	}

	.section-search {
		padding: 0 24px;
	}

	.section-join {
		padding: 48px 24px;
	}

	.section-guides {
		padding: 48px 24px 0;
	}

	.section-why {
		padding: 0 24px 48px;
		margin-top: 48px;
		gap: 32px;
	}

	.why-image {
		width: 45%;
	}

	.why-image img {
		height: 300px;
	}

	.footer {
		padding: 40px 24px;
	}

	.guides-grid {
		gap: 24px;
	}

	.map-container {
		padding: 32px;
	}

	.state-dropdown {
		width: 380px;
	}

	/* State List - tablet */
	.sl-layout {
		padding: 24px 24px 48px;
		gap: 32px;
	}

	.sl-sidebar {
		width: 260px;
	}

	.breadcrumb-inner {
		padding: 0 24px;
	}

	.sl-hero {
		padding: 40px 24px;
	}
}

/* ==================== TABLET SMALL (max-width: 768px) ==================== */
@media (max-width: 768px) {
	.header {
		height: 48px;
	}

	.breadcrumb-bar {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.nav {
		display: none;
	}

	.header-inner {
		padding: 0 16px;
	}

	/* Hero */
	.hero {
		height: auto;
		min-height: 340px;
	}

	.hero-scroll-btn {
		width: 50px;
		height: 50px;
	}

	@keyframes hero-bounce {
		0%,
		100% {
			transform: translateX(-50%) translateY(0);
			animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
		}
		50% {
			transform: translateX(-50%) translateY(-10px);
			animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
		}
	}

	.hero-content {
		max-width: 100%;
	}

	.hero h1 {
		font-size: 32px;
		line-height: 42px;
	}

	.hero-subtitle {
		display: none;
	}

	.search-bar {
		margin-top: 24px;
		height: 50px;
	}

	.search-input {
		height: 50px;
		font-size: 14px;
		padding: 0 52px;
	}

	.search-icon-left {
		left: 16px;
		width: 20px;
		height: 20px;
	}

	.search-icon-right {
		right: 14px;
		width: 24px;
		height: 24px;
	}

	.popular-cities {
		gap: 6px;
		margin-top: 16px;
		padding: 0 4px;
	}

	.city-tag {
		height: 34px;
		font-size: 11px;
		padding: 0 12px 0 8px;
		gap: 6px;
	}

	.city-tag-icon {
		width: 18px;
		height: 18px;
	}

	.city-tag-icon img {
		width: 10px;
		height: 10px;
	}

	/* Finding */
	.finding-icon {
		display: none;
	}

	.section-finding {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 0 16px;
		gap: 24px;
	}

	.finding-content h2 {
		font-size: 24px;
		line-height: 32px;
	}

	.finding-content p {
		font-size: 15px;
		line-height: 25px;
	}

	.ad-inner {
		padding: 0 16px;
	}

	.ad-box {
		padding: 20px;
		border-radius: 16px;
	}

	.ad-content {
		padding: 32px 20px;
		border-radius: 12px;
	}

	.ad-content h3 {
		font-size: 16px;
	}

	.ad-content p {
		font-size: 13px;
	}

	/* Search by State */
	.section-search {
		padding: 0 16px;
	}

	.section-search h2 {
		font-size: 24px;
		line-height: 32px;
	}

	.section-search .search-desc {
		font-size: 15px;
		line-height: 24px;
	}

	.state-dropdown {
		width: 100%;
		max-width: 360px;
		height: 52px;
		border-radius: 18px;
	}

	.map-container {
		padding: 20px;
		border-radius: 16px;
		margin-top: 32px;
	}

	/* Join CTA */
	.section-join {
		padding: 40px 16px;
	}

	.section-join h2 {
		font-size: 26px;
		line-height: 34px;
	}

	.section-join .join-desc {
		font-size: 15px;
		line-height: 24px;
		margin-top: 16px;
	}

	.cta-button {
		margin-top: 24px;
		height: 46px;
		padding: 0 24px;
		font-size: 15px;
	}

	/* Guides */
	.section-guides {
		padding: 40px 16px 0;
	}

	.guides-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 16px;
	}

	.section-title-row h2 {
		font-size: 22px;
		line-height: 30px;
	}

	.guides-desc {
		font-size: 15px;
	}

	.guide-card-img {
		height: 180px;
	}

	/* Why Choose */
	.section-why {
		flex-direction: column;
		padding: 0 16px 40px;
		margin-top: 40px;
		gap: 32px;
	}

	.why-image {
		width: 100%;
		border-radius: 16px;
	}

	.why-image img {
		height: 240px;
	}

	.why-feature-text h3 {
		font-size: 18px;
	}

	.why-feature-text p {
		font-size: 15px;
		line-height: 25px;
	}

	/* Footer */
	.footer {
		padding: 36px 16px;
	}

	.footer-nav {
		gap: 16px;
		flex-wrap: wrap;
		margin-top: 24px;
	}

	.footer-nav a {
		font-size: 13px;
	}

	.footer-copy {
		font-size: 12px;
		margin-top: 24px;
	}

	.footer-logo-text .bottom {
		font-size: 20px;
		line-height: 28px;
	}

	/* State List - small tablet */
	.sl-layout {
		flex-direction: column;
		padding: 24px 16px 40px;
		gap: 40px;
	}

	.sl-sidebar {
		width: 100%;
		position: static;
	}

	.sl-sidebar-cards {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.sl-state-grid {
		gap: 12px;
	}

	.sl-hero {
		padding: 24px 16px;
	}

	.sl-hero-title {
		font-size: 28px;
		line-height: 36px;
	}

	.sl-hero-desc {
		font-size: 15px;
		line-height: 24px;
	}

	.breadcrumb-inner {
		padding: 0 16px;
	}

	.sl-find-box {
		padding: 24px;
		border-radius: 16px;
	}

	.sl-find-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.sl-about-box {
		padding: 24px;
		border-radius: 16px;
	}

	.sl-ad-card {
		padding: 24px;
		border-radius: 16px;
	}

	.sl-browse {
		gap: 16px;
	}

	.sl-browse-header h2 {
		font-size: 24px;
		line-height: 30px;
	}

	.sl-state-card {
		height: 56px;
		padding: 0 10px;
		gap: 8px;
	}

	.sl-state-abbr {
		width: 36px;
		height: 36px;
		font-size: 14px;
		border-radius: 8px;
	}

	.sl-state-name {
		font-size: 13px;
	}

	.sl-find-title {
		margin-bottom: 16px;
	}

	.sl-about-box h2 {
		margin-bottom: 16px;
	}

	.sl-about-box p {
		line-height: 22px;
	}

	.sl-about-box p + p {
		margin-top: 10px;
	}

	.sl-sidebar-header {
		padding-bottom: 10px;
		margin-bottom: 16px;
	}

	.guide-card-body {
		padding: 16px;
	}

	.guide-card-body h3 {
		font-size: 16px;
		line-height: 22px;
	}

	.guide-card-body p {
		font-size: 14px;
		margin-top: 8px;
		line-height: 20px;
		line-clamp: 3;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

/* ==================== MOBILE (max-width: 480px) ==================== */
@media (max-width: 480px) {
	.hero h1 {
		font-size: 26px;
		line-height: 34px;
	}

	.hero-subtitle {
		font-size: 14px;
		line-height: 22px;
		margin-top: 12px;
	}

	.search-bar {
		margin-top: 20px;
		height: 46px;
	}

	.search-input {
		height: 46px;
		font-size: 13px;
		padding: 0 48px;
	}

	.search-icon-left {
		left: 14px;
		width: 18px;
		height: 18px;
	}

	.search-icon-right {
		right: 12px;
		width: 22px;
		height: 22px;
	}

	.popular-cities {
		gap: 6px;
		margin-top: 14px;
	}

	.city-tag {
		height: 30px;
		font-size: 10px;
		padding: 0 10px 0 6px;
		gap: 4px;
	}

	.city-tag-icon {
		width: 16px;
		height: 16px;
	}

	.city-tag-icon img {
		width: 9px;
		height: 9px;
	}

	/* Finding */
	.section-finding {
		padding: 0 16px;
		gap: 20px;
	}

	.finding-content h2 {
		font-size: 20px;
		line-height: 28px;
	}

	.finding-content p {
		font-size: 14px;
		line-height: 23px;
	}

	.ad-box {
		padding: 16px;
	}

	.ad-content {
		padding: 24px 16px;
	}

	.ad-content h3 {
		font-size: 15px;
		line-height: 24px;
	}

	.ad-content p {
		font-size: 12px;
		line-height: 20px;
	}

	.ad-label {
		font-size: 12px;
	}

	/* Search */
	.section-search h2 {
		font-size: 20px;
		line-height: 28px;
	}

	.section-search .search-desc {
		font-size: 14px;
		line-height: 22px;
	}

	.state-dropdown {
		height: 50px;
		font-size: 14px;
		border-radius: 16px;
		border-width: 2px;
		padding: 0 20px;
	}

	.map-container {
		padding: 16px;
		border-radius: 14px;
	}

	/* Join */
	.section-join h2 {
		font-size: 22px;
		line-height: 30px;
	}

	.section-join .join-desc {
		font-size: 14px;
	}

	.cta-button {
		height: 44px;
		padding: 0 20px;
		font-size: 14px;
		gap: 8px;
		border-radius: 8px;
	}

	.cta-button img {
		width: 18px;
		height: 18px;
	}

	/* Guides */
	.section-title-row h2 {
		font-size: 20px;
		line-height: 28px;
	}

	.section-title-icon {
		width: 40px;
		height: 40px;
	}

	.section-title-icon img {
		width: 20px;
		height: 20px;
	}

	.guides-desc {
		font-size: 14px;
		line-height: 23px;
	}

	.guide-card-img {
		height: 160px;
	}

	.read-more-btn {
		margin-top: 16px;
		height: 36px;
		padding: 0 20px;
		font-size: 13px;
	}

	/* Why */
	.section-why {
		margin-top: 32px;
		padding: 0 16px 32px;
		gap: 24px;
	}

	.why-image img {
		height: 200px;
	}

	.why-image {
		border-radius: 14px;
	}

	.why-feature-icon {
		width: 36px;
	}

	.why-feature-icon img {
		width: 20px;
		height: 20px;
	}

	.why-feature-text h3 {
		font-size: 16px;
		line-height: 22px;
	}

	.why-feature-text p {
		font-size: 14px;
		line-height: 23px;
	}

	.why-features {
		gap: 20px;
	}

	/* Footer */
	.footer {
		padding: 32px 16px;
	}

	.footer-logo-icon {
		width: 40px;
		height: 40px;
	}

	.footer-logo-icon img {
		width: 24px;
		height: 24px;
	}

	.footer-logo-text .top {
		font-size: 10px;
	}

	.footer-logo-text .bottom {
		font-size: 18px;
		line-height: 24px;
	}

	.footer-nav {
		gap: 12px;
		margin-top: 20px;
	}

	.footer-nav a {
		font-size: 12px;
	}

	.footer-copy {
		font-size: 11px;
		margin-top: 20px;
	}

	/* State List - mobile */
	.sl-state-grid {
		gap: 10px;
	}

	.sl-hero-title {
		font-size: 22px;
		line-height: 30px;
	}

	.sl-hero-desc {
		font-size: 14px;
		line-height: 22px;
	}

	.sl-intro {
		font-size: 15px;
		line-height: 25px;
	}

	.sl-find-title {
		font-size: 20px;
	}

	.sl-find-item span,
	.sl-find-item a {
		font-size: 14px;
	}

	.sl-journey-text {
		font-size: 14px;
		line-height: 24px;
	}

	.sl-browse-header h2 {
		font-size: 20px;
		line-height: 28px;
	}

	.sl-browse-header img {
		width: 26px;
		height: 26px;
	}

	.sl-state-card {
		height: 52px;
		padding: 0 8px;
		border-radius: 10px;
		gap: 6px;
	}

	.sl-state-abbr {
		width: 32px;
		height: 32px;
		font-size: 13px;
		border-radius: 7px;
	}

	.sl-state-name {
		font-size: 12px;
	}

	.sl-about-box h2 {
		font-size: 20px;
	}

	.sl-about-box p {
		font-size: 14px;
		line-height: 24px;
	}

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

	.sl-ad-card {
		padding: 20px;
	}

	.sl-ad-line-long {
		width: 100%;
	}

	.sl-ad-line-short {
		width: 70%;
	}
}

/* ============================================================
   HOUSE LIST PAGE (hl- prefix)
   ============================================================ */

/* ---------- Filter Bar ---------- */
.hl-filter-bar {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
	padding: 24px;
}

.hl-filter-row {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.hl-filter-label {
	font-size: 16px;
	font-weight: 700;
	color: #101828;
	letter-spacing: -0.31px;
}

.hl-filter-check {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #f3f4f6;
	border-radius: 10px;
	padding: 8px 16px;
	font-size: 16px;
	font-weight: 500;
	color: #364153;
	cursor: pointer;
	letter-spacing: -0.31px;
}

.hl-checkbox-input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.hl-checkbox-custom {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	border: 2px solid #d1d5dc;
	background: #fff;
	flex-shrink: 0;
	transition: background 0.15s, border-color 0.15s;
}

.hl-checkbox-input:checked + .hl-checkbox-custom {
	background: #1174eb;
	border-color: #1174eb;
}

.hl-checkbox-input:checked + .hl-checkbox-custom::after {
	content: "";
	display: block;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) translateX(-0.5px) translateY(-1px);
}

.hl-filter-type-icon-svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	fill: none;
	stroke: #364153;
}

.hl-filter-divider {
	width: 1px;
	height: 24px;
	background: #d1d5dc;
}

.hl-filter-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 2px solid #d1d5dc;
	background: #fff;
	border-radius: 14px;
	padding: 10px 18px;
	font-size: 16px;
	font-weight: 500;
	color: #364153;
	cursor: pointer;
	letter-spacing: -0.31px;
}

.hl-filter-btn img {
	width: 20px;
	height: 20px;
}

/* ---------- Results Header ---------- */
.hl-results-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hl-results-header h2 {
	font-size: 24px;
	font-weight: 700;
	color: #101828;
	letter-spacing: 0.07px;
}

/* ---------- Floating Favorites Button ---------- */
.hl-fav-floating {
	position: fixed;
	bottom: 120px;
	right: 0;
	z-index: 200;
	border: none;
	background: #1174eb;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 12px 10px 14px;
	border-radius: 12px 0 0 12px;
	box-shadow: -2px 2px 12px rgba(17, 116, 235, 0.35),
		0 2px 6px rgba(0, 0, 0, 0.1);
	transition: padding-right 0.2s, box-shadow 0.2s;
}

.hl-fav-floating:hover {
	padding-right: 18px;
	box-shadow: -4px 2px 18px rgba(17, 116, 235, 0.45),
		0 4px 10px rgba(0, 0, 0, 0.12);
}

.hl-fav-floating:active {
	padding-right: 12px;
}

.hl-fav-floating-icon {
	width: 20px;
	height: 20px;
	fill: red;
	stroke: #fff;
	stroke-width: 2;
}

.hl-fav-floating-text {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
}

.hl-fav-floating-badge {
	position: absolute;
	top: -6px;
	left: -6px;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 10px;
	background: #ef4444;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	writing-mode: horizontal-tb;
}

/* ---------- Favorites Overlay ---------- */
.hl-fav-overlay {
	position: fixed;
	inset: 0;
	z-index: 300;
	background: rgba(0, 0, 0, 0);
	pointer-events: none;
	transition: background 0.3s;
}

.hl-fav-overlay.open {
	background: rgba(0, 0, 0, 0.4);
	pointer-events: auto;
}

/* ---------- Favorites Drawer ---------- */
.hl-fav-drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 310;
	width: 380px;
	max-width: 90vw;
	height: 100vh;
	background: #fff;
	box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
	transform: translateX(100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
}

.hl-fav-drawer.open {
	transform: translateX(0);
}

.hl-fav-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid #e5e7eb;
	flex-shrink: 0;
}

.hl-fav-drawer-header h3 {
	font-size: 18px;
	font-weight: 700;
	color: #101828;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hl-fav-drawer-heart {
	width: 22px;
	height: 22px;
	fill: #ef4444;
	stroke: #ef4444;
}

.hl-fav-drawer-close {
	width: 36px;
	height: 36px;
	border: none;
	background: #f3f4f6;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6b7280;
	transition: background 0.15s, color 0.15s;
}

.hl-fav-drawer-close:hover {
	background: #e5e7eb;
	color: #101828;
}

.hl-fav-drawer-body {
	flex: 1;
	overflow-y: auto;
	padding: 16px 24px;
}

.hl-fav-drawer-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 60px 20px;
	gap: 8px;
}

.hl-fav-empty-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 8px;
}

.hl-fav-drawer-empty p {
	font-size: 16px;
	font-weight: 600;
	color: #6b7280;
}

.hl-fav-drawer-empty span {
	font-size: 14px;
	color: #9ca3af;
	line-height: 1.5;
}

.hl-fav-drawer-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hl-fav-drawer-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 10px;
	transition: background 0.15s;
}

.hl-fav-drawer-item:hover {
	background: #f9fafb;
}

.hl-fav-item-name {
	font-size: 14px;
	font-weight: 600;
	color: #101828;
	text-decoration: none;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hl-fav-item-name:hover {
	color: #1174eb;
	text-decoration: underline;
}

.hl-fav-item-remove {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border: none;
	background: none;
	border-radius: 6px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	transition: color 0.15s, background 0.15s;
}

.hl-fav-item-remove:hover {
	color: #ef4444;
	background: #fef2f2;
}

/* ---------- Active Heart State ---------- */
.hl-fav-heart.active .hl-fav-heart-icon {
	fill: #ef4444;
	stroke: #ef4444;
}

@media screen and (max-width: 768px) {
	.hl-fav-floating {
		bottom: 12px;
		right: 50%;
		transform: translateX(50%);
		flex-direction: row;
		border-radius: 12px;
		padding: 10px 24px;
		gap: 8px;
		box-shadow: 0 -2px 12px rgba(17, 116, 235, 0.3),
			0 -1px 4px rgba(0, 0, 0, 0.08);
	}

	.hl-fav-floating:hover {
		padding-right: 24px;
		box-shadow: 0 -4px 18px rgba(17, 116, 235, 0.4),
			0 -2px 8px rgba(0, 0, 0, 0.1);
	}

	.hl-fav-floating:active {
		padding-right: 24px;
	}

	.hl-fav-floating-icon {
		width: 18px;
		height: 18px;
	}

	.hl-fav-floating-text {
		font-size: 13px;
		writing-mode: horizontal-tb;
		letter-spacing: 0.5px;
	}

	.hl-fav-floating-badge {
		position: static;
		min-width: 18px;
		height: 18px;
		line-height: 18px;
		font-size: 11px;
		padding: 0 5px;
		border-radius: 9px;
	}

	.hl-fav-drawer {
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		max-width: 100%;
		height: 70vh;
		max-height: 70vh;
		border-radius: 16px 16px 0 0;
		transform: translateY(100%);
		box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
	}

	.hl-fav-drawer.open {
		transform: translateY(0);
	}
}

/* ---------- Property Card ---------- */
.hl-property-card {
	display: flex;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -2px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	position: relative;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hl-property-card:hover {
	box-shadow: 0 8px 16px -2px rgba(0, 0, 0, 0.15),
		0 4px 8px -2px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.hl-property-img {
	position: relative;
	display: block;
	width: 176px;
	height: 168px;
	flex-shrink: 0;
	overflow: hidden;
}

.hl-property-address-icon {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: #1174eb;
	transform: translateY(4px);
}

.hl-property-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hl-photo-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	background: #1174eb;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 8px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hl-addr-line {
	font-size: 14px;
	color: #4a5565;
	line-height: 1.7;
	letter-spacing: -0.15px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hl-property-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px;
	min-width: 0;
}

.hl-property-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
}

.hl-property-name {
	font-size: 20px;
	font-weight: 700;
	color: #101828;
	text-decoration: none;
	letter-spacing: -0.31px;
	line-height: 1.3;
}

.hl-property-name:hover {
	text-decoration: underline;
}

.hl-fav-heart {
	flex-shrink: 0;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hl-fav-heart-mobile {
	display: none;
}

.hl-fav-heart-icon {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #1174eb;
}

.hl-property-address {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-top: 8px;
}

.hl-property-address > img {
	width: 16px;
	height: 16px;
	margin-top: 2px;
	flex-shrink: 0;
}

.hl-addr-street {
	font-size: 14px;
	font-weight: 600;
	color: #364153;
	line-height: 1.7;
	letter-spacing: -0.15px;
}

.hl-addr-city {
	font-size: 12px;
	color: #4a5565;
	line-height: 1.7;
}

.hl-property-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 8px;
	gap: 8px;
	flex-wrap: wrap;
}

.hl-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 600;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hl-tag-icon {
	width: 14px;
	height: 14px;
	fill: none;
}

.hl-tag-blue {
	background: #eff6ff;
	border: 1px solid #51a2ff;
	color: #1447e6;
}

.hl-tag-blue .hl-tag-icon {
	stroke: #1447e6;
}

.hl-tag-green {
	background: #f0fdf4;
	border: 1px solid #05df72;
	color: #008236;
}

.hl-tag-green .hl-tag-icon {
	stroke: #008236;
}

.hl-view-details {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 600;
	color: #1174eb;
	text-decoration: none;
	letter-spacing: -0.15px;
	white-space: nowrap;
}

.hl-view-details-icon {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: #1174eb;
}

.hl-view-details:hover {
	text-decoration: underline;
}

/* ---------- Pagination ---------- */
.hl-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 0;
}

.hl-pagination li {
	list-style: none;
}

.hl-page-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border: 1px solid #d1d5dc;
	border-radius: 10px;
	background: #fff;
	font-size: 14px;
	font-weight: 500;
	color: #364153;
	text-decoration: none;
	cursor: pointer;
}

.hl-page-btn:hover {
	background: #f3f4f6;
}

.hl-pagination a:not(.hl-page-btn) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #364153;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}

.hl-pagination a:not(.hl-page-btn):hover {
	background: #e8f0fd;
	color: #1174eb;
}

.hl-pagination a:not(.hl-page-btn).active {
	background: #1174eb;
	color: #fff;
	font-weight: 600;
}

/* ---------- FAQ Section ---------- */
.hl-faq {
	margin-top: 24px;
}

.hl-faq-title {
	font-size: 24px;
	font-weight: 700;
	color: #101828;
	line-height: 1.4;
	margin-bottom: 24px;
	letter-spacing: 0.07px;
}

.hl-faq-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.hl-faq-item {
	padding-bottom: 24px;
	border-bottom: 1px solid #e5e7eb;
}

.hl-faq-item-last {
	border-bottom: none;
	padding-bottom: 0;
}

.hl-faq-item h3 {
	font-size: 20px;
	font-weight: 700;
	color: #101828;
	letter-spacing: -0.45px;
	margin-bottom: 12px;
}

.hl-faq-item p {
	font-size: 16px;
	color: #364153;
	line-height: 1.7;
	letter-spacing: -0.31px;
}

/* ============================================================
   HOUSE LIST RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.hl-filter-row {
		gap: 10px;
	}

	.hl-filter-label {
		font-size: 14px;
	}

	.hl-filter-check {
		font-size: 14px;
		padding: 6px 12px;
	}

	.hl-property-img {
		width: 150px;
		min-height: 150px;
	}

	.hl-results-header h2 {
		font-size: 20px;
	}
}

@media (max-width: 768px) {
	.hl-filter-bar {
		padding: 16px;
	}

	.hl-filter-row {
		gap: 8px;
	}

	.hl-filter-label {
		display: none;
	}

	.hl-filter-type-icon-svg {
		display: none;
	}

	.hl-checkbox-custom {
		display: none;
	}

	.hl-filter-check {
		flex: 1;
		justify-content: center;
		border-radius: 8px;
		transition: background 0.15s, color 0.15s;
	}

	.hl-filter-check:has(.hl-checkbox-input:checked) {
		background: #1174eb;
		color: #fff;
	}

	.hl-filter-divider {
		display: none;
	}

	.hl-property-card {
		flex-direction: column;
	}

	.hl-property-img {
		width: 100%;
		height: 200px;
		min-height: auto;
	}

	.hl-photo-badge {
		top: 12px;
		left: 12px;
		bottom: auto;
	}

	.hl-fav-heart-mobile {
		display: flex;
		position: absolute;
		top: 12px;
		right: 12px;
		width: 36px;
		height: 36px;
		background: #fff;
		border-radius: 50%;
		align-items: center;
		justify-content: center;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
		z-index: 1;
	}

	.hl-fav-heart-mobile .hl-fav-heart-icon {
		width: 20px;
		height: 20px;
	}

	.hl-fav-heart-desktop {
		display: none;
	}

	.hl-results-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.hl-tag {
		display: none;
	}

	.hl-faq {
		margin-top: 0;
	}

	.hl-faq-item {
		padding-bottom: 12px;
	}

	.hl-faq-list {
		gap: 16px;
	}

	.hl-faq-item h3 {
		font-size: 18px;
	}

	.hl-faq-item p {
		font-size: 15px;
	}

	.hl-faq-title {
		font-size: 20px;
		margin-bottom: 16px;
	}

	.hl-property-name {
		font-size: 18px;
	}

	.hl-view-details {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.hl-filter-check {
		font-size: 13px;
		padding: 6px 10px;
	}

	.hl-filter-btn {
		font-size: 14px;
		padding: 8px 14px;
	}

	.hl-results-header h2 {
		font-size: 18px;
	}

	.hl-property-img {
		height: 170px;
	}

	.hl-property-footer {
		flex-direction: column;
		align-items: flex-start;
		border-top: 1px solid #e5e7eb;
		margin-top: 12px;
		padding-top: 12px;
	}

	.hl-pagination {
		gap: 4px;
	}

	.hl-page-btn {
		padding: 6px 12px;
		font-size: 13px;
	}

	.hl-page-num {
		width: 36px;
		height: 36px;
		font-size: 13px;
	}

	.hl-faq-item h3 {
		font-size: 16px;
	}

	.hl-faq-item p {
		font-size: 14px;
		line-height: 1.6;
	}
}

/* ============================================================
   DETAIL PAGE (dt- prefix)
   ============================================================ */

/* ---------- Page Header ---------- */
.dt-page-header {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.dt-page-header-inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-top: 24px;
	max-width: 728px;
	width: 100%;
}

.dt-title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.dt-title {
	font-size: 36px;
	font-weight: 700;
	color: #101828;
	line-height: 1.3;
	letter-spacing: 0.37px;
}

.dt-title-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

/* ---------- Waiting List Status ---------- */
.dt-status-section {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.dt-status-label {
	font-size: 12px;
	font-weight: 700;
	color: #4a5565;
	text-transform: uppercase;
}

.dt-status-cards {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.dt-status-card {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px 18px;
	border-radius: 14px;
	border-width: 2px;
	border-style: solid;
}

.dt-status-closed {
	background: #fef2f2;
	border-color: #ff6467;
}

.dt-status-open {
	background: #f0fdf4;
	border-color: #05df72;
}

.dt-status-type {
	font-size: 12px;
	color: #4a5565;
	line-height: 16px;
}

.dt-status-value {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: -0.15px;
}

.dt-status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

/* ---------- Info Row (Contact + Address) ---------- */
.dt-info-row {
	display: flex;
	gap: 24px;
}

.dt-info-card {
	flex: 1;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 25px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.dt-info-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.dt-info-icon-wrap {
	width: 40px;
	height: 40px;
	background: #1174eb;
	border-radius: 14px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.dt-info-icon {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #fff;
}

.dt-info-card-header h2 {
	font-size: 20px;
	font-weight: 700;
	color: #101828;
	letter-spacing: -0.45px;
}

/* ---------- Contact List ---------- */
.dt-contact-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dt-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.dt-contact-icon-wrap {
	width: 30px;
	height: 30px;
	background: #eff6ff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.dt-contact-icon {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: #1174eb;
}

.dt-contact-text {
	font-size: 16px;
	font-weight: 600;
	color: #1174eb;
	letter-spacing: -0.31px;
}

/* ---------- Address ---------- */
.dt-address-block {
	display: flex;
	flex-direction: column;
	padding-left: 4px;
}

.dt-address-street {
	font-size: 16px;
	font-weight: 600;
	color: #101828;
	line-height: 1.7;
	letter-spacing: -0.31px;
}

.dt-address-city,
.dt-address-zip {
	font-size: 16px;
	color: #4a5565;
	line-height: 1.7;
	letter-spacing: -0.31px;
}

.dt-get-directions {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	font-size: 14px;
	font-weight: 600;
	color: #1174eb;
	text-decoration: none;
	letter-spacing: -0.15px;
}

.dt-get-directions-icon {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: #1174eb;
}

.dt-get-directions:hover {
	text-decoration: underline;
}

/* ---------- Hero Image ---------- */
.dt-hero-image {
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.dt-hero-image img {
	width: 100%;
	height: 258px;
	object-fit: cover;
	display: block;
}

/* ---------- Section Cards ---------- */
.dt-section-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 25px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.dt-section-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.dt-section-icon {
	width: 40px;
	height: 40px;
	background: #1174eb;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.dt-section-icon-svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: #fff;
}

.dt-section-header h2 {
	font-size: 22px;
	font-weight: 700;
	color: #101828;
	letter-spacing: -0.45px;
}

.dt-section-text {
	font-size: 16px;
	color: #364153;
	line-height: 1.7;
	letter-spacing: -0.31px;
}

/* ---------- Property Details ---------- */
.dt-details-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dt-pha-bar {
	background: linear-gradient(169deg, #eff6ff, #eef2ff);
	border: 1px solid #dbeafe;
	border-radius: 14px;
	padding: 21px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dt-pha-bar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}

.dt-pha-title {
	font-size: 16px;
	font-weight: 700;
	color: #101828;
	letter-spacing: -0.31px;
}

.dt-pha-badge {
	background: #1174eb;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 10px;
}

.dt-pha-code-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 10px;
	padding: 12px 16px;
}

.dt-pha-code-label {
	font-size: 14px;
	font-weight: 500;
	color: #364153;
	letter-spacing: -0.15px;
}

.dt-pha-code-value {
	font-size: 18px;
	font-weight: 700;
	color: #1174eb;
	letter-spacing: -0.44px;
}

/* Stats row */
.dt-stats-row {
	display: flex;
	gap: 12px;
}

.dt-stat-card {
	flex: 1;
	border-radius: 14px;
	border-width: 1px;
	border-style: solid;
	padding: 17px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.dt-stat-green {
	background: linear-gradient(162deg, #f0fdf4, #ecfdf5);
	border-color: #dcfce7;
}

.dt-stat-purple {
	background: linear-gradient(162deg, #faf5ff, #f5f3ff);
	border-color: #f3e8ff;
}

.dt-stat-label {
	font-size: 12px;
	font-weight: 600;
	color: #4a5565;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.dt-stat-value {
	font-size: 30px;
	font-weight: 700;
	color: #101828;
	line-height: 1.2;
	letter-spacing: 0.4px;
}

.dt-stat-note {
	font-size: 12px;
	color: #6a7282;
}

/* Bedrooms */
.dt-bedrooms-card {
	background: linear-gradient(164deg, #fff7ed, #fffbeb);
	border: 1px solid #ffedd4;
	border-radius: 14px;
	padding: 20px;
}

.dt-bedrooms-card h3 {
	font-size: 16px;
	font-weight: 700;
	color: #101828;
	letter-spacing: -0.31px;
	margin-bottom: 16px;
}

.dt-bedrooms-grid {
	display: flex;
	gap: 12px;
}

.dt-bedroom-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.dt-bedroom-label {
	font-size: 12px;
	font-weight: 500;
	color: #4a5565;
	text-align: center;
}

.dt-bedroom-value {
	background: rgba(255, 255, 255, 0.7);
	border-radius: 10px;
	padding: 8px 0;
	width: 100%;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	color: #101828;
	letter-spacing: 0.07px;
}

.dt-bedrooms-note {
	margin-top: 12px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	padding: 8px;
	text-align: center;
	font-size: 12px;
	color: #6a7282;
}

/* ---------- Eligible Residents ---------- */
.dt-eligible-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dt-eligible-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #f9fafb;
	border: 1px solid #f3f4f6;
	border-radius: 14px;
	padding: 15px 17px;
}

.dt-eligible-icon {
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.dt-eligible-icon-svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #1174eb;
}

.dt-eligible-item span {
	font-size: 14px;
	font-weight: 500;
	color: #101828;
	letter-spacing: -0.15px;
}

/* ---------- Map ---------- */
#section-map {
	scroll-margin-top: 80px;
}

.dt-map-placeholder {
	background: #f3f4f6;
	border-radius: 14px;
	height: 380px;
}

/* ---------- More Properties ---------- */
.dt-more-properties {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.dt-more-title {
	font-size: 30px;
	font-weight: 700;
	color: #101828;
	letter-spacing: 0.4px;
}

.dt-more-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* ============================================================
   DETAIL PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.dt-page-header {
		padding: 0 24px;
		display: flex;
		justify-content: center;
	}

	.dt-title {
		font-size: 28px;
	}

	.dt-info-row {
		flex-direction: column;
	}

	.dt-hero-image img {
		height: 220px;
	}

	.dt-stats-row {
		flex-direction: column;
	}

	.dt-bedrooms-grid {
		flex-wrap: wrap;
	}

	.dt-bedroom-item {
		min-width: calc(33% - 8px);
	}

	.dt-layout {
		flex-direction: column;
	}

	.dt-layout .sl-main {
		margin: 0 auto;
	}

	.dt-layout .sl-sidebar {
		width: 728px;
		margin: 0 auto;
		position: static;
	}

	.dt-layout .sl-sidebar-cards {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.dt-layout .sl-sidebar-header {
		padding-bottom: 10px;
		margin-bottom: 16px;
	}
}

@media (max-width: 768px) {
	.dt-page-header {
		padding: 0 16px;
	}

	.dt-title-row {
		flex-direction: column;
	}

	.dt-title {
		font-size: 24px;
	}

	.dt-title-actions {
		width: 100%;
	}

	.dt-hero-image img {
		height: 200px;
	}

	.dt-section-header h2 {
		font-size: 18px;
	}

	.dt-section-text {
		font-size: 15px;
	}

	.dt-more-title {
		font-size: 24px;
	}

	.dt-status-card {
		padding: 4px 12px;
		gap: 0;
		justify-content: center;
	}

	.dt-info-icon-wrap {
		width: 30px;
		height: 30px;
		border-radius: 10px;
	}

	.dt-info-icon {
		width: 15px;
		height: 15px;
	}

	.dt-contact-icon-wrap {
		width: 26px;
		height: 26px;
	}

	.dt-contact-icon {
		width: 13px;
		height: 13px;
	}

	.dt-info-card {
		gap: 16px;
	}

	.dt-info-card-header h2 {
		font-size: 18px;
	}

	.dt-contact-list {
		gap: 10px;
	}

	.dt-section-card {
		gap: 16px;
	}

	.dt-more-properties {
		gap: 16px;
	}
}

@media (max-width: 480px) {
	.dt-title {
		font-size: 22px;
	}

	.dt-info-card {
		padding: 16px;
	}

	.dt-section-card {
		padding: 16px;
		border-radius: 16px;
	}

	.dt-hero-image img {
		height: 170px;
	}

	.dt-bedrooms-grid {
		gap: 8px;
	}

	.dt-bedroom-value {
		font-size: 20px;
	}

	.dt-section-icon {
		width: 40px;
		height: 40px;
		border-radius: 12px;
	}

	.dt-section-icon img {
		width: 20px;
		height: 20px;
	}

	.dt-eligible-item {
		padding: 12px;
	}

	.dt-map-placeholder {
		height: 250px;
	}

	.dt-more-title {
		font-size: 20px;
	}
}

/* ============================================================
   BLOG LIST PAGE (bl- prefix)
   ============================================================ */

/* ---------- Blog Hero ---------- */
.bl-hero {
	background: #fff;
	border-bottom: 1px solid #e5e7eb;
	padding: 32px 24px 32px;
	text-align: center;
}

.bl-hero-icon {
	width: 56px;
	height: 56px;
	background: #1174eb;
	border-radius: 14px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.bl-hero-icon-svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: #fff;
}

.bl-hero-title {
	font-size: 36px;
	font-weight: 700;
	color: #101828;
	line-height: 50px;
	letter-spacing: 0.35px;
	margin-bottom: 12px;
}

.bl-hero-desc {
	font-size: 20px;
	color: #4a5565;
	line-height: 30px;
	letter-spacing: -0.45px;
	max-width: 768px;
	margin: 0 auto;
}

/* ---------- Blog Container ---------- */
.bl-container {
	max-width: 1152px;
	margin: 0 auto;
	padding: 32px 24px 64px;
}

/* ---------- Blog Grid ---------- */
.bl-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 32px;
}

/* ---------- Blog Card ---------- */
.bl-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #f3f4f6;
	border-radius: 24px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -2px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	text-decoration: none;
	transition: box-shadow 0.2s, transform 0.2s;
}

.bl-card:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -4px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.bl-card-img {
	height: 192px;
	overflow: hidden;
}

.bl-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bl-card-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.bl-tag {
	display: inline-block;
	background: rgba(17, 116, 235, 0.1);
	color: #1174eb;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	padding: 4px 12px;
	border-radius: 10px;
	margin-bottom: 12px;
	align-self: flex-start;
}

.bl-card-body h2 {
	font-size: 20px;
	font-weight: 700;
	color: #101828;
	letter-spacing: -0.45px;
	line-height: 1.3;
	margin-bottom: 10px;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bl-card-body h3 {
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 6px;
}

.bl-card-body p {
	font-size: 14px;
	color: #4a5565;
	line-height: 20px;
	letter-spacing: -0.15px;
	margin-bottom: 10px;
	flex: 1;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bl-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #1174eb;
	letter-spacing: -0.15px;
	margin-top: auto;
}

.bl-read-more-icon {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: #1174eb;
}

/* ---------- Load More ---------- */
.bl-load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

.bl-load-more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 2px solid #1174eb;
	border-radius: 14px;
	padding: 12px 32px;
	font-size: 18px;
	font-weight: 700;
	color: #1174eb;
	letter-spacing: -0.44px;
	cursor: pointer;
	transition: background 0.2s;
}

.bl-load-more-icon {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #1174eb;
}

.bl-load-more:hover {
	background: #eff6ff;
}

/* ============================================================
   BLOG LIST RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.bl-hero-title {
		font-size: 36px;
	}

	.bl-hero-desc {
		font-size: 18px;
	}

	.bl-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
		margin-top: 24px;
	}
}

@media (max-width: 768px) {
	.bl-hero-title {
		font-size: 28px;
	}

	.bl-hero-desc {
		font-size: 14px;
		line-height: 20px;
	}

	.bl-grid {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 16px;
	}

	.bl-card {
		border-radius: 16px;
	}

	.bl-card-img {
		height: 180px;
	}

	.bl-container {
		padding: 16px 16px 48px;
	}

	.dt-page-header-inner {
		gap: 16px;
	}
}

@media (max-width: 480px) {
	.bl-hero {
		padding: 24px 16px;
	}

	.bl-hero-title {
		font-size: 24px;
	}

	.bl-hero-icon {
		width: 48px;
		height: 48px;
		border-radius: 12px;
	}

	.bl-hero-icon img {
		width: 28px;
		height: 28px;
	}

	.bl-card-img {
		height: 160px;
	}

	.bl-card-body h3 {
		font-size: 18px;
	}

	.bl-load-more {
		font-size: 16px;
		padding: 10px 24px;
	}
}

/* ============================================================
   FAQ PAGE (fq- prefix)
   ============================================================ */

/* ---------- FAQ Hero ---------- */
.fq-hero {
	background: linear-gradient(173deg, #1174eb, #0d5fc4);
	padding: 32px 24px;
	text-align: center;
}

.fq-hero-icon {
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.fq-hero-icon-svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: #fff;
}

.fq-hero-title {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	line-height: 50px;
	letter-spacing: 0.37px;
	margin-bottom: 12px;
}

.fq-hero-desc {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 30px;
	letter-spacing: -0.44px;
}

/* ---------- FAQ Layout ---------- */
.fq-layout {
	max-width: 1104px;
	margin: 0 auto;
	padding: 32px 24px 64px;
	display: flex;
	gap: 32px;
	align-items: flex-start;
}

/* ---------- Categories Sidebar ---------- */
.fq-sidebar {
	width: 252px;
	flex-shrink: 0;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 24px;
	position: sticky;
	top: 80px;
}

.fq-sidebar h2 {
	font-size: 18px;
	font-weight: 700;
	color: #101828;
	letter-spacing: -0.44px;
	margin-bottom: 16px;
}

.fq-cat-nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.fq-cat-link {
	display: block;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #364153;
	text-decoration: none;
	letter-spacing: -0.31px;
	transition: background 0.2s;
}

.fq-cat-link:hover {
	background: #f3f4f6;
}

.fq-cat-link.active {
	background: #1174eb;
	color: #fff;
}

/* ---------- FAQ Main ---------- */
.fq-main {
	flex: 1;
	min-width: 0;
	max-width: 728px;
}

/* ---------- Accordion ---------- */
.fq-accordion {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 24px 0;
}

.fq-item {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -2px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.fq-question {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 24px;
	cursor: pointer;
	list-style: none;
}

.fq-question::-webkit-details-marker {
	display: none;
}

.fq-q-icon {
	width: 32px;
	height: 32px;
	background: rgba(17, 116, 235, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.fq-q-icon-svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #1174eb;
}

.fq-q-text {
	flex: 1;
	font-size: 18px;
	font-weight: 700;
	color: #101828;
	letter-spacing: -0.44px;
}

.fq-chevron {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	position: relative;
}

.fq-chevron::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-right: 2px solid #6a7282;
	border-bottom: 2px solid #6a7282;
	transform: translate(-50%, -65%) rotate(45deg);
	transition: transform 0.2s;
}

.fq-item[open] .fq-chevron::before {
	transform: translate(-50%, -35%) rotate(-135deg);
}

.fq-answer {
	padding: 0 24px 20px 72px;
	border-top: 1px solid #e5e7eb;
	margin-top: -1px;
	padding-top: 17px;
}

.fq-answer p {
	font-size: 16px;
	color: #364153;
	line-height: 1.7;
	letter-spacing: -0.31px;
}

/* ---------- CTA Banner ---------- */
.fq-cta {
	background: linear-gradient(163deg, #1174eb, #0d5fc4);
	border-radius: 24px;
	padding: 32px;
	text-align: center;
	margin: 24px 0;
}

.fq-cta h2 {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.07px;
	margin-bottom: 16px;
}

.fq-cta p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	letter-spacing: -0.44px;
	max-width: 745px;
	margin: 0 auto 24px;
}

.fq-cta-btn {
	display: inline-block;
	background: #fff;
	color: #1174eb;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.31px;
	padding: 12px 32px;
	border-radius: 10px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	transition: background 0.2s;
}

.fq-cta-btn:hover {
	background: #f0f7ff;
}

/* ============================================================
   FAQ PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.fq-layout {
		gap: 24px;
	}

	.fq-sidebar {
		width: 220px;
	}

	.fq-hero-title {
		font-size: 30px;
	}
}

@media (max-width: 768px) {
	.fq-layout {
		flex-direction: column;
		padding: 16px 16px 64px;
	}

	.fq-sidebar {
		width: 100%;
		position: static;
	}

	.fq-cat-nav {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 8px;
	}

	.fq-cat-link {
		padding: 8px 14px;
		font-size: 14px;
	}

	.fq-hero-title {
		font-size: 26px;
		margin-bottom: 10px;
	}

	.fq-hero-desc {
		font-size: 14px;
		line-height: 20px;
	}

	.fq-main-header h2 {
		font-size: 24px;
	}

	.fq-q-text {
		font-size: 16px;
		line-height: 22px;
	}

	.fq-answer {
		padding-left: 24px;
	}

	.fq-cta {
		padding: 24px;
	}

	.fq-cta h2 {
		font-size: 20px;
	}

	.fq-cta p {
		font-size: 16px;
	}

	.fq-accordion {
		margin: 16px 0;
	}
}

@media (max-width: 480px) {
	.fq-hero {
		padding: 24px 16px;
	}

	.fq-hero-title {
		font-size: 22px;
	}

	.fq-hero-icon {
		width: 52px;
		height: 52px;
		border-radius: 18px;
	}

	.fq-question {
		padding: 16px;
		gap: 12px;
	}

	.fq-answer {
		padding: 0 16px 16px 16px;
		padding-top: 14px;
	}

	.fq-answer p {
		font-size: 14px;
		line-height: 20px;
	}

	.fq-cta {
		border-radius: 16px;
		padding: 20px;
	}

	.fq-cta-btn {
		font-size: 14px;
		padding: 10px 24px;
	}
}

/* ============================================================
   POST DETAIL PAGE (pd- prefix)
   ============================================================ */

/* ---------- Container ---------- */
.pd-container {
	max-width: 1138px;
	margin: 0 auto;
	padding: 24px 24px 64px;
}

.pd-title {
	font-size: 28px;
	font-weight: 700;
	color: #101828;
	letter-spacing: 0.37px;
	line-height: 36px;
	margin-bottom: 24px;
	max-width: 728px;
}

/* ---------- Layout ---------- */
.pd-layout {
	display: flex;
	gap: 32px;
	align-items: flex-start;
}

.pd-main {
	flex: 1;
	min-width: 0;
	max-width: 728px;
}

/* ---------- Article Sections ---------- */
.pd-main h4 {
	font-size: 22px;
	font-weight: 700;
	color: #101828;
	letter-spacing: 0.4px;
	line-height: 28px;
	margin: 16px 0 10px 0;
}

.pd-main p {
	font-size: 16px;
	color: #101828;
	line-height: 26px;
	letter-spacing: -0.44px;
	margin-bottom: 10px;
}

.pd-main picture {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	margin: 20px 0;
}

.pd-main img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	margin: 20px 0;
}

.pd-main ul {
	color: #101828;
	list-style: disc;
	margin-left: 24px;
	margin-bottom: 10px;
}

.pd-main ul li {
	margin-bottom: 12px;
}

.pd-main ol {
	color: #101828;
	list-style: decimal;
	margin-left: 24px;
	margin-bottom: 16px;
}

.pd-main ol li {
	margin-bottom: 12px;
}

.pd-main p a,
.pd-main li a {
	color: #1174eb;
	text-decoration: underline;
}

/* ---------- Next Page Button ---------- */
.pd-next-page {
	display: block;
	width: 100%;
	margin-top: 24px;
	padding: 16px;
	background: #1174eb;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	font-style: italic;
	letter-spacing: -0.44px;
	text-align: center;
	text-decoration: none;
	border-radius: 14px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: background 0.2s;
}

.pd-next-page:hover {
	background: #0d5fc4;
}

/* ---------- Prev / Next Article Nav ---------- */
.pd-article-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 24px 0;
	padding: 24px 0;
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}

.pd-nav-link {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 600;
	color: #101828;
	text-decoration: none;
	letter-spacing: -0.31px;
	transition: color 0.2s;
}

.pd-nav-link:hover {
	color: #1174eb;
}

.pd-nav-link-icon {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #101828;
}

.pd-nav-link:hover .pd-nav-link-icon {
	stroke: #1174eb;
}

.pd-nav-prev .pd-nav-link-icon {
	transform: rotate(90deg);
}
.pd-nav-next .pd-nav-link-icon {
	transform: rotate(-90deg);
}

/* ---------- More Articles ---------- */
.pd-more {
	margin-top: 32px;
}

.pd-more h2 {
	font-size: 24px;
	font-weight: 700;
	color: #101828;
	letter-spacing: 0.4px;
	margin-bottom: 24px;
}

.pd-more-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pd-related-card {
	display: flex;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -2px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	transition: box-shadow 0.2s, transform 0.2s;
}

.pd-related-card:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -4px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.pd-related-img {
	width: 256px;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
}

.pd-related-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
}

.pd-related-img--placeholder {
	background: #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pd-related-img--placeholder img {
	width: 88px;
	height: 88px;
	object-fit: contain;
}

.pd-related-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	background: rgba(255, 255, 255, 0.95);
	color: #1174eb;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pd-related-body {
	flex: 1;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.pd-related-body h3 {
	font-size: 20px;
	font-weight: 700;
	color: #101828;
	letter-spacing: 0.07px;
	line-height: 26px;
	margin-bottom: 12px;
}

.pd-related-body p {
	font-size: 16px;
	color: #101828;
	line-height: 24px;
	letter-spacing: -0.31px;
	margin-bottom: 16px;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.pd-read-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: #1174eb;
	letter-spacing: -0.15px;
}

.pd-read-link-icon {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: #1174eb;
}

/* ---------- Need Help CTA ---------- */
.pd-cta {
	background: linear-gradient(164deg, #1174eb, #0d5fc4);
	border-radius: 24px;
	padding: 32px;
	margin-top: 32px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pd-cta h2 {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.07px;
	margin-bottom: 16px;
}

.pd-cta p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	letter-spacing: -0.31px;
	margin-bottom: 24px;
}

.pd-cta-btn {
	display: block;
	width: 100%;
	background: #fff;
	color: #1174eb;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.31px;
	text-align: center;
	padding: 12px;
	border-radius: 14px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	transition: background 0.2s;
}

.pd-cta-btn:hover {
	background: #f0f7ff;
}

/* ============================================================
   POST DETAIL RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.pd-title {
		font-size: 30px;
		margin: 0 auto 24px auto;
	}

	.pd-heading h2 {
		font-size: 26px;
	}

	.pd-related-img {
		width: 220px;
	}

	.pd-related-body h3 {
		font-size: 20px;
	}

	.pd-more h2 {
		font-size: 26px;
	}

	.pd-layout {
		flex-direction: column;
		margin: 0 auto;
	}

	.pd-main {
		margin: 0 auto;
	}

	.pd-layout .sl-sidebar {
		max-width: 728px;
		width: 100%;
		margin: 0 auto;
		position: static;
	}

	.pd-layout .sl-sidebar-cards {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.pd-layout .sl-sidebar-header {
		padding-bottom: 10px;
		margin-bottom: 16px;
	}
}

@media (max-width: 768px) {
	.pd-main {
		max-width: 100%;
	}

	.pd-title {
		font-size: 26px;
		line-height: 30px;
	}

	.pd-heading h2 {
		font-size: 22px;
	}

	.pd-text {
		font-size: 16px;
	}

	.pd-related-card {
		flex-direction: column;
	}

	.pd-related-img {
		width: 100%;
		height: 200px;
	}

	.pd-related-body h3 {
		font-size: 20px;
	}

	.pd-more h2 {
		font-size: 24px;
	}

	.pd-image {
		border-radius: 16px;
	}
}

@media (max-width: 480px) {
	.pd-container {
		padding: 24px 16px 48px 16px;
	}

	.pd-title {
		font-size: 22px;
	}

	.pd-heading {
		padding: 12px 16px 12px 20px;
	}

	.pd-heading h2 {
		font-size: 19px;
	}

	.pd-text {
		font-size: 15px;
	}

	.pd-next-page {
		font-size: 16px;
		padding: 14px;
	}

	.pd-nav-link {
		font-size: 14px;
	}

	.pd-related-img {
		height: 180px;
	}

	.pd-related-body {
		padding: 16px;
	}

	.pd-related-body h3 {
		font-size: 18px;
	}

	.pd-cta {
		padding: 24px;
		border-radius: 16px;
	}

	.pd-cta h2 {
		font-size: 20px;
	}

	.pd-cta p {
		font-size: 15px;
	}

	.pd-image {
		border-radius: 12px;
	}

	.pd-layout .sl-sidebar-cards {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* ============================================ Privacy Policy ============================================ */

.privacy {
	padding-top: 80px;
	font-size: 0;
}

.privacy .content {
	margin-top: 48px;
}

.privacy h1 {
	color: var(--text-color-black);
	font-size: 30px;
	font-weight: 600;
	line-height: 56px;
	text-transform: capitalize;
	margin: 0;
}

.privacy b {
	color: var(--text-color-black);
	font-size: 22px;
	font-weight: 600;
	line-height: 28px;
	text-transform: capitalize;
	margin: 32px 0 16px 0;
}

.privacy b:first-child {
	margin-top: 0;
}

.privacy p {
	color: var(--text-color-gray);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 16px;
}

.privacy ul {
	list-style: disc;
	padding-left: 24px;
	margin-bottom: 16px;
}

.privacy ul li {
	color: var(--text-color-gray);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

@media screen and (max-width: 1164px) {
	.privacy {
		padding: 52px 32px 0 32px;
	}

	.privacy .content {
		margin-top: 34px;
		flex-direction: column;
	}

	.privacy b {
		margin: 32px 0 16px 0;
	}
}

@media screen and (max-width: 768px) {
	.privacy {
		padding: 24px 16px 0 16px;
	}

	.privacy .content {
		margin-top: 20px;
	}

	.privacy b {
		margin: 24px 0 12px 0;
	}
}

/* ============================================ Anchor ============================================ */

.toc {
	display: flex;
	flex-direction: column;
	position: sticky;
	top: 36px;
	margin-bottom: 28px;
}

.toc a {
	text-decoration: none;
	color: #666;
	font-size: 16px;
	padding: 14px 24px;
	border-left: 2px solid #dadce0;
	transition: all 0.3s ease;
	text-transform: capitalize;
	cursor: pointer;
}

.toc a:hover {
	color: #333;
}

.toc a.active {
	color: #333;
	border-left-color: #333;
	font-weight: 500;
}

@media screen and (max-width: 1164px) {
	.toc {
		display: none;
	}
}

.wrapper {
	max-width: 1100px;
	margin: 0 auto;
}

.wrapper h1 {
	max-width: 728px;
	margin: 16px 0 24px 0;
	overflow: hidden;
	color: #333;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 32px;
}

.content {
	display: flex;
	max-width: 1100px;
	margin: 0 auto;
	gap: 72px;
}

.main-office {
	flex: 0 0 728px;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	margin-bottom: 120px;
}

.aside {
	display: flex;
	width: 300px;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	margin-bottom: 120px;
}

#page-404 {
	display: flex;
	width: 1100px;
	padding: 120px 0 80px 0;
	margin: 0 auto;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 48px;
}

#img-404 {
	width: 334px;
	height: 200px;
	aspect-ratio: 167/100;
}

#content-404 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 40px;
}

#description-error-code {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

#oops {
	color: #333;
	text-align: center;
	font-size: 96px;
	font-weight: 600;
	line-height: 116px;
	text-transform: capitalize;
}

#description {
	color: #333;
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
	text-transform: capitalize;
}

#error-code {
	color: #999;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-transform: capitalize;
}

#back-to-home {
	display: flex;
	padding: 15px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 12px;
	background: #0e74eb;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
	text-transform: capitalize;
}

#back-to-home:hover {
	background: #0065e1;
}

@media screen and (max-width: 1164px) {
	#page-404 {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	#page-404 {
		gap: 32px;
	}

	#img-404 {
		width: 280px;
		height: auto;
		max-width: 100%;
	}

	#content-404 {
		gap: 24px;
	}

	#description-error-code {
		gap: 8px;
	}

	#oops {
		font-size: 64px;
		line-height: 76px;
	}

	#description {
		font-size: 16px;
		line-height: 24px;
		padding: 0 20px;
	}

	#error-code {
		font-size: 14px;
		line-height: 20px;
	}

	#back-to-home {
		padding: 12px 20px;
		font-size: 16px;
		line-height: 24px;
	}
}

@media screen and (max-width: 480px) {
	#page-404 {
		gap: 24px;
	}

	#img-404 {
		width: 240px;
	}

	#content-404 {
		gap: 20px;
	}

	#oops {
		font-size: 48px;
		line-height: 58px;
	}

	#description {
		font-size: 14px;
		line-height: 22px;
		padding: 0 16px;
	}

	#error-code {
		font-size: 12px;
		line-height: 18px;
	}

	#back-to-home {
		padding: 10px 18px;
		font-size: 14px;
		line-height: 22px;
	}
}
