/* Hansen Projects – project landing pages + overview grid. Scoped to .hp-* classes. */

:root {
	--hp-red: #d52b2b;
	--hp-red-dark: #b51f1f;
	--hp-ink: #1f2326;
	--hp-muted: #5c6166;
	--hp-sand: #f6f3ee;
	--hp-line: #e6e0d6;
	--hp-dark: #1c2126;
	--hp-radius: 18px;
}

/* ---------- Section rhythm ---------- */
body .e-con.hp-sec {
	--padding-top: clamp(56px, 7vw, 100px);
	--padding-bottom: clamp(56px, 7vw, 100px);
	--padding-left: 20px;
	--padding-right: 20px;
	--gap: 24px 48px;
	--row-gap: 24px;
	--column-gap: 48px;
}
body .e-con.hp-sec.hp-tight { --padding-top: 0; }
body .e-con.hp-row { --align-items: center; --flex-wrap: nowrap; }
body .e-con.hp-hero:not(.hp-row) { --align-items: flex-start; }
body .e-con.hp-row.hp-top { --align-items: flex-start; }
body .e-con.hp-col { --width: auto; flex: 1 1 0; min-width: 0; --padding-top: 0; --padding-bottom: 0; --padding-left: 0; --padding-right: 0; --gap: 0; --row-gap: 0; }
body .e-con.hp-col.hp-col-wide { flex-grow: 1.35; }
body .e-con.hp-stack { --padding-top: 0; --padding-bottom: 0; --padding-left: 0; --padding-right: 0; --gap: 0; --row-gap: 0; }
body .e-con.hp-center { --align-items: center; text-align: center; }
body .e-con.hp-center .hp-lead { margin-left: auto; margin-right: auto; }

/* ---------- Typography ---------- */
.hp-eyebrow .elementor-heading-title,
.hp-pcard__loc {
	color: var(--hp-red);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	line-height: 1.4;
	margin: 0 0 14px;
}
.hp-h1 .elementor-heading-title {
	color: var(--hp-ink);
	font-size: clamp(30px, 4.2vw, 50px);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -.01em;
	margin: 0 0 18px;
}
.hp-h2 .elementor-heading-title {
	color: var(--hp-ink);
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -.01em;
	margin: 0 0 20px;
}
.hp-h3 .elementor-heading-title {
	color: var(--hp-ink);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 14px;
}
.hp-lead,
.hp-lead p {
	color: var(--hp-muted);
	font-size: clamp(16px, 1.4vw, 19px);
	line-height: 1.65;
	max-width: 640px;
}
.hp-body,
.hp-body p,
.hp-body li {
	color: var(--hp-muted);
	font-size: 16px;
	line-height: 1.75;
}
.hp-body p:last-child,
.hp-lead p:last-child { margin-bottom: 0; }
.hp-body strong { color: var(--hp-ink); font-weight: 600; }
.hp-body h3 { color: var(--hp-ink); font-size: 18px; font-weight: 600; margin: 24px 0 10px; }
.hp-body h3:first-child { margin-top: 0; }
.hp-note,
.hp-note p { color: var(--hp-muted); font-size: 13px; line-height: 1.6; font-style: italic; }

/* ---------- Lists ---------- */
.hp-checks ul,
ul.hp-checks { list-style: none; margin: 0; padding: 0; }
.hp-checks li {
	position: relative;
	padding: 11px 0 11px 34px;
	border-bottom: 1px solid var(--hp-line);
	color: var(--hp-ink);
	font-size: 15.5px;
	line-height: 1.5;
	list-style: none;
}
.hp-checks li:last-child { border-bottom: 0; }
.hp-checks li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--hp-red);
}
.hp-checks li::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 16px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.hp-checks.hp-checks--2 ul { columns: 2; column-gap: 40px; }
.hp-checks.hp-checks--2 li { break-inside: avoid; }

/* ---------- Hero ---------- */
body .e-con.hp-hero {
	background: var(--hp-sand);
	--padding-top: clamp(40px, 5vw, 72px);
	--padding-bottom: clamp(48px, 6vw, 88px);
	margin-top: -40px;
}
.hp-hero__img img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--hp-radius);
	box-shadow: 0 24px 60px -30px rgba(28, 33, 38, .45);
	display: block;
}
.hp-facts ul {
	list-style: none;
	margin: 28px 0 30px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid var(--hp-line);
}
.hp-facts li {
	list-style: none;
	padding: 14px 16px 14px 0;
	border-bottom: 1px solid var(--hp-line);
	margin: 0;
}
.hp-facts li span {
	display: block;
	color: var(--hp-muted);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.hp-facts li strong {
	display: block;
	color: var(--hp-ink);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
}

/* ---------- Buttons ---------- */
body .e-con.hp-btns { --flex-direction: row; --flex-wrap: wrap; --gap: 12px; --row-gap: 12px; --column-gap: 12px; --padding-top: 0; --padding-bottom: 0; --padding-left: 0; --padding-right: 0; }
body .e-con.hp-btns > .elementor-widget { width: auto; }
body .elementor-widget.hp-btn .elementor-button {
	background: var(--hp-red);
	color: #fff;
	border: 2px solid var(--hp-red);
	border-radius: 999px;
	padding: 14px 26px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .02em;
	line-height: 1.2;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}
body .elementor-widget.hp-btn .elementor-button:hover,
body .elementor-widget.hp-btn .elementor-button:focus-visible { background: var(--hp-red-dark); border-color: var(--hp-red-dark); color: #fff; }
body .elementor-widget.hp-btn--ghost .elementor-button { background: transparent; color: var(--hp-ink); border-color: var(--hp-ink); }
body .elementor-widget.hp-btn--ghost .elementor-button:hover,
body .elementor-widget.hp-btn--ghost .elementor-button:focus-visible { background: var(--hp-ink); border-color: var(--hp-ink); color: #fff; }
body .elementor-widget.hp-btn--light .elementor-button { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .6); }
body .elementor-widget.hp-btn--light .elementor-button:hover { background: #fff; color: var(--hp-ink); border-color: #fff; }

/* ---------- Card blocks ---------- */
body .e-con.hp-card {
	background: var(--hp-sand);
	border-radius: var(--hp-radius);
	--padding-top: 34px;
	--padding-bottom: 30px;
	--padding-left: 34px;
	--padding-right: 34px;
}
body .e-con.hp-card--line { background: #fff; border: 1px solid var(--hp-line); }
body .e-con.hp-card--dark { background: var(--hp-dark); }
.hp-card--dark .hp-h2 .elementor-heading-title,
.hp-card--dark .hp-h3 .elementor-heading-title,
.hp-card--dark .hp-body,
.hp-card--dark .hp-body p,
.hp-card--dark .hp-body li,
.hp-card--dark .hp-body strong,
.hp-card--dark .hp-body h3 { color: #fff; }
.hp-card--dark .hp-body p,
.hp-card--dark .hp-body li { color: rgba(255, 255, 255, .78); }
.hp-card--dark .hp-checks li { color: #fff; border-color: rgba(255, 255, 255, .14); }
.hp-price .elementor-heading-title { color: #fff; font-size: clamp(28px, 3vw, 40px); font-weight: 600; margin: 0 0 6px; }

/* ---------- Gallery ---------- */
.hp-grid .gallery {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: clamp(150px, 16vw, 230px);
	gap: 12px;
	margin: 0 !important;
}
.hp-grid .gallery > br { display: none; }
.hp-grid .gallery-item {
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden;
	border-radius: 12px;
}
.hp-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.hp-grid .gallery-icon,
.hp-grid .gallery-icon a { display: block; height: 100%; }
.hp-grid .gallery-item img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	border: 0 !important;
	border-radius: 12px;
	transition: transform .5s ease;
}
.hp-grid .gallery-item:hover img { transform: scale(1.04); }
.hp-grid .gallery-caption { display: none; }

/* ---------- Split sections ---------- */
.hp-split__img img {
	width: 100%;
	aspect-ratio: 5 / 4;
	object-fit: cover;
	border-radius: var(--hp-radius);
	display: block;
}
body .e-con.hp-sec.hp-alt { background: var(--hp-sand); }

/* ---------- Feature cards ---------- */
body .e-con.hp-cards {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	--gap: 20px;
	gap: 20px;
	--padding-top: 12px;
	--padding-bottom: 0;
	--padding-left: 0;
	--padding-right: 0;
}
body .e-con.hp-cards.hp-cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
body .e-con.hp-fcard {
	--width: auto;
	background: #fff;
	border: 1px solid var(--hp-line);
	border-radius: 16px;
	overflow: hidden;
	--padding-top: 0;
	--padding-bottom: 0;
	--padding-left: 0;
	--padding-right: 0;
	--gap: 0;
	--row-gap: 0;
	--justify-content: flex-start;
}
.hp-fcard .hp-fcard__img img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; border-radius: 0; }
.hp-fcard .hp-fcard__text { padding: 22px 24px 24px; }
.hp-fcard .hp-fcard__text h3 { color: var(--hp-ink); font-size: 18px; font-weight: 600; line-height: 1.35; margin: 0 0 8px; }
.hp-fcard .hp-fcard__text p { color: var(--hp-muted); font-size: 15px; line-height: 1.6; margin: 0; }
.hp-sec.hp-alt .e-con.hp-fcard { border-color: transparent; }

/* ---------- Video ---------- */
.hp-video .elementor-wrapper,
.hp-video video { border-radius: var(--hp-radius); overflow: hidden; }
.hp-video .elementor-custom-embed-image-overlay { border-radius: var(--hp-radius); }

/* ---------- Map ---------- */
.hp-map iframe,
.hp-map .elementor-custom-embed { border-radius: var(--hp-radius); height: 440px !important; width: 100%; display: block; }

/* ---------- Contact ---------- */
body .e-con.hp-contact { background: var(--hp-dark); }
.hp-contact .hp-h2 .elementor-heading-title { color: #fff; }
.hp-contact .hp-lead,
.hp-contact .hp-lead p { color: rgba(255, 255, 255, .78); }
.hp-contact .hp-body,
.hp-contact .hp-body p { color: rgba(255, 255, 255, .78); }
.hp-contact .hp-body a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.hp-contact .hp-body strong { color: #fff; }
body .e-con.hp-formcard {
	background: #fff;
	border-radius: var(--hp-radius);
	--padding-top: 32px;
	--padding-bottom: 32px;
	--padding-left: 32px;
	--padding-right: 32px;
}
.hp-form .elementor-field-group { margin-bottom: 14px; }
.hp-form .elementor-field-label { color: var(--hp-ink); font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.hp-form .elementor-field-textual {
	background: #fff;
	border: 1px solid #d9d4cb;
	border-radius: 10px;
	color: var(--hp-ink);
	font-size: 15px;
	min-height: 48px;
	padding: 12px 14px;
}
.hp-form .elementor-field-textual:focus { border-color: var(--hp-ink); box-shadow: none; outline: 2px solid rgba(213, 43, 43, .18); }
.hp-form textarea.elementor-field-textual { min-height: 120px; }
.hp-form .elementor-field-type-acceptance label { font-size: 13px; color: var(--hp-muted); }
.hp-form .e-form__buttons .elementor-button,
.hp-form .elementor-button[type="submit"] {
	background: var(--hp-red);
	border-radius: 999px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .02em;
	min-height: 50px;
	padding: 14px 28px;
	width: 100%;
}
.hp-form .elementor-button[type="submit"]:hover { background: var(--hp-red-dark); }
.hp-form .elementor-message { font-size: 14px; }

/* ---------- Back link ---------- */
body .e-con.hp-back { --padding-top: 28px; --padding-bottom: 28px; --align-items: center; border-top: 1px solid var(--hp-line); }
.hp-backlink .elementor-button {
	background: transparent;
	color: var(--hp-ink);
	padding: 8px 0;
	font-size: 14px;
	font-weight: 600;
	border-bottom: 2px solid var(--hp-red);
	border-radius: 0;
}
.hp-backlink .elementor-button:hover { color: var(--hp-red); background: transparent; }

/* ---------- Projects overview grid ---------- */
.hp-projects {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}
.hp-pcard {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--hp-line);
	border-radius: var(--hp-radius);
	overflow: hidden;
	color: inherit;
	text-decoration: none;
	transition: transform .25s ease, box-shadow .25s ease;
}
.hp-pcard:hover,
.hp-pcard:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 22px 50px -28px rgba(28, 33, 38, .45);
	color: inherit;
}
.hp-pcard__img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--hp-sand); }
.hp-pcard__img img { position: absolute; inset: 0; width: 100% !important; height: 100% !important; max-width: none; object-fit: cover; display: block; transition: transform .6s ease; }
.hp-pcard:hover .hp-pcard__img img { transform: scale(1.04); }
.hp-pcard__body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.hp-pcard__loc { margin-bottom: 8px; }
.hp-pcard__title { color: var(--hp-ink); font-size: 24px; font-weight: 600; line-height: 1.25; margin: 0 0 10px; }
.hp-pcard__facts { color: var(--hp-ink); font-size: 14px; font-weight: 600; margin: 0 0 12px; }
.hp-pcard__text { color: var(--hp-muted); font-size: 15px; line-height: 1.65; margin: 0 0 20px; }
.hp-pcard__cta { margin-top: auto; color: var(--hp-red); font-size: 14px; font-weight: 600; letter-spacing: .02em; }
.hp-projects-empty { color: var(--hp-muted); font-size: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	body .e-con.hp-row { --align-items: stretch; }
	body .e-con.hp-sec { --gap: 32px; --row-gap: 32px; }
	body .e-con.hp-cards,
	body .e-con.hp-cards.hp-cards--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hp-grid .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.hp-hero__img img { aspect-ratio: 16 / 10; }
}
@media (max-width: 767px) {
	body .e-con.hp-sec { --padding-left: 16px; --padding-right: 16px; }
	.hp-facts ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	body .e-con.hp-cards,
	body .e-con.hp-cards.hp-cards--4 { grid-template-columns: 1fr; }
	.hp-grid .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 140px; gap: 8px; }
	.hp-checks.hp-checks--2 ul { columns: 1; }
	body .e-con.hp-card,
	body .e-con.hp-formcard { --padding-left: 22px; --padding-right: 22px; --padding-top: 26px; --padding-bottom: 24px; }
	.hp-projects { grid-template-columns: 1fr; gap: 20px; }
	.hp-pcard__body { padding: 22px; }
	.hp-map iframe,
	.hp-map .elementor-custom-embed { height: 320px !important; }
	.hp-btn .elementor-button { padding: 13px 20px; }
}

/* Lists inside body copy */
.hp-body ul { list-style: none; margin: 0 0 20px; padding: 0; }
.hp-body ul li { position: relative; padding: 4px 0 4px 20px; margin: 0; }
.hp-body ul li::before { content: ""; position: absolute; left: 2px; top: 15px; width: 7px; height: 7px; border-radius: 50%; background: var(--hp-red); }
.hp-card--dark .hp-body ul li::before { background: #fff; }
.hp-split__img.hp-natural img { aspect-ratio: auto; width: auto; max-width: 100%; max-height: 620px; margin: 0 auto; }

.hp-contact .hp-lead + .hp-body { margin-top: 18px; }
.hp-contact .hp-body p { font-size: 15px; }

/* Video overlay needs a positioned wrapper */
.hp-video .elementor-wrapper { position: relative; aspect-ratio: 16 / 9; }
.hp-video .elementor-wrapper video { width: 100%; height: 100%; object-fit: cover; }
.hp-video { margin-bottom: 18px; }

/* Villa tables */
.hp-table-wrap { overflow-x: auto; margin: 6px 0 10px; -webkit-overflow-scrolling: touch; }
.hp-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 420px; }
.hp-table th, .hp-table td { padding: 10px 10px; text-align: left; border-bottom: 1px solid var(--hp-line); white-space: nowrap; }
.hp-table th { color: var(--hp-muted); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.hp-table td { color: var(--hp-ink); }
.hp-table td:first-child { font-weight: 600; }
.hp-table tbody tr:hover td { background: var(--hp-sand); }
.hp-body .hp-small { font-size: 12.5px; line-height: 1.5; color: var(--hp-muted); }
.hp-table { font-size: 13.5px; min-width: 0; }
.hp-table th, .hp-table td { padding: 9px 6px; }
.hp-table th { font-size: 10px; letter-spacing: .04em; white-space: normal; vertical-align: bottom; }
@media (max-width: 767px) { .hp-table { min-width: 460px; } }

/* ---------- Projects carousel (homepage) ---------- */
.hp-carousel { position: relative; }
.hp-carousel__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 2 * 24px) / 3);
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 6px 2px 18px;
	outline: none;
}
.hp-carousel__track::-webkit-scrollbar { display: none; }
.hp-carousel .hp-pcard { scroll-snap-align: start; }
.hp-carousel .hp-pcard__title { font-size: 21px; }
.hp-carousel .hp-pcard__text {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.hp-carousel__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 10px; }
.hp-carousel__all { color: var(--hp-red); font-size: 14px; font-weight: 600; letter-spacing: .02em; }
.hp-carousel__all:hover { color: var(--hp-red-dark); }
.hp-carousel__nav { display: flex; gap: 10px; }
.hp-carousel__btn {
	width: 46px;
	height: 46px;
	min-height: 0;
	padding: 0;
	border-radius: 50%;
	border: 1.5px solid var(--hp-ink);
	background: #fff;
	color: var(--hp-ink);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, opacity .2s ease;
}
.hp-carousel__btn:hover:not(:disabled) { background: var(--hp-ink); color: #fff; }
.hp-carousel__btn:disabled { opacity: .3; cursor: default; }
.hp-carousel.is-static .hp-carousel__nav { display: none; }
@media (max-width: 1024px) {
	.hp-carousel__track { grid-auto-columns: calc((100% - 24px) / 2); }
}
@media (max-width: 767px) {
	.hp-carousel__track { grid-auto-columns: 84%; gap: 16px; }
	.hp-carousel__btn { width: 42px; height: 42px; }
}

/* Theme button styles (WoodMart) override plain selectors – force the round arrow look */
.hp-carousel .hp-carousel__nav button.hp-carousel__btn {
	width: 46px !important;
	height: 46px !important;
	min-height: 0 !important;
	padding: 0 !important;
	border-radius: 50% !important;
	border: 1.5px solid #1f2326 !important;
	background: #fff !important;
	color: #1f2326 !important;
	box-shadow: none !important;
	font-size: 18px !important;
	line-height: 1 !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.hp-carousel .hp-carousel__nav button.hp-carousel__btn:hover:not(:disabled) { background: #1f2326 !important; color: #fff !important; }
.hp-carousel .hp-carousel__nav button.hp-carousel__btn:disabled { opacity: .3; }
@media (max-width: 767px) {
	.hp-carousel .hp-carousel__nav button.hp-carousel__btn { width: 42px !important; height: 42px !important; }
}

/* ---------- Seller page ---------- */
.hp-sell-checks li { font-size: 15px; padding: 8px 0 8px 32px; border-bottom: 0; }
.hp-sell-checks li::before { top: 9px; }
.hp-sell-checks li::after { top: 13px; }
.hp-sell-checks ul { margin: 22px 0 28px; }
body .e-con.hp-sell-form { box-shadow: 0 24px 60px -34px rgba(28, 33, 38, .45); border: 1px solid var(--hp-line); }
.hp-sell-form .ego-hansen-wish,
.hp-sell-form .ego-hansen-wish-inner,
body .hp-sell-form form.ego-hansen-wish-form { background: transparent !important; padding: 0 !important; margin: 0 !important; box-shadow: none !important; border: 0 !important; max-width: none !important; }
body .hp-sell-form .ego-hansen-wish-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 14px 16px !important; }
@media (max-width: 420px) { body .hp-sell-form .ego-hansen-wish-grid { grid-template-columns: 1fr !important; } }
.hp-sell-form .ego-hansen-wish-title { color: var(--hp-ink); font-size: 22px; font-weight: 600; line-height: 1.3; margin: 0 0 18px; text-align: left; }
.hp-sell-form .ego-hansen-wish-label { color: var(--hp-ink); font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.hp-sell-form .ego-hansen-wish-input { border: 1px solid #d9d4cb !important; border-radius: 10px !important; min-height: 48px; font-size: 15px; background: #fff; }
.hp-sell-form .ego-hansen-wish-legal { font-size: 13px; color: var(--hp-muted); }
.hp-sell-form .ego-hansen-wish-submit {
	background: var(--hp-red) !important; color: #fff !important; border: 0 !important; border-radius: 999px !important;
	min-height: 50px; padding: 14px 28px !important; width: 100%; font-size: 14px; font-weight: 600; letter-spacing: .02em;
}
.hp-sell-form .ego-hansen-wish-submit:hover { background: var(--hp-red-dark) !important; }
.hp-step .hp-step__n { color: var(--hp-red) !important; font-size: 13px !important; font-weight: 700; letter-spacing: .14em; margin: 0 0 10px !important; }
.hp-faq h3 { font-size: 18px; margin: 26px 0 8px; }
.hp-faq h3:first-child { margin-top: 0; }
.hp-faq p { max-width: 820px; }
body .e-con.hp-cta-band { --padding-top: 34px; --padding-bottom: 34px; --padding-left: 38px; --padding-right: 38px; --align-items: center; }
body .e-con.hp-guide-cta { --padding-top: 28px; --padding-bottom: 28px; }

/* ---------- Seller CTA box (posts, property pages, homepage) ---------- */
.hp-sellcta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin: 48px auto;
	padding: 34px 38px;
	max-width: calc(var(--wd-container-w, 1222px) - 30px);
	background: #1c2126;
	border-radius: 18px;
	color: #fff;
	font-family: inherit;
	clear: both;
}
.hp-sellcta__eyebrow { color: #f0a3a3; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 8px; }
.hp-sellcta__title { color: #fff !important; font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; line-height: 1.2; margin: 0 0 10px; }
.hp-sellcta__lead { color: rgba(255, 255, 255, .78); font-size: 16px; line-height: 1.6; margin: 0; max-width: 620px; }
.hp-sellcta__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; flex: 0 0 auto; }
.hp-sellcta__btn {
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--hp-red); color: #fff !important; border-radius: 999px; padding: 14px 28px;
	font-size: 14px; font-weight: 600; letter-spacing: .02em; text-decoration: none; transition: background .2s ease;
}
.hp-sellcta__btn:hover { background: var(--hp-red-dark); color: #fff; }
.hp-sellcta__link { color: #fff !important; font-size: 14px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.hp-sellcta--band { margin: 0 auto; }
@media (max-width: 767px) {
	.hp-sellcta { flex-direction: column; align-items: flex-start; padding: 26px 22px; margin: 32px 16px; gap: 18px; }
	.hp-sellcta__btn { width: 100%; }
}
