.propertyhive #container {
	max-width: 1440px;
}

.propertyhive #content {
	box-sizing: border-box;
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
	padding: 35px 20px;
}

.propertyhive #content .page-title {
	margin: 0 0 28px;
	color: #234f82;
	font-size: 34px;
	font-weight: 400;
	text-transform: uppercase;
}

/* Search/results columns. */
.propertyhive .property-results-layout {
	display: grid;
	grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
	align-items: start;
	gap: clamp(25px, 3vw, 40px);
	width: 100%;
}

.propertyhive .property-results-sidebar,
.propertyhive .property-results-main {
	min-width: 0;
}

.propertyhive .property-results-sidebar {
	position: sticky;
	top: 30px;
}

/* Search form. */
.propertyhive .property-search-form {
	box-sizing: border-box;
	display: flex !important;
	flex-direction: column;
	gap: 15px;
	width: 100%;
	margin: 0;
	padding: 28px 30px;
	border: 1px solid #d8d8d8;
	background: #f4f4f4;
	box-shadow: 0 4px 18px rgb(0 0 0 / 12%);
}

.propertyhive .property-search-form::before {
	display: block;
	color: #234f82;
	font-size: 30px;
	content: "SEARCH";
}

.propertyhive .property-search-form .control {
	width: 100%;
	padding: 0 !important;
}

.propertyhive .property-search-form .control label {
	display: block;
	margin-bottom: 7px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.propertyhive .property-search-form .control-department label {
	font-weight: 400;
	text-transform: none;
}

.propertyhive .property-search-form :is(select, input[type="text"], input[type="email"]) {
	box-sizing: border-box;
	width: 100%;
	min-height: 42px;
	padding: 9px 12px;
	border: 1px solid #ddd;
	background: #fff;
	font-size: 15px;
}

.propertyhive .property-search-form input[type="submit"] {
	width: 100%;
	min-height: 46px;
	padding: 10px 15px;
	border: 0;
	background: #09aeea;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
}

/* Results column and controls use normal flow. */
.propertyhive .property-results-main {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}

.propertyhive .property-results-main > * {
	box-sizing: border-box;
	width: 100%;
}

.propertyhive .propertyhive-result-count {
	margin: 0;
	color: #234f82;
	font-size: 30px;
	text-transform: uppercase;
}

.propertyhive .propertyhive-ordering {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 14px;
	border: 1px solid #ccc;
	background: #fff;
}

.propertyhive .propertyhive-ordering::before {
	font-weight: 700;
	content: "Sort By:";
}

.propertyhive .propertyhive-ordering select {
	box-sizing: border-box;
	width: 100%;
	min-height: 36px;
	padding: 7px 10px;
	border: 0;
	background: #f2f2f2;
	font-weight: 700;
}

/* Property cards. */
.propertyhive .property-results-main ul.properties {
	display: grid;
	gap: 22px;
	float: none !important;
	clear: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

.propertyhive .property-results-main ul.properties > li {
	box-sizing: border-box;
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	gap: 20px;
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 16px !important;
	border: 1px solid #ccc;
	background: #fff;
	box-shadow: 0 4px 18px rgb(0 0 0 / 10%);
}

.propertyhive .property-results-main .thumbnail,
.propertyhive .property-results-main .details {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.propertyhive .property-results-main .thumbnail img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.propertyhive .property-results-main .details {
	min-width: 0;
}

.propertyhive .property-results-main .details h3 {
	margin: 0 0 12px;
	font-size: 22px;
}

.propertyhive .property-results-main .details h3 a,
.propertyhive .property-results-main .actions a {
	color: #09aeea;
	text-decoration: none;
}

.propertyhive .property-results-main .price {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 7px 12px;
	background: #11aeea;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}

.propertyhive .property-results-main .summary {
	font-size: 15px;
	line-height: 1.55;
}

.propertyhive .property-results-main .actions {
	margin-top: 18px;
}

.propertyhive .property-results-main .actions a {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.propertyhive .propertyhive-pagination {
	margin: 5px 0 0;
}

@media (max-width: 1100px) {
	.propertyhive .property-results-layout {
		grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
	}

	.propertyhive .property-search-form {
		padding: 24px 22px;
	}

	.propertyhive .property-results-main ul.properties > li {
		grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
	}
}

@media (max-width: 991px) {
	.propertyhive #content {
		padding: 25px 15px;
	}

	.propertyhive #content .page-title {
		font-size: 30px;
	}

	.propertyhive .property-results-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
	}

	.propertyhive .property-results-sidebar {
		position: static;
	}

	.propertyhive .property-results-main ul.properties > li {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 600px) {
	.propertyhive #content {
		padding: 20px 12px;
	}

	.propertyhive #content .page-title {
		font-size: 26px;
	}

	.propertyhive .property-search-form {
		padding: 22px 20px;
	}

	.propertyhive .property-search-form::before,
	.propertyhive .propertyhive-result-count {
		font-size: 25px;
	}

	.propertyhive .property-results-main ul.properties > li {
		padding: 12px !important;
	}
}

/* Property Hive enquiry modal. */
.propertyhive [id^="makeEnquiry"].fancybox-content {
	box-sizing: border-box;
	width: min(92vw, 820px);
	max-width: 820px;
	padding: clamp(28px, 5vw, 48px);
	border-top: 5px solid #09aeea;
	background: #fff;
	box-shadow: 0 18px 55px rgb(0 0 0 / 28%);
}

.propertyhive [id^="makeEnquiry"].fancybox-content > h2 {
	margin: 0 0 10px;
	color: #234f82;
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 400;
	line-height: 1.2;
}

.propertyhive [id^="makeEnquiry"].fancybox-content > p {
	margin: 0 0 28px;
	color: #48545e;
	font-size: 16px;
	line-height: 1.6;
}

.propertyhive [id^="makeEnquiry"] .property-enquiry-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 24px;
	width: 100%;
	margin: 0;
}

.propertyhive [id^="makeEnquiry"] .property-enquiry-form > :is(.alert, .control-message) {
	grid-column: 1 / -1;
}

.propertyhive [id^="makeEnquiry"] .property-enquiry-form .control {
	float: none;
	clear: none;
	width: auto;
	margin: 0;
	padding: 0;
}

.propertyhive [id^="makeEnquiry"] .property-enquiry-form label {
	display: block;
	margin-bottom: 7px;
	color: #1d2a34;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}

.propertyhive [id^="makeEnquiry"] .property-enquiry-form .required {
	color: #d92828;
}

.propertyhive [id^="makeEnquiry"] .property-enquiry-form :is(input[type="text"], input[type="email"], input[type="tel"], textarea) {
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	min-height: 48px;
	margin: 0;
	padding: 11px 13px;
	border: 1px solid #cbd1d6;
	border-radius: 0;
	background: #fff;
	color: #1d2a34;
	font: inherit;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.propertyhive [id^="makeEnquiry"] .property-enquiry-form textarea {
	min-height: 145px;
	resize: vertical;
}

.propertyhive [id^="makeEnquiry"] .property-enquiry-form :is(input[type="text"], input[type="email"], input[type="tel"], textarea):focus {
	border-color: #09aeea;
	outline: 0;
	box-shadow: 0 0 0 3px rgb(9 174 234 / 18%);
}

.propertyhive [id^="makeEnquiry"] .property-enquiry-form .alert {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 13px 15px;
	border-left: 4px solid #c83030;
	background: #fff0f0;
	color: #842323;
	font-size: 14px;
	line-height: 1.5;
}

.propertyhive [id^="makeEnquiry"] .property-enquiry-form .alert-success {
	border-left-color: #25834b;
	background: #edf8f1;
	color: #1d653a;
}

.propertyhive [id^="makeEnquiry"] .property-enquiry-form input[type="submit"] {
	grid-column: 1 / -1;
	justify-self: start;
	min-width: 180px;
	min-height: 50px;
	margin: 4px 0 0;
	padding: 11px 24px;
	border: 0;
	background: #09aeea;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.75px;
	text-transform: uppercase;
	cursor: pointer;
}

.propertyhive [id^="makeEnquiry"] .property-enquiry-form input[type="submit"]:hover,
.propertyhive [id^="makeEnquiry"] .property-enquiry-form input[type="submit"]:focus-visible {
	background: #234f82;
}

.propertyhive [id^="makeEnquiry"] .fancybox-close-small {
	width: 48px;
	height: 48px;
	padding: 12px;
	background: #09aeea;
	color: #fff;
	opacity: 1;
}

.propertyhive [id^="makeEnquiry"] .fancybox-close-small:hover,
.propertyhive [id^="makeEnquiry"] .fancybox-close-small:focus-visible {
	background: #234f82;
}

@media (max-width: 600px) {
	.propertyhive [id^="makeEnquiry"].fancybox-content {
		width: 94vw;
		padding: 28px 20px 24px;
	}

	.propertyhive [id^="makeEnquiry"] .property-enquiry-form {
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
	}

	.propertyhive [id^="makeEnquiry"] .property-enquiry-form > *,
	.propertyhive [id^="makeEnquiry"] .property-enquiry-form > :is(.alert, .control-message),
	.propertyhive [id^="makeEnquiry"] .property-enquiry-form input[type="submit"] {
		grid-column: 1;
	}

	.propertyhive [id^="makeEnquiry"] .property-enquiry-form input[type="submit"] {
		justify-self: stretch;
		width: 100%;
	}
}

/* Single property page. */
.propertyhive.h10-property-details #content > .property {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.8fr);
	align-items: start;
	gap: clamp(24px, 4vw, 48px);
}

.propertyhive.h10-property-details #content > .property > .images,
.propertyhive.h10-property-details #content > .property > .features,
.propertyhive.h10-property-details #content > .property > .summary:not(.entry-summary),
.propertyhive.h10-property-details #content > .property > .description {
	grid-column: 1 / -1;
}

/* Preserve Property Hive's FlexSlider behaviour while improving presentation. */
.propertyhive.h10-property-details .property > .images {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	margin: 0;
}

.propertyhive.h10-property-details .images #slider,
.propertyhive.h10-property-details .images #carousel {
	margin: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.propertyhive.h10-property-details .images #slider {
	overflow: hidden;
	background: #f4f4f4;
	box-shadow: 0 6px 24px rgb(0 0 0 / 14%);
}

.propertyhive.h10-property-details .images #slider img {
	display: block;
	width: 100%;
	max-height: 720px;
	object-fit: cover;
}

.propertyhive.h10-property-details .images #carousel .slides > li {
	box-sizing: border-box;
	border: 2px solid transparent;
	cursor: pointer;
}

.propertyhive.h10-property-details .images #carousel .slides > li.flex-active-slide {
	border-color: #71bf44;
}

/* Primary information and actions. */
.propertyhive.h10-property-details .property > .entry-summary,
.propertyhive.h10-property-details .property > .property_actions {
	box-sizing: border-box;
	height: 100%;
	margin: 0;
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid #d8d8d8;
	background: #fff;
	box-shadow: 0 4px 18px rgb(0 0 0 / 10%);
}

.propertyhive.h10-property-details .entry-summary .property_title {
	margin: 0 0 14px;
	color: #234f82;
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 400;
	line-height: 1.15;
}

.propertyhive.h10-property-details .entry-summary .price {
	display: inline-flex;
	margin-bottom: 22px;
	padding: 9px 14px;
	background: #11aeea;
	color: #fff;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 700;
}

.propertyhive.h10-property-details .property_meta ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 24px;
	margin: 0;
	padding: 18px 20px;
	border-left: 3px solid #09aeea;
	background: #f7fafc;
	list-style: none;
}

.propertyhive.h10-property-details .property_meta li {
	padding-bottom: 9px;
	border-bottom: 1px solid #e4e4e4;
	color: #2f3f4b;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
}

.propertyhive.h10-property-details .property_actions {
	background: #f4f4f4;
}

.propertyhive.h10-property-details .property_actions ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.propertyhive.h10-property-details .property_actions .h10-property-office {
	margin: 0 0 8px;
	padding: 0 0 22px;
	border-bottom: 1px solid #d8d8d8;
}

.propertyhive.h10-property-details .h10-property-office__eyebrow {
	display: block;
	margin-bottom: 9px;
	color: #5c6871;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.propertyhive.h10-property-details .h10-property-office .office-name {
	margin-bottom: 12px;
	color: #234f82;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.25;
}

.propertyhive.h10-property-details .h10-property-office :is(.office-address, .office-telephone-number, .office-email-address) {
	margin-top: 8px;
	color: #35434d;
	font-size: 14px;
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.propertyhive.h10-property-details .property_actions a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 10px 18px;
	background: #09aeea;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.propertyhive.h10-property-details .property_actions a:hover,
.propertyhive.h10-property-details .property_actions a:focus-visible {
	background: #234f82;
}

/* Primary and secondary property actions. */
.propertyhive.h10-property-details .property_actions .h10-property-action--enquiry a {
	border: 2px solid var(--h10-enquiry-colour, #09aeea);
	background: var(--h10-enquiry-colour, #09aeea);
	color: #fff;
}

.propertyhive.h10-property-details .property_actions .h10-property-action--enquiry a:hover,
.propertyhive.h10-property-details .property_actions .h10-property-action--enquiry a:focus-visible {
	border-color: #193b63;
	background: #193b63;
}

.propertyhive.h10-property-details .property_actions :is(
	.h10-property-action--floorplan,
	.h10-property-action--brochure,
	.h10-property-action--epc
) a {
	border: 2px solid;
	background: #fff;
	color: #234f82;
}

.propertyhive.h10-property-details .property_actions .h10-property-action--floorplan a {
	border-color: var(--h10-floorplan-colour, #09aeea);
}

.propertyhive.h10-property-details .property_actions .h10-property-action--brochure a {
	border-color: var(--h10-brochure-colour, #09aeea);
}

.propertyhive.h10-property-details .property_actions .h10-property-action--epc a {
	border-color: var(--h10-epc-colour, #09aeea);
}

.propertyhive.h10-property-details .property_actions :is(
	.h10-property-action--floorplan,
	.h10-property-action--brochure,
	.h10-property-action--epc
) a:hover,
.propertyhive.h10-property-details .property_actions :is(
	.h10-property-action--floorplan,
	.h10-property-action--brochure,
	.h10-property-action--epc
) a:focus-visible {
	background: #f5f8fa;
	color: #193b63;
}

/* Only separate the enquiry/branch group when branch display is enabled. */
.propertyhive.h10-property-details--show-branch .property_actions .h10-property-action--floorplan {
	margin-top: 14px;
	padding-top: 18px;
	border-top: 1px solid #d8d8d8;
}

.propertyhive.h10-property-details .property_actions .h10-property-office a {
	display: inline;
	min-height: 0;
	padding: 0;
	background: transparent;
	color: #087fa9;
	font-size: inherit;
	font-weight: 700;
	letter-spacing: 0;
	text-align: left;
	text-decoration: underline;
	text-transform: none;
}

.propertyhive.h10-property-details .property_actions .h10-property-office a:hover,
.propertyhive.h10-property-details .property_actions .h10-property-office a:focus-visible {
	background: transparent;
	color: #234f82;
}

/* Content sections. */
.propertyhive.h10-property-details .property > :is(.features, .summary:not(.entry-summary), .description) {
	box-sizing: border-box;
	margin: 0;
	padding: clamp(24px, 4vw, 40px);
	border: 1px solid #d8d8d8;
	background: #fff;
}

.propertyhive.h10-property-details .property > :is(.features, .summary:not(.entry-summary), .description) > h4 {
	margin: 0 0 22px;
	padding-bottom: 12px;
	border-bottom: 3px solid #09aeea;
	color: #234f82;
	font-size: clamp(24px, 3vw, 30px);
	font-weight: 400;
}

.propertyhive.h10-property-details .features ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.propertyhive.h10-property-details .features li {
	position: relative;
	padding-left: 22px;
	font-size: 15px;
	line-height: 1.5;
}

.propertyhive.h10-property-details .features li::before {
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #71bf44;
	content: "";
}

.propertyhive.h10-property-details :is(.summary-contents, .description-contents) {
	max-width: 1050px;
	font-size: 16px;
	line-height: 1.75;
}

.propertyhive.h10-property-details .description-contents p {
	margin: 0 0 18px;
}

.propertyhive.h10-property-details .description-contents strong {
	display: block;
	margin-bottom: 4px;
	color: #234f82;
	font-size: 17px;
}

/* Imported room headings commonly contain one redundant break immediately after the heading. */
.propertyhive.h10-property-details .description-contents strong + br {
	display: none;
}

/* Search navigation sits outside the full-width gallery without covering it. */
.propertyhive.h10-property-details .h10-back-to-search {
	grid-column: 1 / -1;
	display: flex;
}

.propertyhive.h10-property-details .h10-back-to-search--top {
	margin-bottom: -6px;
}

.propertyhive.h10-property-details .h10-back-to-search--bottom {
	margin-top: 4px;
}

.propertyhive.h10-property-details .h10-back-to-search__link {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 18px;
	border: 2px solid var(--h10-enquiry-colour, #09aeea);
	background: #fff;
	color: #234f82;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-decoration: none;
	text-transform: uppercase;
}

.propertyhive.h10-property-details .h10-back-to-search__link:hover,
.propertyhive.h10-property-details .h10-back-to-search__link:focus-visible {
	background: #f3f9fc;
	color: #193b63;
}

/* Reuse the original Property Hive enquiry trigger after selected sections. */
.propertyhive.h10-property-details .h10-section-enquiry {
	display: flex;
	justify-content: flex-start;
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid #e4e4e4;
}

.propertyhive.h10-property-details .h10-section-enquiry__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 210px;
	min-height: 48px;
	padding: 10px 22px;
	border: 2px solid var(--h10-enquiry-colour, #09aeea);
	background: var(--h10-enquiry-colour, #09aeea);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.propertyhive.h10-property-details .h10-section-enquiry__button:hover,
.propertyhive.h10-property-details .h10-section-enquiry__button:focus-visible {
	border-color: #193b63;
	background: #193b63;
	color: #fff;
}

@media (max-width: 850px) {
	.propertyhive.h10-property-details #content > .property {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}

	.propertyhive.h10-property-details #content > .property > * {
		grid-column: 1;
	}
}

@media (max-width: 600px) {
	.propertyhive.h10-property-details .property_meta ul,
	.propertyhive.h10-property-details .features ul {
		grid-template-columns: minmax(0, 1fr);
	}

	.propertyhive.h10-property-details .property > :is(.features, .summary:not(.entry-summary), .description) {
		padding: 22px 18px;
	}

	.propertyhive.h10-property-details .h10-section-enquiry__button {
		width: 100%;
	}
}
