.ggg-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(330px, .75fr);
	gap: 18px;
	align-items: start;
	margin-bottom: 26px;
}

.ggg-detail-layout.is-without-gallery {
	grid-template-columns: minmax(0, 860px);
	justify-content: center;
}

.ggg-detail-top-gallery {
	grid-column: 1;
	grid-row: 1;
	min-width: 0;
}

.ggg-detail-sidebar {
	grid-column: 2;
	grid-row: 1 / 3;
	min-width: 0;
}

.ggg-detail-content {
	grid-column: 1;
	grid-row: 2;
	min-width: 0;
}

.ggg-gallery-tabs {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 10px;
}

.ggg-gallery-tabs button,
.ggg-gallery-tabs a {
	display: inline-flex;
	min-height: 36px;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 0 11px;
	border: 1px solid rgba(15, 143, 106, .18);
	border-radius: 999px;
	background: rgba(255, 255, 255, .92);
	color: var(--ggg-primary-hover);
	font-size: 12px;
	font-weight: 820;
	text-decoration: none;
	transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.ggg-gallery-tabs button {
	cursor: pointer;
}

.ggg-gallery-tabs button.is-active {
	border-color: rgba(15, 143, 106, .38);
	background: var(--ggg-primary);
	color: #ffffff;
}

.ggg-gallery-tabs b {
	display: inline-flex;
	min-width: 21px;
	height: 21px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, .22);
	font-size: 11px;
	line-height: 1;
}

.ggg-gallery-tabs a b,
.ggg-gallery-tabs button:not(.is-active) b {
	background: var(--ggg-primary-soft);
	color: var(--ggg-primary-hover);
}

.ggg-gallery-tabs button:hover,
.ggg-gallery-tabs a:hover {
	transform: translateY(-1px);
	text-decoration: none;
}

.ggg-gallery-tabs button:active,
.ggg-gallery-tabs a:active {
	transform: translateY(1px);
}

.ggg-gallery-panel {
	display: none;
}

.ggg-gallery-panel.is-active {
	display: block;
}

.ggg-detail-layout.is-without-gallery .ggg-detail-sidebar,
.ggg-detail-layout.is-without-gallery .ggg-detail-content {
	grid-column: 1;
	grid-row: auto;
}

.ggg-detail-summary {
	display: block;
	overflow: hidden;
	padding: 22px 24px 20px;
	border-radius: 20px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(250, 252, 251, .96)),
		#ffffff;
	box-shadow: 0 22px 54px -42px rgba(19, 35, 31, .62);
}

.ggg-detail-summary::before {
	width: 5px;
}

.ggg-detail-hero-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 13px;
}

.ggg-detail-summary .ggg-detail-eyebrow {
	margin: 0;
	color: #6d7d76;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .08em;
}

.ggg-detail-summary .ggg-detail-actions {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: nowrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	border: 0;
}

.ggg-detail-summary .ggg-detail-actions .ggg-icon-button {
	width: 42px;
	min-width: 42px;
	height: 42px;
	min-height: 42px;
	padding: 0;
	border-radius: 12px;
	background: #fbfcfb;
}

.ggg-detail-summary .ggg-detail-title {
	margin: 0 0 18px;
	font-size: clamp(30px, 3.2vw, 42px);
	line-height: 1.05;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.ggg-detail-trust-strip {
	margin: -6px 0 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--ggg-hairline);
}

.ggg-detail-trust-strip .ggg-trust-badge {
	min-height: 28px;
	padding: 0 10px;
	font-size: 13px;
}

.ggg-detail-media-badges {
	margin: -6px 0 14px;
}

.ggg-detail-media-badges span {
	border-color: rgba(15, 143, 106, .16);
	background: var(--ggg-primary-soft);
	color: var(--ggg-primary-hover);
	backdrop-filter: none;
}

.ggg-detail-media-panel {
	margin-bottom: 16px;
	padding: 16px;
	border: 1px solid var(--ggg-hairline);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 44px -36px rgba(31, 37, 35, .3);
}

.ggg-media-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.ggg-media-panel-head .ggg-section-title {
	margin: 0;
}

.ggg-media-panel-head span {
	color: var(--ggg-muted);
	font-size: 12px;
	font-weight: 720;
}

.ggg-media-card-grid {
	display: grid;
	gap: 12px;
}

.ggg-media-card {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.ggg-media-card h4 {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0;
	color: var(--ggg-ink);
	font-size: 15px;
	font-weight: 850;
	line-height: 1.2;
}

.ggg-media-card p {
	margin: 0;
	color: var(--ggg-muted);
	font-size: 13px;
	font-weight: 680;
	line-height: 1.45;
}

.ggg-media-embed {
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border: 1px solid var(--ggg-hairline);
	border-radius: 8px;
	background: #f7faf8;
}

.ggg-media-embed iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.ggg-media-original-link {
	display: inline-flex;
	width: max-content;
	min-height: 34px;
	align-items: center;
	gap: 6px;
	padding: 0 10px;
	border: 1px solid rgba(15, 143, 106, .18);
	border-radius: 8px;
	background: #f8fbf9;
	color: var(--ggg-primary-hover);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.ggg-media-original-link:hover {
	border-color: rgba(15, 143, 106, .32);
	background: var(--ggg-primary-soft);
	color: var(--ggg-primary-hover);
	text-decoration: none;
}

.ggg-listing-report-panel {
	position: fixed;
	left: 50%;
	top: 50%;
	z-index: 2050;
	display: block;
	width: min(520px, calc(100vw - 32px));
	max-height: calc(100dvh - 40px);
	overflow-y: auto;
	margin: 0;
	padding: 18px;
	border: 1px solid rgba(214, 91, 68, .18);
	border-radius: 18px;
	background: #fffaf8;
	box-shadow: 0 24px 80px -34px rgba(31, 37, 35, .54), 0 0 0 9999px rgba(18, 26, 23, .42);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, calc(-50% + 10px)) scale(.98);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
	visibility: hidden;
}

.ggg-listing-report-panel.is-open {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
	visibility: visible;
}

.ggg-report-modal-open {
	overflow: hidden;
}

.ggg-listing-report-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 12px;
}

.ggg-listing-report-head h3 {
	margin: 0;
	color: var(--ggg-ink);
	font-size: 16px;
	font-weight: 850;
	line-height: 1.25;
}

.ggg-listing-report-head .ggg-listing-report-cancel {
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid rgba(214, 91, 68, .16);
	border-radius: 10px;
	background: #fff;
	color: #9b4b3d;
}

.ggg-listing-report-form {
	display: grid;
	gap: 9px;
	margin: 0;
}

.ggg-listing-report-form label {
	margin: 0;
	color: var(--ggg-ink);
	font-size: 12px;
	font-weight: 820;
}

.ggg-listing-report-form .form-control {
	min-height: 42px;
	border-color: rgba(214, 91, 68, .16);
	border-radius: 11px;
	background: #fff;
	color: var(--ggg-ink);
	font-size: 13px;
	font-weight: 700;
}

.ggg-listing-report-form textarea.form-control {
	min-height: 82px;
	resize: vertical;
}

.ggg-listing-report-actions {
	position: sticky;
	bottom: -18px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	align-items: center;
	margin: 2px -18px 0;
	padding: 10px 18px 0;
	background: linear-gradient(180deg, rgba(255, 250, 248, .78), #fffaf8 34%);
}

.ggg-listing-report-submit,
.ggg-listing-report-soft {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 0 12px;
	border: 1px solid transparent;
	border-radius: 11px;
	font-size: 13px;
	font-weight: 820;
	transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.ggg-listing-report-submit {
	background: #b84f3e;
	color: #fff;
}

.ggg-listing-report-submit:hover {
	background: #9d4234;
}

.ggg-listing-report-submit:disabled {
	opacity: .68;
	cursor: wait;
}

.ggg-listing-report-soft {
	border-color: rgba(214, 91, 68, .18);
	background: #fff;
	color: #9b4b3d;
}

.ggg-listing-report-submit:active,
.ggg-listing-report-soft:active {
	transform: translateY(1px);
}

.ggg-listing-report-status {
	min-height: 18px;
	margin: 0;
	color: var(--ggg-muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.45;
}

.ggg-listing-report-status.is-success {
	color: #257c62;
}

.ggg-listing-report-status.is-error {
	color: #a34532;
}

.ggg-listing-enquiry-panel {
	margin: 10px 0 0;
	padding: 15px;
	border: 1px solid rgba(15, 143, 106, .17);
	border-radius: 16px;
	background: #f7fbf9;
}

.ggg-listing-enquiry-panel.is-muted {
	border-color: var(--ggg-hairline);
	background: #fbfcfb;
}

.ggg-listing-enquiry-panel.is-muted h3 {
	margin: 0 0 6px;
	color: var(--ggg-ink);
	font-size: 16px;
	font-weight: 850;
	line-height: 1.25;
}

.ggg-listing-enquiry-panel.is-muted p {
	margin: 0;
	color: var(--ggg-muted);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.5;
}

.ggg-listing-enquiry-head {
	margin-bottom: 12px;
}

.ggg-listing-enquiry-head h3 {
	margin: 0 0 6px;
	color: var(--ggg-ink);
	font-size: 17px;
	font-weight: 860;
	line-height: 1.22;
}

.ggg-listing-enquiry-head p {
	margin: 0;
	color: var(--ggg-muted);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.5;
}

.ggg-listing-enquiry-form {
	display: grid;
	gap: 10px;
	margin: 0;
}

.ggg-listing-enquiry-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 9px;
}

.ggg-viewing-slot-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 500px;
}

.ggg-listing-enquiry-form label {
	display: grid;
	gap: 5px;
	min-width: 0;
	margin: 0;
}

.ggg-listing-enquiry-form label span {
	color: var(--ggg-ink);
	font-size: 12px;
	font-weight: 820;
}

.ggg-listing-enquiry-form .form-control {
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	min-height: 42px;
	border-color: rgba(15, 143, 106, .18);
	border-radius: 11px;
	background: #fff;
	color: var(--ggg-ink);
	font-size: 13px;
	font-weight: 700;
}

.ggg-listing-enquiry-form .form-control:focus {
	border-color: rgba(15, 143, 106, .42);
	box-shadow: 0 0 0 3px rgba(15, 143, 106, .1);
}

.ggg-listing-enquiry-form textarea.form-control {
	min-height: 96px;
	resize: vertical;
}

.ggg-listing-enquiry-actions {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	margin-top: 2px;
}

.ggg-listing-enquiry-submit {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 0 13px;
	border: 1px solid var(--ggg-primary);
	border-radius: 11px;
	background: var(--ggg-primary);
	color: #fff;
	font-size: 13px;
	font-weight: 840;
	transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.ggg-listing-enquiry-submit:hover {
	border-color: var(--ggg-primary-hover);
	background: var(--ggg-primary-hover);
}

.ggg-listing-enquiry-submit:disabled {
	opacity: .68;
	cursor: wait;
}

.ggg-listing-enquiry-submit:active {
	transform: translateY(1px);
}

.ggg-listing-enquiry-actions span {
	color: var(--ggg-muted);
	font-size: 12px;
	font-weight: 680;
	line-height: 1.35;
}

.ggg-listing-enquiry-status {
	min-height: 18px;
	margin: 0;
	color: var(--ggg-muted);
	font-size: 12px;
	font-weight: 720;
	line-height: 1.45;
}

.ggg-listing-enquiry-status.is-success {
	color: #257c62;
}

.ggg-listing-enquiry-status.is-error {
	color: #a34532;
}

.ggg-budget-cta-panel {
	margin-top: 12px;
	padding: 14px;
	border: 1px solid rgba(218, 226, 222, .92);
	border-radius: 14px;
	background: #fbfdfc;
	box-shadow: 0 12px 34px -32px rgba(31, 37, 35, .45);
}

.ggg-budget-cta-head {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
}

.ggg-budget-cta-icon {
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--ggg-primary-soft);
	color: var(--ggg-primary-hover);
	font-size: 15px;
}

.ggg-budget-cta-head h3 {
	margin: 0 0 5px;
	color: var(--ggg-ink);
	font-size: 15px;
	font-weight: 840;
	line-height: 1.25;
}

.ggg-budget-cta-head p {
	margin: 0;
	color: var(--ggg-muted);
	font-size: 13px;
	font-weight: 640;
	line-height: 1.5;
}

.ggg-budget-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.ggg-budget-cta-link,
.ggg-budget-cta-extra {
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	padding: 0 11px;
	border: 1px solid rgba(15, 143, 106, .16);
	border-radius: 11px;
	background: #f7fbf9;
	color: var(--ggg-primary-hover);
	font-size: 12px;
	font-weight: 820;
	text-decoration: none;
	transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.ggg-budget-cta-link.is-primary {
	background: var(--ggg-primary-soft);
	color: var(--ggg-primary-hover);
}

.ggg-budget-cta-link:hover,
.ggg-budget-cta-extra:hover {
	border-color: rgba(15, 143, 106, .24);
	background: #edf7f3;
	color: var(--ggg-primary-hover);
	text-decoration: none;
}

.ggg-budget-cta-link.is-primary:hover {
	background: #d2ede3;
	color: var(--ggg-primary-hover);
}

.ggg-budget-cta-link:active,
.ggg-budget-cta-extra:active {
	transform: translateY(1px);
}

.ggg-detail-summary .ggg-detail-facts {
	display: grid;
	gap: 10px;
	color: var(--ggg-body);
	font-size: 14px;
	line-height: 1.45;
}

.ggg-detail-summary .ggg-detail-facts .mx-1,
.ggg-detail-summary .ggg-detail-facts .mx-sm-2 {
	display: none;
}

.ggg-detail-summary .ggg-detail-facts .attrs-key {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 3px 14px;
	align-items: center;
	margin: 0 !important;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--ggg-hairline);
}

.ggg-detail-summary .ggg-detail-facts .money {
	grid-row: 1 / 3;
	color: var(--ggg-price);
	font-size: 36px;
	font-weight: 880;
	line-height: 1;
}

.ggg-detail-summary .ggg-detail-facts .attrs-key b {
	align-self: end;
	color: var(--ggg-ink);
	font-size: 15px;
	font-weight: 820;
	line-height: 1.25;
}

.ggg-detail-summary .ggg-detail-facts .attrs-key .gray {
	align-self: start;
	color: var(--ggg-muted);
	font-size: 13px;
	font-weight: 700;
}

.ggg-detail-summary .ggg-detail-facts .attrs-room-type,
.ggg-detail-summary .ggg-detail-facts .attrs-numbers,
.ggg-detail-summary .ggg-detail-facts .attrs-sale,
.ggg-detail-summary .ggg-detail-facts .attrs-years {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	align-items: center;
	margin: 0 !important;
	padding: 10px 12px;
	border: 1px solid rgba(218, 226, 222, .92);
	border-radius: 13px;
	background: #f7faf8;
	color: var(--ggg-body);
	font-weight: 720;
}

.ggg-detail-summary .ggg-detail-facts .attrs-room-type a,
.ggg-detail-summary .ggg-detail-facts .attrs-years a {
	margin-left: auto;
	color: #006dff;
	font-weight: 820;
	white-space: nowrap;
}

.ggg-detail-summary .ggg-detail-facts .attrs-user {
	display: flex;
	flex-wrap: wrap;
	gap: 9px 11px;
	align-items: center;
	margin: 2px 0 0 !important;
	padding-top: 14px;
	border-top: 1px solid var(--ggg-hairline);
}

.ggg-detail-summary .ggg-detail-facts .attrs-user .avatar {
	width: 38px;
	height: 38px;
	border-radius: 999px;
	box-shadow: 0 0 0 1px var(--ggg-hairline);
}

.ggg-detail-summary .ggg-detail-facts .attrs-user .user-link {
	margin-right: auto;
	color: #1769ff;
	font-weight: 820;
}

.ggg-detail-summary .ggg-detail-facts .attrs-user .sms,
.ggg-detail-summary .ggg-detail-facts .attrs-user .ggg-inline-call {
	display: inline-flex;
	min-height: 32px;
	align-items: center;
	gap: 6px;
	padding: 0 10px;
	border-radius: 999px;
	background: var(--ggg-primary-soft);
	color: var(--ggg-primary-hover);
	font-size: 13px;
	font-weight: 820;
	text-decoration: none;
}

.ggg-detail-summary .ggg-detail-facts .attrs-user .ggg-inline-call {
	background: #eef7ff;
	color: #006dff;
}

.ggg-price-check {
	margin: 8px 0 18px;
	padding: 16px;
	border: 1px solid var(--ggg-hairline);
	border-radius: 16px;
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 18px 44px -40px rgba(31, 37, 35, .55);
}

.ggg-price-check-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: start;
	margin-bottom: 13px;
}

.ggg-price-check-head h3 {
	margin: 0 0 7px;
	color: var(--ggg-ink);
	font-size: 22px;
	font-weight: 860;
	line-height: 1.16;
}

.ggg-price-check-head p:last-child {
	margin: 0;
	color: var(--ggg-muted);
	font-size: 14px;
	font-weight: 640;
	line-height: 1.58;
}

.ggg-price-check-head > span {
	display: inline-flex;
	min-width: 78px;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--ggg-soft);
	color: var(--ggg-ink);
	font-size: 15px;
	font-weight: 860;
}

.ggg-price-check.is-good .ggg-price-check-head > span,
.ggg-price-check.is-low .ggg-price-check-head > span {
	background: rgba(47, 155, 119, .14);
	color: #257c62;
}

.ggg-price-check.is-ok .ggg-price-check-head > span,
.ggg-price-check.is-thin .ggg-price-check-head > span {
	background: rgba(235, 174, 73, .17);
	color: #986715;
}

.ggg-price-check.is-high .ggg-price-check-head > span {
	background: rgba(214, 91, 68, .15);
	color: #a34532;
}

.ggg-price-check-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 9px;
}

.ggg-price-check-stat {
	min-width: 0;
	padding: 13px;
	border: 1px solid var(--ggg-hairline);
	border-radius: 12px;
	background: var(--ggg-soft);
}

.ggg-price-check-stat span,
.ggg-price-check-stat em {
	display: block;
	color: var(--ggg-muted);
	font-size: 12px;
	font-style: normal;
	font-weight: 740;
	line-height: 1.25;
}

.ggg-price-check-stat strong {
	display: block;
	margin: 6px 0 5px;
	color: var(--ggg-ink);
	font-size: 22px;
	font-weight: 860;
	line-height: 1.05;
	overflow-wrap: anywhere;
}

.ggg-price-check-evidence {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid var(--ggg-hairline);
}

.ggg-price-check-evidence h4 {
	margin: 0 0 9px;
	color: var(--ggg-ink);
	font-size: 14px;
	font-weight: 820;
}

.ggg-price-check-row {
	display: grid;
	grid-template-columns: 78px minmax(104px, .45fr) minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	min-height: 38px;
	padding: 8px 0;
	border-bottom: 1px solid var(--ggg-hairline);
	color: var(--ggg-body);
	text-decoration: none;
}

.ggg-price-check-row:last-child {
	border-bottom: 0;
}

.ggg-price-check-row:hover {
	color: var(--ggg-primary-hover);
	text-decoration: none;
}

.ggg-price-check-row span,
.ggg-price-check-row em {
	min-width: 0;
	color: var(--ggg-muted);
	font-size: 12px;
	font-style: normal;
	font-weight: 720;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.ggg-price-check-row strong {
	min-width: 0;
	color: var(--ggg-ink);
	font-size: 14px;
	font-weight: 840;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.ggg-price-check-note {
	margin: 12px 0 0;
	color: var(--ggg-muted);
	font-size: 13px;
	font-weight: 640;
	line-height: 1.55;
}

.ggg-price-check-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 12px;
}

.ggg-price-check-link {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	gap: 7px;
	padding: 0 13px;
	border-radius: 12px;
	background: var(--ggg-primary-soft);
	color: var(--ggg-primary-hover);
	font-size: 13px;
	font-weight: 820;
	text-decoration: none;
	transition: transform .16s ease, background .16s ease;
}

.ggg-price-check-link:hover {
	background: #d2ede3;
	color: var(--ggg-primary-hover);
	text-decoration: none;
}

.ggg-price-check-link:active {
	transform: translateY(1px);
}

.ggg-price-check-empty h3 {
	margin: 0 0 6px;
	color: var(--ggg-ink);
	font-size: 18px;
	font-weight: 840;
}

.ggg-price-check-empty p {
	margin: 0;
	color: var(--ggg-muted);
	font-size: 14px;
	line-height: 1.6;
}

@media ( min-width : 768px) {
	.ggg-detail-top-gallery,
	.ggg-detail-top-panel {
		align-self: start;
	}
	.ggg-detail-top-gallery .ggg-gallery-wrap {
		height: auto;
		min-height: 0;
	}
	.ggg-detail-top-gallery .ggg-gallery-strip {
		min-height: 0;
	}
	.ggg-detail-sidebar {
		position: sticky;
		top: 86px;
	}
	.ggg-detail-layout.is-without-gallery .ggg-detail-sidebar {
		position: static;
	}
	.ggg-gallery-strip-1 {
		display: block;
	}
	.ggg-gallery-strip-1 a {
		aspect-ratio: 16 / 9;
		height: auto;
	}
	.ggg-gallery-strip-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: minmax(340px, 432px);
	}
	.ggg-gallery-strip-2 a:first-child {
		grid-row: auto;
	}
	.ggg-gallery-strip-3 {
		grid-template-columns: minmax(0, 1.35fr) minmax(0, .82fr);
		grid-template-rows: repeat(2, minmax(170px, 215px));
	}
	.ggg-gallery-strip-4 a:nth-child(4) {
		grid-column: 2 / 4;
		grid-row: 2;
	}
}

@media ( max-width : 767px) {
	.ggg-detail-layout,
	.ggg-detail-layout.is-without-gallery {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-bottom: 16px;
	}
	.ggg-detail-top-gallery,
	.ggg-detail-sidebar,
	.ggg-detail-content,
	.ggg-detail-layout.is-without-gallery .ggg-detail-sidebar,
	.ggg-detail-layout.is-without-gallery .ggg-detail-content {
		grid-column: 1;
		grid-row: auto;
	}
	.ggg-detail-summary {
		padding: 18px 17px 16px;
		border-radius: 16px;
	}
	.ggg-gallery-tabs {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ggg-gallery-tabs button,
	.ggg-gallery-tabs a {
		width: 100%;
		padding: 0 8px;
	}
	.ggg-detail-hero-top {
		gap: 10px;
		margin-bottom: 10px;
	}
	.ggg-detail-summary .ggg-detail-actions .ggg-icon-button {
		width: 39px;
		min-width: 39px;
		height: 39px;
		min-height: 39px;
	}
	.ggg-detail-summary .ggg-detail-title {
		margin-bottom: 14px;
		font-size: 28px;
		line-height: 1.08;
	}
	.ggg-detail-trust-strip {
		margin: -4px 0 13px;
		padding-bottom: 12px;
	}
	.ggg-detail-trust-strip .ggg-trust-badge {
		min-height: 25px;
		padding: 0 8px;
		font-size: 12px;
	}
	.ggg-listing-report-panel {
		padding: 13px;
		border-radius: 14px;
	}
	.ggg-listing-report-actions {
		grid-template-columns: 1fr;
		bottom: -13px;
		margin-right: -13px;
		margin-left: -13px;
		padding-right: 13px;
		padding-left: 13px;
	}
	.ggg-listing-report-submit,
	.ggg-listing-report-soft {
		width: 100%;
	}
	.ggg-listing-enquiry-panel {
		padding: 13px;
		border-radius: 14px;
	}
	.ggg-listing-enquiry-grid,
	.ggg-listing-enquiry-actions {
		grid-template-columns: 1fr;
	}
	.ggg-viewing-slot-grid {
		max-width: none;
	}
	.ggg-listing-enquiry-submit {
		width: 100%;
	}
	.ggg-budget-cta-panel {
		padding: 13px;
		border-radius: 14px;
	}
	.ggg-budget-cta-actions {
		display: grid;
		grid-template-columns: 1fr;
	}
	.ggg-budget-cta-link,
	.ggg-budget-cta-extra {
		width: 100%;
	}
	.ggg-detail-summary .ggg-detail-facts .attrs-key {
		gap: 3px 11px;
		padding-bottom: 12px;
	}
	.ggg-detail-summary .ggg-detail-facts .money {
		font-size: 29px;
	}
	.ggg-detail-summary .ggg-detail-facts .attrs-user .user-link {
		flex: 1 1 150px;
		margin-right: 0;
	}
	.ggg-price-check {
		padding: 13px;
		border-radius: 14px;
	}
	.ggg-price-check-head,
	.ggg-price-check-grid {
		grid-template-columns: 1fr;
	}
	.ggg-price-check-head > span {
		width: 100%;
	}
	.ggg-price-check-stat {
		padding: 12px;
	}
	.ggg-price-check-stat strong {
		font-size: 19px;
	}
	.ggg-price-check-row {
		grid-template-columns: 64px minmax(90px, .5fr) minmax(0, 1fr);
		gap: 7px;
	}
	.ggg-price-check-actions {
		display: grid;
		grid-template-columns: 1fr;
	}
	.ggg-price-check-link {
		justify-content: center;
		width: 100%;
	}
}
