.a24i-template {
	padding: 48px 20px 72px;
	background: #f6f3ee;
	color: #161616;
}

.a24i-template-inner,
.a24i-single {
	width: min(1180px, 100%);
	margin: 0 auto;
}

.a24i-template-header {
	margin: 0 0 24px;
}

.a24i-template-header p {
	margin: 0 0 6px;
	color: #8a6a35;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: .08em;
}

.a24i-template-header h1,
.a24i-single-header h1 {
	margin: 0 0 24px;
	font-size: clamp(32px, 5vw, 58px);
	line-height: .98;
	letter-spacing: 0;
}

.a24i-back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	padding: 9px 12px;
	border: 1px solid #ded4c5;
	border-radius: 999px;
	background: rgba(255,255,255,.82);
	color: #171513;
	text-decoration: none;
	font-size: 13px;
	font-weight: 850;
	line-height: 1;
	box-shadow: 0 8px 22px rgba(21,20,18,.06);
	transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.a24i-back-link::before {
	content: "";
	width: 8px;
	height: 8px;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}

.a24i-back-link:hover {
	background: #fff;
	border-color: #e15933;
	color: #171513;
	transform: translateX(-2px);
	box-shadow: 0 10px 26px rgba(225,89,51,.18);
}

.a24i-single-price {
	margin: 0 0 8px;
	font-weight: 700;
	color: #8a6a35;
	font-size: 22px;
}

.a24i-single-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
	gap: 36px;
	margin-top: 28px;
}

.a24i-single-template {
	background: #f6f3ee;
	padding: 0;
}

body.single-immobile {
	background: #f6f3ee;
}

body.single-immobile .site-main.a24i-single-template {
	width: 100vw;
	max-width: none;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	background: #f6f3ee;
}

.a24i-search-page {
	width: 100%;
	max-width: none;
	margin: 0;
	box-sizing: border-box;
}

.a24i-search-form {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr)) minmax(128px, .8fr);
	gap: 14px;
	align-items: end;
	margin: 0 0 30px;
	padding: 18px;
	background: #fff;
	border: 1px solid #e5ded3;
	border-radius: 8px;
	box-shadow: 0 16px 40px rgba(21, 20, 18, .07);
}

.a24i-search-toggle {
	display: none;
}

@media (min-width: 641px) {
	.a24i-search-accordion:not([open]) .a24i-search-form {
		display: grid;
	}
}

.a24i-search-heading {
	display: flex;
	grid-column: 1 / -1;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding: 0 0 12px;
	border-bottom: 1px solid #ece6dc;
}

.a24i-search-heading strong {
	font-size: 17px;
}

.a24i-search-heading span {
	font-size: 13px;
	color: #6d6a64;
	font-weight: 400;
}

.a24i-search-form label {
	display: grid;
	gap: 6px;
	margin: 0;
}

.a24i-search-form span {
	font-size: 13px;
	font-weight: 600;
	color: #35322e;
}

.a24i-search-form select,
.a24i-search-form button {
	min-height: 44px;
	width: 100%;
	border: 1px solid #d8d1c6;
	border-radius: 6px;
	background: #fff;
}

.a24i-search-form button {
	grid-column: 7;
	border: 0;
	background: #1f1f1d;
	color: #fff;
	cursor: pointer;
	font-weight: 700;
}

.a24i-results {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.a24i-card {
	border: 1px solid #e4ddd2;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 10px 26px rgba(21, 20, 18, .06);
}

.a24i-card-image {
	display: block;
	aspect-ratio: 4 / 3;
	background: #f2f2f2;
	position: relative;
	overflow: hidden;
}

.a24i-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .25s ease;
}

.a24i-card:hover .a24i-card-image img {
	transform: scale(1.035);
}

.a24i-card-badge {
	position: absolute;
	left: 12px;
	top: 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .92);
	color: #1f1f1d;
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 800;
}

.a24i-card-status {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 9px 14px;
	background: #171513;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .1em;
	line-height: 1;
	text-transform: uppercase;
	box-shadow: 0 10px 22px rgba(17, 16, 14, .2);
}

.a24i-card-status-venduto {
	background: #b83f2d;
}

.a24i-card-status-affittato {
	background: #023c6f;
}

.a24i-card-has-status .a24i-card-badge {
	top: 50px;
}

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

.a24i-card h3 {
	margin: 0 0 8px;
	font-size: 19px;
	line-height: 1.25;
}

.a24i-card h3 a,
.a24i-card-link {
	color: inherit;
	text-decoration: none;
}

.a24i-card-location {
	margin: 0 0 10px;
	color: #6d6a64;
}

.a24i-price {
	font-weight: 700;
	margin: 0 0 12px;
	font-size: 18px;
	color: #8a6a35;
}

.a24i-card-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 14px;
}

.a24i-card-specs span {
	border: 1px solid #eee7dd;
	border-radius: 999px;
	padding: 5px 9px;
	font-size: 12px;
	background: #fbfaf7;
}

.a24i-card-link {
	font-weight: 800;
	color: #8a6a35;
}

.a24i-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 34px 0 0;
}

.a24i-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	border: 1px solid #ded6ca;
	border-radius: 6px;
	background: #fff;
	color: #1f1f1d;
	padding: 0 13px;
	font-weight: 800;
	text-decoration: none;
	transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.a24i-pagination .page-numbers.current,
.a24i-pagination .page-numbers:hover {
	background: #1f1f1d;
	border-color: #1f1f1d;
	color: #fff;
}

.a24i-specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 18px;
	background: #fff;
	border: 1px solid #e4ddd2;
	border-radius: 8px;
	padding: 18px;
}

.a24i-property-block .a24i-specs {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.a24i-specs div {
	display: grid;
	grid-template-columns: minmax(110px, 42%) 1fr;
	gap: 10px;
	border-bottom: 1px solid #e8e8e8;
	padding: 8px 0;
}

.a24i-specs dt {
	font-weight: 700;
}

.a24i-specs dd {
	margin: 0;
}

.a24i-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 12px;
}

.a24i-gallery a {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 8px;
	background: #eee8de;
}

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

.a24i-gallery-hidden-link {
	display: none !important;
}

.a24i-property {
	background: transparent;
	color: #171513;
	padding: 200px 24px 78px;
}

.a24i-property-fragment {
	padding-bottom: 34px;
}

.a24i-elementor-single {
	background: #f6f3ee;
	padding: 0 20px 72px;
}

.a24i-elementor-single-inner {
	width: min(1180px, 100%);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 34px;
	align-items: start;
}

.a24i-elementor-single-content {
	display: grid;
	gap: 22px;
}

.a24i-property-hero,
.a24i-property-main {
	width: min(1280px, 100%);
	margin: 0 auto;
}

.a24i-property-hero {
	display: grid;
	grid-template-columns: minmax(340px, .86fr) minmax(0, 1.14fr);
	gap: 34px;
	align-items: end;
}

.a24i-property-status-ribbon {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	margin: 0 0 -8px;
	border-radius: 8px;
	background: #171513;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .12em;
	line-height: 1;
	text-transform: uppercase;
	box-shadow: 0 16px 32px rgba(23, 21, 19, .14);
}

.a24i-property-status-ribbon-venduto {
	background: #b83f2d;
}

.a24i-property-status-ribbon-affittato {
	background: #023c6f;
}

.a24i-property-hero-copy {
	padding: 10px 0 18px;
}

.a24i-property-eyebrow {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 14px;
}

.a24i-property-eyebrow span {
	display: inline-flex;
	border: 1px solid #dfd5c5;
	border-radius: 999px;
	padding: 7px 11px;
	background: #fff;
	color: #715a34;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.a24i-property h1 {
	margin: 0 0 14px;
	color: #171513;
	font-size: clamp(24px, 2.6vw, 34px);
	line-height: 1.12;
	letter-spacing: 0;
	max-width: 28ch;
}

.a24i-single-template .a24i-property {
	padding-top: 200px;
}

.a24i-single-template .a24i-property h1 {
	color: #171513;
	font-size: clamp(24px, 2.6vw, 34px);
	line-height: 1.12;
	max-width: 28ch;
}

.a24i-property-address {
	margin: 0 0 12px;
	color: #615d55;
	font-size: 17px;
	line-height: 1.45;
}

.a24i-property-price {
	margin: 0 0 18px;
	color: #8a6a35;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 850;
}

.a24i-fact-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 8px;
}

.a24i-fact-bar div {
	flex: 1 1 max-content;
	background: #fff;
	border: 1px solid #e5ded2;
	border-radius: 8px;
	padding: 12px;
	min-height: 72px;
	min-width: 92px;
	max-width: 100%;
	width: max-content;
}

.a24i-fact-bar .a24i-fact-zona {
	flex-grow: 2;
	min-width: min(100%, 210px);
}

.a24i-fact-bar .a24i-fact-classe,
.a24i-fact-bar .a24i-fact-locali,
.a24i-fact-bar .a24i-fact-bagni,
.a24i-fact-bar .a24i-fact-piano {
	flex-grow: .8;
	min-width: 78px;
}

.a24i-fact-bar strong,
.a24i-fact-bar span {
	display: block;
}

.a24i-fact-bar strong {
	font-size: 18px;
	line-height: 1.1;
	overflow-wrap: normal;
	hyphens: manual;
}

.a24i-fact-bar span {
	margin-top: 6px;
	color: #706b63;
	font-size: 12px;
}

.a24i-property-gallery-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(160px, .65fr);
	gap: 10px;
	min-height: 480px;
	position: relative;
}

.a24i-property-gallery-hero a {
	display: block;
	overflow: hidden;
	background: #e8e1d7;
}

.a24i-property-gallery-main {
	border-radius: 10px 0 0 10px;
}

.a24i-property-gallery-side {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	position: relative;
}

.a24i-property-gallery-side a:nth-child(2) {
	border-radius: 0 10px 0 0;
}

.a24i-property-gallery-side a:nth-child(4) {
	border-radius: 0 0 10px 0;
}

.a24i-property-gallery-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.a24i-gallery-count {
	position: absolute;
	right: 14px;
	bottom: 14px;
	background: rgba(255,255,255,.94);
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 999px;
	padding: 8px 12px;
	font-weight: 800;
}

.a24i-property-main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 38px;
	margin-top: 34px;
	align-items: start;
}

.a24i-property-content {
	display: grid;
	gap: 22px;
}

.a24i-property-block {
	background: #fff;
	border: 1px solid #e5ded2;
	border-radius: 8px;
	padding: 24px;
	box-shadow: 0 12px 32px rgba(21,20,18,.055);
}

.a24i-property-block h2 {
	margin: 0 0 18px;
	font-size: 24px;
	letter-spacing: 0;
}

.a24i-overview-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.a24i-overview-grid div {
	padding: 14px;
	border-radius: 8px;
	background: #faf8f4;
	border: 1px solid #eee7dc;
	min-width: 0;
}

.a24i-overview-grid span,
.a24i-overview-grid strong {
	display: block;
}

.a24i-overview-grid span {
	color: #706b63;
	font-size: 12px;
	margin: 0 0 6px;
}

.a24i-overview-grid strong {
	font-size: 16px;
	overflow-wrap: anywhere;
	hyphens: auto;
}

.a24i-description {
	font-size: 17px;
	line-height: 1.72;
	color: #34302b;
}

.a24i-description p {
	margin: 0 0 18px;
}

.a24i-contact-panel {
	position: sticky;
	top: 96px;
}

.a24i-contact-card {
	background: #171513;
	color: #fff;
	border-radius: 8px;
	padding: 24px;
	box-shadow: 0 18px 40px rgba(21,20,18,.18);
}

.a24i-contact-card > span {
	display: block;
	color: #d6bd8b;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin: 0 0 8px;
}

.a24i-contact-card h2 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 25px;
	line-height: 1.05;
}

.a24i-contact-price {
	font-size: 22px;
	color: #f4d493;
	font-weight: 850;
	margin: 0 0 18px;
}

.a24i-contact-button,
.a24i-contact-link {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 46px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 800;
}

.a24i-contact-button {
	background: #f4d493;
	color: #171513;
	margin: 0 0 10px;
}

.a24i-contact-link {
	background: #fff;
	border: 1px solid #fff;
	color: #171513;
}

.a24i-contact-note {
	margin: 16px 0 0;
	color: rgba(255,255,255,.72);
	font-size: 13px;
	line-height: 1.45;
}

.a24i-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(10, 10, 10, .92);
	padding: 24px;
}

.a24i-lightbox.is-open {
	display: flex;
}

.a24i-lightbox img {
	max-width: min(1120px, 86vw);
	max-height: 84vh;
	object-fit: contain;
	box-shadow: 0 24px 80px rgba(0,0,0,.38);
}

.a24i-lightbox button {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 999px;
	background: rgba(255,255,255,.96);
	color: #171513;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
}

.a24i-lightbox button:hover {
	background: #e15933;
	border-color: #e15933;
	color: #fff;
}

.a24i-lightbox-close {
	top: 22px;
	right: 22px;
}

.a24i-lightbox-prev {
	left: 22px;
	top: 50%;
	transform: translateY(-50%);
}

.a24i-lightbox-next {
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
}

.a24i-lightbox-count {
	position: absolute;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .04em;
}

.a24i-valuation {
	display: grid;
	grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
	gap: 26px;
	align-items: stretch;
	width: min(1040px, 100%);
	margin: 0 auto;
	background: #fff;
	border: 1px solid #e3dacd;
	border-radius: 8px;
	box-shadow: 0 18px 46px rgba(21, 20, 18, .09);
	overflow: hidden;
}

.a24i-valuation-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 30px;
	background: #171513;
	color: #fff;
}

.a24i-valuation-copy span {
	color: #d6bd8b;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.a24i-valuation-copy h3 {
	margin: 12px 0;
	color: #fff;
	font-size: clamp(25px, 3vw, 38px);
	line-height: 1.03;
	letter-spacing: 0;
}

.a24i-valuation-copy p {
	margin: 0;
	color: rgba(255, 255, 255, .78);
	font-size: 15px;
	line-height: 1.6;
}

.a24i-valuation-form {
	padding: 28px 28px 24px;
}

.a24i-valuation-alert {
	margin: 0 0 16px;
	padding: 12px 14px;
	border-radius: 6px;
	font-weight: 800;
}

.a24i-valuation-alert-success {
	background: #edf7ef;
	color: #1b6b34;
}

.a24i-valuation-alert-error {
	background: #fff1eb;
	color: #9d341f;
}

.a24i-valuation-progress {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin: 0 0 20px;
}

.a24i-valuation-progress span {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	border-radius: 999px;
	background: #f3eee6;
	color: #756b5e;
	font-weight: 900;
}

.a24i-valuation-progress span.is-active {
	background: #8a6a35;
	color: #fff;
}

.a24i-valuation-step {
	display: none;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.a24i-valuation-step.is-active {
	display: grid;
}

.a24i-valuation label {
	display: grid;
	gap: 7px;
	margin: 0;
}

.a24i-valuation label > span {
	color: #35322e;
	font-size: 13px;
	font-weight: 800;
}

.a24i-valuation input,
.a24i-valuation select,
.a24i-valuation textarea {
	width: 100%;
	min-height: 46px;
	border: 1px solid #d8d1c6;
	border-radius: 6px;
	background: #fff;
	color: #171513;
	padding: 10px 12px;
}

.a24i-valuation textarea {
	min-height: 96px;
	resize: vertical;
}

.a24i-valuation-wide,
.a24i-valuation-actions,
.a24i-valuation-privacy,
.a24i-valuation-next {
	grid-column: 1 / -1;
}

.a24i-valuation-privacy {
	grid-template-columns: 18px 1fr;
	align-items: start;
}

.a24i-valuation-privacy input {
	min-height: 0;
	margin-top: 3px;
}

.a24i-valuation-actions {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.a24i-valuation button {
	min-height: 46px;
	border: 0;
	border-radius: 6px;
	background: #171513;
	color: #fff;
	padding: 0 18px;
	font-weight: 900;
	cursor: pointer;
}

.a24i-valuation-prev {
	background: #eee7dc !important;
	color: #171513 !important;
}

.a24i-hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
}

.a24i-gallery-compact {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.a24i-native-hero .elementor-container,
.a24i-native-body .elementor-container {
	max-width: 1180px;
}

.a24i-native-hero-copy .elementor-widget-button {
	margin-bottom: 18px;
}

.a24i-native-hero-copy .elementor-button {
	background: transparent;
	color: #6f562e;
	border: 1px solid #d8cdbb;
	border-radius: 999px;
	font-weight: 800;
}

.a24i-native-media .elementor-widget-theme-post-featured-image img {
	width: 100%;
	height: clamp(340px, 46vw, 560px);
	object-fit: cover;
	border-radius: 10px;
	display: block;
}

.a24i-native-media .a24i-gallery-compact {
	margin-top: 10px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.a24i-native-media .a24i-gallery-compact a {
	aspect-ratio: 4 / 3;
}

.a24i-native-main {
	background: #fff;
	border: 1px solid #e5ded2;
	border-radius: 8px;
	padding: 26px;
	box-shadow: 0 12px 32px rgba(21,20,18,.055);
}

.a24i-native-main .elementor-widget-theme-post-content {
	font-size: 17px;
	line-height: 1.72;
	color: #34302b;
	margin-bottom: 26px;
}

.a24i-native-main .elementor-widget-heading h2 {
	font-size: 24px;
	margin: 0;
}

.a24i-native-side {
	position: sticky;
	top: 96px;
}

.a24i-native-side .a24i-contact-panel {
	position: static;
}

.a24i-native-hero-copy .a24i-overview-block {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
}

.a24i-native-hero-copy .a24i-overview-block h2 {
	display: none;
}

.a24p-hero-copy .a24i-price {
	font-size: clamp(26px, 3vw, 38px);
	margin: 0 0 18px;
}

.a24p-hero-copy .a24i-fact-bar {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.a24p-hero-copy .a24i-fact-bar div {
	min-height: 68px;
}

.a24p-main > .elementor-widget-heading {
	margin-top: 12px;
}

.a24p-main > .elementor-widget-heading:first-of-type {
	margin-top: 0;
}

.a24p-main .elementor-widget-theme-post-content {
	background: #fff;
	border: 1px solid #e5ded2;
	border-radius: 8px;
	padding: 24px;
	box-shadow: 0 12px 32px rgba(21,20,18,.055);
}

.a24p-main .a24i-overview-block {
	margin-bottom: 6px;
}

.a24ap-hero .elementor-container,
.a24ap-body .elementor-container {
	max-width: 1220px;
}

.a24ap-hero {
	border-top: 1px solid #ededed;
}

.a24ap-hero-copy > .elementor-widget-wrap {
	align-content: center;
	padding: 8px 22px 8px 0;
}

.a24i-kicker {
	margin: 0 0 14px;
}

.a24i-kicker span {
	display: inline-flex;
	padding: 8px 12px;
	border-left: 3px solid #e15933;
	background: #fff;
	color: #023C6F;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.a24ap-title h1 {
	color: #111;
	font-family: "Roboto Slab", Roboto, sans-serif;
	font-size: clamp(38px, 4.8vw, 68px);
	line-height: .98;
	letter-spacing: 0;
	margin: 0;
	font-weight: 600;
	display: block;
	visibility: visible;
}

.a24ap-address h1,
.a24ap-address h2,
.a24ap-address p,
.a24ap-address .elementor-heading-title {
	color: #303030;
	font-size: 16px;
	line-height: 1.45;
	margin: 0;
	font-weight: 500;
}

.a24ap-hero-copy .a24i-price {
	color: #023C6F;
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1;
	font-weight: 900;
	margin: 18px 0 20px;
	letter-spacing: 0;
}

.a24ap-hero-copy .a24i-fact-bar {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 0 0 18px;
}

.a24ap-hero-copy .a24i-fact-bar div {
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	box-shadow: none;
}

.a24ap-hero-copy .a24i-fact-bar strong {
	color: #111;
	font-size: 20px;
	font-weight: 800;
}

.a24ap-hero-copy .a24i-fact-bar span {
	color: #4f4f4f;
	text-transform: uppercase;
	letter-spacing: .04em;
	font-size: 11px;
	font-weight: 800;
}

.a24ap-back .elementor-button,
.a24ap-hero-copy .elementor-button {
	background: #111;
	color: #fff;
	border-radius: 0;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.a24ap-media .elementor-widget-wrap {
	padding: 0;
}

.a24ap-media .a24i-property-gallery-hero {
	min-height: 560px;
	box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.a24ap-media .a24i-property-gallery-main {
	border-radius: 0;
}

.a24ap-media .a24i-property-gallery-side a:nth-child(2),
.a24ap-media .a24i-property-gallery-side a:nth-child(4) {
	border-radius: 0;
}

.a24ap-media .a24i-gallery-count {
	border-radius: 0;
	background: #111;
	color: #fff;
	border: 0;
}

.a24ap-body .elementor-container {
	align-items: flex-start;
}

.a24ap-main > .elementor-widget-wrap {
	display: grid;
	gap: 22px;
	padding-right: 18px;
}

.a24ap-side > .elementor-widget-wrap {
	padding-left: 10px;
}

.a24ap-section-title h2 {
	font-family: "Roboto Slab", Roboto, sans-serif;
	font-size: 30px;
	line-height: 1.15;
	margin: 0;
	color: #111;
	font-weight: 600;
}

.a24ap-content {
	background: #fff;
	border: 1px solid #ededed;
	padding: 28px;
}

.a24ap-content,
.a24ap-content p {
	color: #1e1e1e;
	font-size: 17px;
	line-height: 1.72;
}

.a24ap-content p:first-child {
	margin-top: 0;
}

.a24ap-main .a24i-property-block {
	border-radius: 0;
	border-color: #ededed;
	box-shadow: none;
}

.a24ap-main .a24i-overview-block {
	background: #f8f8f8;
}

.a24i-block-heading span {
	display: block;
	color: #023C6F;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 6px;
}

.a24i-block-heading h2 {
	font-family: "Roboto Slab", Roboto, sans-serif;
}

.a24ap-side {
	position: sticky;
	top: 96px;
}

.a24ap-side .a24i-contact-panel {
	position: static;
}

.a24ap-side .a24i-contact-card {
	border-radius: 0;
	background: #111;
	box-shadow: 0 18px 45px rgba(0,0,0,.18);
	border-top: 4px solid #e15933;
}

.a24ap-side .a24i-contact-card > span {
	color: #f2b19d;
}

.a24ap-side .a24i-contact-card h2 {
	font-family: "Roboto Slab", Roboto, sans-serif;
	font-size: 28px;
}

.a24ap-side .a24i-contact-price {
	font-size: 30px;
	color: #fff;
}

.a24ap-side .a24i-contact-button {
	background: #e15933;
	color: #fff;
	border-radius: 0;
}

.a24ap-side .a24i-contact-link {
	border-radius: 0;
}

.a24ap-main .a24i-gallery-compact a {
	border-radius: 0;
}

@media (max-width: 1024px) {
	.a24ap-hero-copy > .elementor-widget-wrap {
		padding-right: 0;
	}

	.a24ap-media .a24i-property-gallery-hero {
		min-height: 420px;
	}
}

@media (max-width: 767px) {
	.a24ap-hero-copy .a24i-fact-bar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.a24ap-media .a24i-property-gallery-hero {
		min-height: 0;
		box-shadow: none;
	}

	.a24ap-title h1 {
		font-size: clamp(32px, 10vw, 46px);
	}

	.a24ap-hero-copy .a24i-price {
		font-size: clamp(30px, 9vw, 42px);
	}

	.a24ap-main > .elementor-widget-wrap,
	.a24ap-side > .elementor-widget-wrap {
		padding: 0;
	}

	.a24ap-side {
		position: static;
	}
}

.a24ea-hero .elementor-container,
.a24ea-facts-row .elementor-container,
.a24ea-body .elementor-container {
	max-width: 1220px;
}

.a24ea-hero {
	border-top: 1px solid #ededed;
}

.a24ea-hero-copy > .elementor-widget-wrap {
	align-content: center;
	padding-right: 24px;
}

.a24ea-title h1 {
	font-family: "Roboto Slab", Roboto, sans-serif;
	font-size: clamp(38px, 4.8vw, 68px);
	line-height: .98;
	color: #111;
	margin: 0;
}

.a24ea-address .elementor-heading-title {
	font-size: 16px;
	line-height: 1.45;
	color: #303030;
	font-weight: 500;
}

.a24ea-price-widget .a24i-price,
.a24ea-side-price .a24i-price {
	color: #023C6F;
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1;
	font-weight: 900;
	margin: 12px 0 18px;
}

.a24ea-back .elementor-button {
	background: #111;
	border-radius: 0;
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.a24ea-featured img {
	width: 100%;
	height: clamp(430px, 48vw, 640px);
	object-fit: cover;
	display: block;
	box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.a24ea-facts-row {
	border-bottom: 1px solid #ededed;
}

.a24ea-fact > .elementor-widget-wrap {
	background: #fff;
	border-left: 1px solid #ededed;
	padding: 18px 14px;
	min-height: 96px;
	align-content: center;
}

.a24ea-fact:last-child > .elementor-widget-wrap {
	border-right: 1px solid #ededed;
}

.a24ea-fact-value h3 {
	font-size: 22px;
	line-height: 1.1;
	font-weight: 900;
	color: #111;
	margin: 0;
}

.a24ea-fact-label .elementor-heading-title {
	font-size: 11px;
	color: #555;
	text-transform: uppercase;
	letter-spacing: .06em;
	font-weight: 900;
	margin-top: 6px;
}

.a24ea-main > .elementor-widget-wrap {
	display: grid;
	gap: 14px;
	padding-right: 20px;
}

.a24ea-section-title h2 {
	font-family: "Roboto Slab", Roboto, sans-serif;
	font-size: 30px;
	line-height: 1.15;
	color: #111;
	margin: 14px 0 0;
}

.a24ea-content {
	border: 1px solid #ededed;
	padding: 28px;
	background: #fff;
}

.a24ea-content,
.a24ea-content p {
	font-size: 17px;
	line-height: 1.72;
	color: #1e1e1e;
}

.a24ea-spec {
	border: 1px solid #ededed;
	padding: 11px 13px;
	background: #fafafa;
	margin: 0;
}

.a24ea-field-widget {
	margin: 0;
}

.a24i-field-row {
	display: grid;
	grid-template-columns: minmax(150px, 34%) 1fr;
	gap: 14px;
	align-items: baseline;
	border: 1px solid #ededed;
	background: #fafafa;
	padding: 12px 14px;
}

.a24i-field-row span {
	color: #555;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.a24i-field-row strong {
	color: #171717;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 800;
}

.a24ea-spec .elementor-icon-list-text {
	color: #222;
	font-weight: 700;
}

.a24ea-gallery .gallery,
.a24ea-gallery .elementor-gallery__container {
	gap: 10px;
}

.a24ea-gallery img,
.a24ea-gallery .e-gallery-image {
	border-radius: 0;
}

.a24ea-side {
	position: sticky;
	top: 96px;
	background: #111;
	border-top: 4px solid #e15933;
	padding: 24px;
	box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.a24ea-side h2,
.a24ea-side p,
.a24ea-side .elementor-heading-title {
	color: #fff;
}

.a24ea-side .a24i-price {
	color: #fff;
	font-size: 32px;
}

.a24ea-primary-button .elementor-button,
.a24ea-secondary-button .elementor-button {
	width: 100%;
	border-radius: 0;
	font-weight: 800;
}

.a24ea-primary-button .elementor-button {
	background: #e15933;
	color: #fff;
}

.a24ea-secondary-button .elementor-button {
	background: transparent;
	border: 1px solid rgba(255,255,255,.28);
	color: #fff;
}

@media (max-width: 1024px) {
	.a24ea-hero-copy > .elementor-widget-wrap {
		padding-right: 0;
	}
}

@media (max-width: 767px) {
	.a24ea-featured img {
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.a24ea-fact > .elementor-widget-wrap {
		border-right: 1px solid #ededed;
	}

	.a24ea-main > .elementor-widget-wrap {
		padding-right: 0;
	}

	.a24ea-side {
		position: static;
	}
}

.a24i-native-facts .elementor-container {
	max-width: 1180px;
}

.a24e-facts .elementor-widget-wrap {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
}

.a24e-facts .elementor-widget-heading:first-child {
	grid-column: 1 / -1;
	margin-bottom: 4px;
}

.a24e-pill {
	background: #fff;
	border: 1px solid #e5ded2;
	border-radius: 8px;
	padding: 12px;
	box-shadow: 0 8px 20px rgba(21,20,18,.04);
}

.a24e-pill h3 {
	font-size: 16px;
	margin: 0;
}

.a24e-main .elementor-widget-icon-list {
	background: #faf8f4;
	border: 1px solid #eee7dc;
	border-radius: 8px;
	padding: 10px 12px;
	margin-bottom: 8px;
}

.a24e-main .elementor-icon-list-text {
	color: #34302b;
	font-weight: 700;
}

.a24e-side {
	background: #171513;
	color: #fff;
	border-radius: 8px;
	padding: 24px;
	box-shadow: 0 18px 40px rgba(21,20,18,.18);
}

.a24e-side h2,
.a24e-side h3,
.a24e-side p {
	color: #fff;
}

.a24e-side-price h3 {
	color: #f4d493;
	font-size: 24px;
}

.a24e-side .elementor-button {
	width: 100%;
	border-radius: 6px;
	font-weight: 800;
}

.a24e-side .elementor-widget-button:first-of-type .elementor-button {
	background: #f4d493;
	color: #171513;
}

.a24e-side .elementor-widget-button:nth-of-type(2) .elementor-button {
	background: transparent;
	border: 1px solid rgba(255,255,255,.25);
}

@media (max-width: 900px) {
	.a24i-search-form,
	.a24i-results,
	.a24i-gallery,
	.a24i-single-content {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.a24i-search-heading {
		grid-column: 1 / -1;
		border-bottom: 1px solid #ece6dc;
		padding: 0 0 14px;
	}

	.a24i-search-form button {
		grid-column: auto;
	}

	.a24i-property-hero,
	.a24i-property-main,
	.a24i-elementor-single-inner {
		grid-template-columns: 1fr;
	}

	.a24i-property h1 {
		max-width: none;
	}

	.a24i-property-gallery-hero {
		min-height: 360px;
	}

	.a24i-contact-panel {
		position: static;
	}

	.a24e-facts .elementor-widget-wrap {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.a24i-results,
	.a24i-specs,
	.a24i-gallery,
	.a24i-single-content {
		grid-template-columns: 1fr;
	}

	.a24i-search-accordion {
		margin: 0 0 22px;
	}

	.a24i-search-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 15px 16px;
		background: #111;
		color: #fff;
		border: 1px solid #111;
		border-radius: 8px;
		list-style: none;
		cursor: pointer;
		box-shadow: 0 14px 32px rgba(17, 17, 17, .16);
	}

	.a24i-search-toggle::-webkit-details-marker {
		display: none;
	}

	.a24i-search-toggle span {
		display: grid;
		gap: 2px;
	}

	.a24i-search-toggle strong {
		font-size: 16px;
		line-height: 1.15;
	}

	.a24i-search-toggle small {
		color: rgba(255,255,255,.72);
		font-size: 12px;
		font-weight: 600;
	}

	.a24i-search-toggle b {
		width: 12px;
		height: 12px;
		border-right: 2px solid #e15933;
		border-bottom: 2px solid #e15933;
		transform: rotate(45deg) translateY(-2px);
		transition: transform .2s ease;
	}

	.a24i-search-accordion[open] .a24i-search-toggle {
		border-radius: 8px 8px 0 0;
	}

	.a24i-search-accordion[open] .a24i-search-toggle b {
		transform: rotate(225deg) translate(-2px, -2px);
	}

	.a24i-search-form {
		grid-template-columns: 1fr;
		margin: 0;
		padding: 16px;
		border-top: 0;
		border-radius: 0 0 8px 8px;
		box-shadow: 0 16px 36px rgba(21, 20, 18, .08);
	}

	.a24i-search-accordion:not([open]) .a24i-search-form {
		display: none;
	}

	.a24i-search-heading {
		display: none;
	}

	.a24i-property {
		padding: 120px 14px 48px;
	}

	.a24i-fact-bar,
	.a24i-overview-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.a24i-property-gallery-hero {
		display: block;
		min-height: 0;
	}

	.a24i-property-gallery-main {
		aspect-ratio: 4 / 3;
		border-radius: 8px;
	}

	.a24i-property-gallery-side {
		display: none;
	}

	.a24i-property-block {
		padding: 18px;
	}

	.a24i-valuation {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.a24i-valuation-copy,
	.a24i-valuation-form {
		padding: 22px;
	}

	.a24i-valuation-alert {
		margin: 0 0 16px;
	}

	.a24i-valuation-step {
		grid-template-columns: 1fr;
	}

	.a24i-valuation-actions {
		flex-direction: column-reverse;
	}

	.a24i-valuation button {
		width: 100%;
	}

	.a24e-facts .elementor-widget-wrap {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
