.rmxre {
	--rmxre-ink: #111827;
	--rmxre-text: #334155;
	--rmxre-muted: #64748b;
	--rmxre-line: #e2e8f0;
	--rmxre-soft: #f8fafc;
	--rmxre-white: #ffffff;
	--rmxre-red: #d71920;
	--rmxre-red-dark: #a91218;
	--rmxre-blue: #0054a6;
	--rmxre-green: #2f765c;
	--rmxre-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
	--rmxre-radius: 8px;
	color: var(--rmxre-text);
	font-family: Inter, Roboto, Arial, sans-serif;
	letter-spacing: 0;
}

.rmxre *,
.rmxre *::before,
.rmxre *::after {
	box-sizing: border-box;
}

.rmxre a {

	text-decoration: none;
}

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

html.rmxre-lightbox-open {
	overflow: hidden;
}

.rmxre svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.rmxre-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: var(--rmxre-radius);
	font-weight: 800;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.rmxre-button:hover {
	transform: translateY(-1px);
}

.rmxre-button-primary {
	color: #fff;
	background: var(--rmxre-red);
}

.rmxre-button-primary:hover {
	color: #fff;
	background: var(--rmxre-red-dark);
}

.rmxre-button-secondary {
	color: #fff;
	background: var(--rmxre-blue);
}

.rmxre-button-secondary:hover {
	color: #fff;
	background: #003f7c;
}

.rmxre-whatsapp-button,
.rmxre-card-actions a.rmxre-whatsapp-button {
	color: #fff;
	background: var(--rmxre-green);
	border-color: var(--rmxre-green);
}

.rmxre-whatsapp-button:hover,
.rmxre-card-actions a.rmxre-whatsapp-button:hover {
	color: #fff;
	background: #255f49;
	border-color: #255f49;
}

.rmxre-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	color: var(--rmxre-blue);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.rmxre-notice {
	max-width: 1180px;
	margin: 18px auto;
	padding: 14px 16px;
	border: 1px solid #badbcc;
	border-radius: var(--rmxre-radius);
	color: #0f5132;
	background: #d1e7dd;
}

.rmxre-search {
	display: grid;
	grid-template-columns: repeat(4, minmax(140px, 1fr)) auto;
	gap: 12px;
	max-width: 1180px;
	margin: 24px auto;
	padding: 16px;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: var(--rmxre-white);
	box-shadow: var(--rmxre-shadow);
}

.rmxre-search label,
.rmxre-contact-form label,
.rmxre-auth-form label,
.rmxre-dashboard-filters label,
.rmxre-dashboard-property-form label {
	display: grid;
	gap: 7px;
	margin: 0;
	color: var(--rmxre-ink);
	font-size: 0.86rem;
	font-weight: 800;
}

.rmxre-search input,
.rmxre-search select,
.rmxre-contact-form input,
.rmxre-contact-form textarea,
.rmxre-auth-form input,
.rmxre-dashboard-filters input,
.rmxre-dashboard-filters select,
.rmxre-dashboard-property-form input,
.rmxre-dashboard-property-form select,
.rmxre-dashboard-property-form textarea {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	color: var(--rmxre-ink);
	background: #fff;
	font: inherit;
	transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.rmxre-search input:focus,
.rmxre-search select:focus,
.rmxre-contact-form input:focus,
.rmxre-contact-form textarea:focus,
.rmxre-auth-form input:focus,
.rmxre-dashboard-filters input:focus,
.rmxre-dashboard-filters select:focus,
.rmxre-dashboard-property-form input:focus,
.rmxre-dashboard-property-form select:focus,
.rmxre-dashboard-property-form textarea:focus {
	border-color: rgba(0, 84, 166, 0.7);
	box-shadow: 0 0 0 4px rgba(0, 84, 166, 0.12);
	outline: 0;
}

.rmxre-search textarea,
.rmxre-contact-form textarea,
.rmxre-dashboard-property-form textarea {
	min-height: 120px;
	resize: vertical;
}

.rmxre-results-shell,
.rmxre-archive-page,
.rmxre-property-detail,
.rmxre-agent-page {
	max-width: 1180px;
	margin: 0 auto;
	padding: 34px 20px;
}

.rmxre-property-detail {
	max-width: 1240px;
}

.rmxre-results-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 16px;
	color: var(--rmxre-muted);
	font-weight: 700;
}

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

.rmxre-columns-1 {
	grid-template-columns: 1fr;
}

.rmxre-columns-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rmxre-columns-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rmxre-property-card {
	overflow: hidden;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: #fff;
	box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
}

.rmxre-property-media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--rmxre-soft);
}

.rmxre-property-card .rmxre-property-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.rmxre-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.rmxre-badge {
	padding: 6px 8px;
	border-radius: 6px;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1;
}

.rmxre-badge-red {
	background: var(--rmxre-red);
}

.rmxre-badge-blue {
	background: var(--rmxre-blue);
}

.rmxre-badge-dark {
	background: #0f172a;
}

.rmxre-badge-light {
	color: var(--rmxre-ink);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}

.rmxre-property-body {
	display: grid;
	gap: 12px;
	padding: 16px;
}

.rmxre-property-topline {
	display: flex;
	gap: 12px;
	align-items: start;
	justify-content: space-between;
	color: var(--rmxre-muted);
	font-size: 0.84rem;
}

.rmxre-property-topline strong {
	color: var(--rmxre-red);
	font-size: 1.02rem;
	white-space: nowrap;
}

.rmxre-property-card h3 {
	margin: 0;
	color: var(--rmxre-ink);
	font-size: 1.08rem;
	line-height: 1.28;
}

.rmxre-property-card p {
	margin: 0;
	color: var(--rmxre-muted);
	line-height: 1.55;
}

.rmxre-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	color: var(--rmxre-text);
}

.rmxre-specs span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 8px;
	border: 1px solid var(--rmxre-line);
	border-radius: 6px;
	background: var(--rmxre-soft);
	font-size: 0.82rem;
	font-weight: 800;
}

.rmxre-card-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	padding-top: 4px;
}

.rmxre-card-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	color: var(--rmxre-ink);
	font-weight: 800;
}

.rmxre-card-actions a:last-child {
	color: #fff;
	background: var(--rmxre-green);
	border-color: var(--rmxre-green);
}

.rmxre-button-ghost {
	color: var(--rmxre-ink);
	background: #fff;
	border-color: var(--rmxre-line);
}

.rmxre-button-ghost:hover {
	color: var(--rmxre-blue);
	background: #f8fbff;
	border-color: rgba(0, 84, 166, 0.24);
}

.rmxre-detail-summary {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 24px;
	align-items: start;
	margin: 0 0 24px;
	padding: 28px;
	border: 1px solid rgba(226, 232, 240, 0.86);
	border-radius: var(--rmxre-radius);
	background: #fff;
	box-shadow: 0 16px 46px rgba(15, 23, 42, 0.07);
}

.rmxre-detail-summary-main {
	display: grid;
	gap: 16px;
	max-width: 820px;
}

.rmxre-detail-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.rmxre-detail-location {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--rmxre-blue);
	font-size: 0.86rem;
	font-weight: 900;
	text-transform: uppercase;
}

.rmxre-detail-location svg {
	color: var(--rmxre-red);
}

.rmxre-detail-summary h1 {
	max-width: 900px;
	margin: 0;
	color: var(--rmxre-ink);
	font-size: 3rem;
	line-height: 1.04;
	text-wrap: balance;
}

.rmxre-detail-summary .rmxre-specs {
	margin: 2px 0 0;
}

.rmxre-detail-summary .rmxre-specs span {
	border-color: var(--rmxre-line);
	color: var(--rmxre-ink);
	background: var(--rmxre-soft);
}

.rmxre-detail-summary-card {
	display: grid;
	gap: 12px;
	padding: 20px;
	border: 1px solid rgba(0, 84, 166, 0.14);
	border-radius: var(--rmxre-radius);
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.rmxre-detail-summary-card span {
	color: var(--rmxre-muted);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.rmxre-detail-summary-card strong {
	color: var(--rmxre-red);
	font-size: 1.85rem;
	line-height: 1;
}

.rmxre-archive-head h1 {
	margin: 0;
	color: var(--rmxre-ink);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.05;
}

.rmxre-gallery {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 210px;
	gap: 12px;
	margin-bottom: 28px;
	padding: 12px;
	border: 1px solid rgba(226, 232, 240, 0.78);
	border-radius: var(--rmxre-radius);
	background: #fff;
	box-shadow: 0 14px 38px rgba(5, 5, 5, 0.08);
}

.rmxre-gallery-stage,
.rmxre-gallery-main,
.rmxre-gallery-thumbs button {
	position: relative;
	overflow: hidden;
	border-radius: var(--rmxre-radius);
	background: var(--rmxre-soft);
}

.rmxre-gallery-stage {
	min-height: 440px;
}

.rmxre-gallery-main {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 440px;
	padding: 0;
	border: 0;
	cursor: zoom-in;
}

.rmxre-gallery-main img,
.rmxre-gallery-thumbs img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.rmxre-gallery-count,
.rmxre-gallery-open {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	color: #fff;
	background: rgba(15, 23, 42, 0.76);
	font-size: 0.82rem;
	font-weight: 900;
	backdrop-filter: blur(10px);
}

.rmxre-gallery-count {
	left: 14px;
	bottom: 14px;
}

.rmxre-gallery-open {
	right: 14px;
	bottom: 14px;
	border: 0;
	cursor: pointer;
}

.rmxre-gallery-arrow,
.rmxre-lightbox-arrow,
.rmxre-lightbox-close {
	position: absolute;
	z-index: 3;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 999px;
	color: #fff;
	background: rgba(15, 23, 42, 0.68);
	cursor: pointer;
	backdrop-filter: blur(10px);
}

.rmxre-gallery-arrow {
	top: 50%;
	width: 42px;
	height: 42px;
	font-size: 2rem;
	transform: translateY(-50%);
}

.rmxre-gallery-prev {
	left: 14px;
}

.rmxre-gallery-next {
	right: 14px;
}

.rmxre-gallery-thumbs {
	display: grid;
	grid-template-rows: repeat(5, minmax(0, 1fr));
	gap: 10px;
	min-height: 440px;
}

.rmxre-gallery-thumbs button {
	min-height: 0;
	padding: 0;
	border: 2px solid transparent;
	cursor: pointer;
}

.rmxre-gallery-thumbs button.is-active {
	border-color: var(--rmxre-red);
}

.rmxre-gallery-more {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 12px;
	color: #fff;
	background: rgba(15, 23, 42, 0.62);
	font-weight: 900;
	text-align: center;
}

.rmxre-lightbox[hidden] {
	display: none;
}

.rmxre-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) 72px;
	align-items: center;
	gap: 16px;
	padding: 30px;
	background: rgba(2, 6, 23, 0.92);
}

.rmxre-lightbox figure {
	display: grid;
	gap: 12px;
	justify-items: center;
	margin: 0;
}

.rmxre-lightbox img {
	max-width: 100%;
	max-height: calc(100vh - 120px);
	object-fit: contain;
	border-radius: var(--rmxre-radius);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.rmxre-lightbox figcaption {
	color: #fff;
	font-weight: 900;
}

.rmxre-lightbox-arrow {
	position: static;
	width: 54px;
	height: 54px;
	font-size: 2.4rem;
}

.rmxre-lightbox-close {
	top: 18px;
	right: 18px;
	width: 44px;
	height: 44px;
	font-size: 2rem;
}

.rmxre-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 28px;
	align-items: start;
}

.rmxre-detail-main,
.rmxre-detail-sidebar {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 18px;
}

.rmxre-detail-sidebar .rmxre-agent-card,
.rmxre-detail-sidebar .rmxre-contact-form {
	box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.rmxre-detail-sidebar .rmxre-contact-form {
	border-top: 5px solid var(--rmxre-red);
}

.rmxre-detail-sidebar .rmxre-contact-form h2 {
	font-size: 1.35rem;
}

.rmxre-section {
	padding: 22px;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: #fff;
	box-shadow: 0 10px 32px rgba(15, 23, 42, 0.04);
}

.rmxre-section-intro {
	padding: 28px;
}

.rmxre-section-intro h2 {
	font-size: 1.8rem;
}

.rmxre-section h2,
.rmxre-contact-form h2,
.rmxre-auth-form h2,
.rmxre-dashboard h2 {
	margin: 0 0 16px;
	color: var(--rmxre-ink);
	font-size: 1.22rem;
	line-height: 1.2;
}

.rmxre-content {
	line-height: 1.75;
}

.rmxre-detail-table {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: var(--rmxre-line);
}

.rmxre-detail-table div {
	display: grid;
	gap: 4px;
	padding: 12px;
	background: #fff;
}

.rmxre-detail-table dt {
	color: var(--rmxre-muted);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.rmxre-detail-table dd {
	margin: 0;
	color: var(--rmxre-ink);
	font-weight: 800;
}

.rmxre-feature-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rmxre-feature-list li {
	padding: 10px 12px;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: var(--rmxre-soft);
	font-weight: 700;
}

.rmxre-floor-plans {
	display: grid;
	gap: 14px;
}

.rmxre-floor-plan {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 14px;
	align-items: start;
	padding: 12px;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
}

.rmxre-floor-plan img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 6px;
}

.rmxre-floor-plan h3,
.rmxre-floor-plan p {
	margin: 0 0 8px;
}

.rmxre-floor-plan ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--rmxre-muted);
	font-weight: 800;
}

.rmxre-embed,
.rmxre-map {
	overflow: hidden;
	border-radius: var(--rmxre-radius);
	background: var(--rmxre-soft);
	aspect-ratio: 16 / 9;
}

.rmxre-embed iframe,
.rmxre-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.rmxre-contact-form,
.rmxre-auth-form {
	display: grid;
	gap: 14px;
	padding: 18px;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: #fff;
	box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05);
}

.rmxre-agent-hero {
	display: grid;
	grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
	gap: 24px;
	align-items: stretch;
	margin-bottom: 28px;
}

.rmxre-agent-hero .rmxre-content {
	padding: 24px;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: #fff;
	box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.rmxre-auth-form {
	position: relative;
	width: min(100%, 460px);
	margin: 28px auto;
	padding: 28px;
	overflow: hidden;
	border-color: rgba(0, 84, 166, 0.16);
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.rmxre-auth-form::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	background: linear-gradient(90deg, var(--rmxre-red), var(--rmxre-blue));
}

.rmxre-auth-register::before {
	background: linear-gradient(90deg, var(--rmxre-blue), var(--rmxre-green));
}

.rmxre-auth-top {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
}

.rmxre-auth-mark {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 16px;
	color: #fff;
	background: var(--rmxre-red);
	font-size: 1rem;
	font-weight: 900;
	box-shadow: 0 14px 34px rgba(215, 25, 32, 0.25);
}

.rmxre-auth-mark-blue {
	background: var(--rmxre-blue);
	box-shadow: 0 14px 34px rgba(0, 84, 166, 0.25);
}

.rmxre-auth-form .rmxre-kicker {
	margin-bottom: 4px;
}

.rmxre-auth-form h2 {
	margin: 0;
	font-size: 1.55rem;
}

.rmxre-auth-copy {
	margin: 0;
	color: var(--rmxre-muted);
	line-height: 1.6;
}

.rmxre-auth-fields {
	display: grid;
	gap: 13px;
}

.rmxre-auth-form label span {
	color: var(--rmxre-ink);
}

.rmxre-auth-form input {
	min-height: 50px;
	padding-inline: 14px;
	background: #fbfdff;
}

.rmxre-auth-form input::placeholder {
	color: #94a3b8;
}

.rmxre-auth-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	color: var(--rmxre-muted);
	font-size: 0.88rem;
}

.rmxre-auth-row a {
	color: var(--rmxre-blue);
	font-weight: 800;
}

.rmxre-auth-submit {
	width: 100%;
	min-height: 50px;
}

.rmxre-agent-card {
	display: grid;
	gap: 15px;
	align-content: start;
	padding: 22px;
	border: 1px solid rgba(226, 232, 240, 0.92);
	border-radius: var(--rmxre-radius);
	background: #fff;
	box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
	transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.rmxre-agent-card:hover {
	transform: translateY(-2px);
	border-color: rgba(0, 84, 166, 0.22);
	box-shadow: 0 20px 48px rgba(15, 23, 42, 0.11);
}

.rmxre-agent-card-grid {
	text-align: center;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.rmxre-agent-card-profile,
.rmxre-agent-card-sidebar {
	grid-template-columns: 108px minmax(0, 1fr);
	align-items: center;
}

.rmxre-agent-card-profile {
	min-height: 190px;
}

.rmxre-agent-media {
	position: relative;
	display: grid;
	place-items: center;
	overflow: visible;
	width: 112px;
	height: 112px;
	margin: 0 auto 8px;
	border: 4px solid #fff;
	border-radius: 999px;
	background: var(--rmxre-soft);
	box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}

.rmxre-agent-card-profile .rmxre-agent-media,
.rmxre-agent-card-sidebar .rmxre-agent-media {
	width: 96px;
	height: 96px;
	margin: 0;
}

.rmxre-agent-media img {
	width: 100%;
	height: 100%;
	border-radius: inherit;
	object-fit: cover;
}

.rmxre-agent-listing-count {
	position: absolute;
	left: 50%;
	bottom: -8px;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	min-width: max-content;
	padding: 0 9px;
	border-radius: 999px;
	color: #fff;
	background: rgba(0, 84, 166, 0.94);
	font-size: 0.72rem;
	font-weight: 900;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.18);
}

.rmxre-agent-card-profile .rmxre-agent-listing-count,
.rmxre-agent-card-sidebar .rmxre-agent-listing-count {
	display: none;
}

.rmxre-agent-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	color: var(--rmxre-blue);
	background: linear-gradient(135deg, #eef6ff 0%, #ffffff 100%);
	font-size: 2.4rem;
	font-weight: 900;
}

.rmxre-agent-card h2 {
	margin: 0;
	color: var(--rmxre-ink);
	font-size: 1.18rem;
	line-height: 1.2;
}

.rmxre-agent-card h2 a {
	color: inherit;
	text-decoration: none;
}

.rmxre-agent-card .rmxre-kicker,
.rmxre-agent-card p {
	margin: 0;
}

.rmxre-agent-card p:not(.rmxre-kicker) {
	color: var(--rmxre-muted);
	font-size: 0.92rem;
	line-height: 1.45;
}

.rmxre-agent-info {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.rmxre-agent-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.rmxre-agent-card-profile .rmxre-agent-meta,
.rmxre-agent-card-sidebar .rmxre-agent-meta {
	justify-content: start;
}

.rmxre-agent-meta span,
.rmxre-agent-meta a {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border: 1px solid rgba(0, 84, 166, 0.13);
	border-radius: 999px;
	color: var(--rmxre-blue);
	background: #f8fbff;
	font-size: 0.78rem;
	font-weight: 900;
	text-decoration: none;
}

.rmxre-agent-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 9px;
	margin-top: 2px;
}

.rmxre-agent-card-profile .rmxre-agent-actions,
.rmxre-agent-card-sidebar .rmxre-agent-actions {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rmxre-agent-actions .rmxre-button {
	width: 100%;
	min-height: 42px;
	padding-inline: 10px;
	font-size: 0.82rem;
	line-height: 1.2;
	text-align: center;
	white-space: normal;
}

.rmxre-agent-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.rmxre-agent-listings-panel {
	padding: 26px;
}

.rmxre-agent-listings-head {
	margin-bottom: 18px;
}

.rmxre-agent-listings-head h2 {
	margin-bottom: 0;
}

.rmxre-agent-listings-panel .rmxre-results-shell {
	max-width: none;
	margin: 0;
	padding: 0;
}

.rmxre-agent-listings-panel .rmxre-results-head {
	margin-bottom: 18px;
}

.rmxre-auth-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
	max-width: 980px;
	margin: 34px auto;
	padding: 20px;
	border: 1px solid rgba(226, 232, 240, 0.86);
	border-radius: 12px;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 46%, #eef6ff 100%);
}

.rmxre-check {
	display: flex !important;
	align-items: center;
	gap: 8px;
	font-weight: 700 !important;
}

.rmxre-check input {
	width: auto;
	min-height: 0;
}

.rmxre-auth-grid .rmxre-auth-form {
	width: 100%;
	height: 100%;
	margin: 0;
}

.rmxre-dashboard {
	max-width: 1240px;
	margin: 0 auto;
	padding: 34px 20px;
}

.rmxre-archive-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-bottom: 22px;
}

.rmxre-dashboard-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	margin-bottom: 18px;
	padding: 22px;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: var(--rmxre-radius);
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 48%, #eef6ff 100%);
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.rmxre-dashboard-profile {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
}

.rmxre-dashboard-avatar {
	width: 72px;
	height: 72px;
	border: 3px solid #fff;
	border-radius: 999px;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

.rmxre-dashboard-hero h1 {
	margin: 0;
	color: var(--rmxre-ink);
	font-size: 2.1rem;
	line-height: 1.05;
}

.rmxre-dashboard-hero p {
	margin: 8px 0 0;
	color: var(--rmxre-muted);
	line-height: 1.55;
}

.rmxre-dashboard-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.rmxre-dashboard-overview {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 16px;
}

.rmxre-stat-card {
	position: relative;
	display: grid;
	grid-template-columns: 12px minmax(0, 1fr);
	gap: 12px;
	min-height: 116px;
	padding: 16px;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: #fff;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.rmxre-stat-card > span {
	width: 12px;
	border-radius: 999px;
	background: var(--rmxre-blue);
}

.rmxre-stat-publish > span {
	background: var(--rmxre-green);
}

.rmxre-stat-pending > span {
	background: #c8871f;
}

.rmxre-stat-attention > span {
	background: var(--rmxre-red);
}

.rmxre-stat-leads > span {
	background: #7c3aed;
}

.rmxre-stat-card strong {
	display: block;
	color: var(--rmxre-ink);
	font-size: 2rem;
	line-height: 1;
}

.rmxre-stat-card p {
	margin: 8px 0 4px;
	color: var(--rmxre-ink);
	font-weight: 900;
}

.rmxre-stat-card small {
	color: var(--rmxre-muted);
	font-weight: 700;
}

.rmxre-dashboard-alert {
	margin-bottom: 18px;
	padding: 13px 15px;
	border: 1px solid rgba(215, 25, 32, 0.18);
	border-left: 4px solid var(--rmxre-red);
	border-radius: var(--rmxre-radius);
	color: #7f1d1d;
	background: #fff7f7;
	font-weight: 700;
}

.rmxre-dashboard-layout {
	display: grid;
	grid-template-columns: minmax(330px, 390px) minmax(0, 1fr);
	gap: 22px;
	align-items: start;
}

.rmxre-dashboard-list,
.rmxre-dashboard-form {
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: #fff;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.rmxre-dashboard-list {
	position: sticky;
	top: 18px;
	display: grid;
	gap: 16px;
	padding: 18px;
}

.rmxre-dashboard-list h2 {
	margin-bottom: 0;
}

.rmxre-dashboard-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.rmxre-dashboard-section-head h2,
.rmxre-dashboard-section-head p {
	margin: 0;
}

.rmxre-dashboard-section-head p {
	color: var(--rmxre-muted);
	font-size: 0.86rem;
	line-height: 1.45;
}

.rmxre-dashboard-filters {
	display: grid;
	gap: 10px;
	padding: 12px;
	border-radius: var(--rmxre-radius);
	background: var(--rmxre-soft);
}

.rmxre-dashboard-filters label span {
	color: var(--rmxre-ink);
}

.rmxre-dashboard-items {
	display: grid;
	gap: 10px;
	max-height: 720px;
	overflow: auto;
	padding-right: 4px;
}

.rmxre-dashboard-item {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 12px;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: #fff;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.rmxre-dashboard-item:hover {
	border-color: rgba(0, 84, 166, 0.24);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
}

.rmxre-dashboard-item-media {
	display: block;
	overflow: hidden;
	width: 88px;
	aspect-ratio: 4 / 3;
	border-radius: 6px;
	background: var(--rmxre-soft);
}

.rmxre-dashboard-item-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rmxre-dashboard-item-body {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.rmxre-dashboard-item-body strong {
	overflow: hidden;
	color: var(--rmxre-ink);
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rmxre-dashboard-item-body span,
.rmxre-dashboard-item-body small {
	color: var(--rmxre-muted);
	font-size: 0.82rem;
}

.rmxre-dashboard-item-body span {
	color: var(--rmxre-ink);
	font-weight: 900;
}

.rmxre-dashboard-item-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.rmxre-dashboard-item-meta em {
	padding: 4px 7px;
	border-radius: 999px;
	color: var(--rmxre-muted);
	background: var(--rmxre-soft);
	font-size: 0.7rem;
	font-style: normal;
	font-weight: 900;
}

.rmxre-dashboard-item-meta .rmxre-status-pill {
	color: #fff;
	background: var(--rmxre-blue);
}

.rmxre-dashboard-item-meta .rmxre-status-publish {
	background: var(--rmxre-green);
}

.rmxre-dashboard-item-meta .rmxre-status-pending {
	background: #c8871f;
}

.rmxre-dashboard-item-meta .rmxre-status-draft {
	background: #475569;
}

.rmxre-dashboard-item-meta .rmxre-status-attention {
	color: #7f1d1d;
	background: #fff0f0;
}

.rmxre-dashboard-item-actions {
	grid-column: 1 / -1;
	display: flex;
	gap: 6px;
	justify-content: flex-end;
}

.rmxre-dashboard-item-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 10px;
	border: 1px solid var(--rmxre-line);
	border-radius: 6px;
	color: var(--rmxre-blue);
	background: #fff;
	font-weight: 900;
}

.rmxre-dashboard-empty {
	padding: 20px;
}

.rmxre-shortcode-helper {
	display: grid;
	gap: 9px;
	padding: 14px;
	border: 1px solid rgba(0, 84, 166, 0.18);
	border-radius: var(--rmxre-radius);
	background: #f8fbff;
}

.rmxre-shortcode-helper h3,
.rmxre-shortcode-helper p {
	margin: 0;
}

.rmxre-shortcode-helper h3 {
	color: var(--rmxre-ink);
	font-size: 1rem;
}

.rmxre-shortcode-helper p {
	color: var(--rmxre-muted);
	font-size: 0.84rem;
	line-height: 1.45;
}

.rmxre-shortcode-helper code {
	display: block;
	overflow-x: auto;
	padding: 9px 10px;
	border: 1px solid var(--rmxre-line);
	border-radius: 6px;
	color: #0f172a;
	background: #fff;
	font-size: 0.82rem;
	white-space: nowrap;
}

.rmxre-dashboard-leads {
	display: grid;
	gap: 12px;
	padding-top: 2px;
}

.rmxre-lead-list {
	display: grid;
	gap: 10px;
	max-height: 520px;
	overflow: auto;
	padding-right: 4px;
}

.rmxre-lead-card {
	display: grid;
	gap: 8px;
	padding: 12px;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: #fff;
}

.rmxre-lead-card-head,
.rmxre-lead-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: space-between;
}

.rmxre-lead-card strong {
	color: var(--rmxre-ink);
	font-weight: 900;
}

.rmxre-lead-card p,
.rmxre-lead-card small {
	margin: 0;
	color: var(--rmxre-muted);
	font-size: 0.84rem;
	line-height: 1.5;
}

.rmxre-lead-card .rmxre-lead-property {
	color: var(--rmxre-blue);
	font-weight: 900;
}

.rmxre-lead-status {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0 8px;
	border-radius: 999px;
	color: #fff;
	background: var(--rmxre-red);
	font-size: 0.7rem;
	font-weight: 900;
}

.rmxre-lead-status-read {
	background: var(--rmxre-green);
}

.rmxre-lead-actions {
	justify-content: flex-start;
}

.rmxre-lead-actions a {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 9px;
	border: 1px solid var(--rmxre-line);
	border-radius: 6px;
	color: var(--rmxre-blue);
	background: #fff;
	font-size: 0.78rem;
	font-weight: 900;
}

.rmxre-dashboard-property-form {
	display: grid;
	gap: 18px;
	padding: 18px;
	scroll-margin-top: 16px;
}

.rmxre-property-form-head,
.rmxre-form-section {
	padding: 18px;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: #fff;
}

.rmxre-property-form-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 210px;
	gap: 18px;
	align-items: start;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.rmxre-property-form-head h2,
.rmxre-property-form-head p {
	margin: 0;
}

.rmxre-property-form-head h2 {
	color: var(--rmxre-ink);
	font-size: 1.7rem;
}

.rmxre-property-form-head p:not(.rmxre-kicker) {
	margin-top: 8px;
	color: var(--rmxre-muted);
	line-height: 1.55;
}

.rmxre-editor-side {
	display: grid;
	gap: 12px;
}

.rmxre-status-select {
	display: grid;
	gap: 7px;
	margin: 0;
	color: var(--rmxre-ink);
	font-size: 0.86rem;
	font-weight: 800;
}

.rmxre-completion {
	display: grid;
	gap: 7px;
	padding: 12px;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: #fff;
}

.rmxre-completion span {
	color: var(--rmxre-muted);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.rmxre-completion strong {
	color: var(--rmxre-ink);
	font-size: 1.45rem;
	line-height: 1;
}

.rmxre-completion i {
	display: block;
	overflow: hidden;
	height: 8px;
	border-radius: 999px;
	background: #e2e8f0;
}

.rmxre-completion b {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--rmxre-red), var(--rmxre-blue), var(--rmxre-green));
}

.rmxre-form-tabs {
	position: sticky;
	top: 0;
	z-index: 6;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 10px;
	border: 1px solid rgba(226, 232, 240, 0.92);
	border-radius: var(--rmxre-radius);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
	backdrop-filter: blur(12px);
}

.rmxre-form-tabs a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 11px;
	border: 1px solid transparent;
	border-radius: 6px;
	color: var(--rmxre-muted);
	background: var(--rmxre-soft);
	font-size: 0.82rem;
	font-weight: 900;
}

.rmxre-form-tabs a:hover {
	color: var(--rmxre-blue);
	border-color: rgba(0, 84, 166, 0.2);
	background: #fff;
}

.rmxre-form-section {
	display: grid;
	gap: 16px;
	scroll-margin-top: 78px;
}

.rmxre-form-section-head {
	display: grid;
	gap: 4px;
}

.rmxre-form-section-head h3 {
	margin: 0;
	color: var(--rmxre-ink);
	font-size: 1.12rem;
}

.rmxre-form-section-head p {
	margin: 0;
	color: var(--rmxre-muted);
	font-size: 0.9rem;
}

.rmxre-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.rmxre-field-wide {
	grid-column: 1 / -1;
}

.rmxre-location-tools {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	padding: 12px;
	border: 1px solid rgba(0, 84, 166, 0.16);
	border-radius: var(--rmxre-radius);
	background: #f8fbff;
}

.rmxre-location-tools span {
	color: var(--rmxre-muted);
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.4;
}

.rmxre-location-tools .rmxre-button:disabled {
	opacity: 0.68;
	cursor: progress;
}

.rmxre-term-field small,
.rmxre-upload-box small {
	color: var(--rmxre-muted);
	font-size: 0.78rem;
	font-weight: 600;
}

.rmxre-map-picker {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 14px;
}

.rmxre-map-picker-canvas {
	min-height: 460px;
	overflow: hidden;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: var(--rmxre-soft);
}

.rmxre-native-map {
	position: relative;
	width: 100%;
	min-height: inherit;
	overflow: hidden;
	border-radius: inherit;
	background: #dbeafe;
	cursor: crosshair;
	touch-action: none;
	user-select: none;
}

.rmxre-native-map::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px);
	background-size: 36px 36px;
}

.rmxre-native-map-tiles {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.rmxre-native-map-tile {
	position: absolute;
	width: 256px;
	height: 256px;
	max-width: none;
	background: #e0f2fe;
}

.rmxre-native-map-tile.is-missing {
	opacity: 0.08;
}

.rmxre-native-map-marker {
	position: absolute;
	z-index: 3;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 3px solid #fff;
	border-radius: 999px 999px 999px 0;
	background: var(--rmxre-red);
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.28);
	cursor: grab;
	transform: translate(-50%, -100%) rotate(-45deg);
}

.rmxre-native-map-marker::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #fff;
	transform: translate(-50%, -50%);
}

.rmxre-native-map-marker:active {
	cursor: grabbing;
}

.rmxre-native-map-controls {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 4;
	display: grid;
	gap: 6px;
}

.rmxre-native-map-controls button {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid rgba(15, 23, 42, 0.14);
	border-radius: 8px;
	color: var(--rmxre-ink);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
	font-size: 1.3rem;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
}

.rmxre-native-map-attribution {
	position: absolute;
	right: 8px;
	bottom: 8px;
	z-index: 4;
	padding: 4px 7px;
	border-radius: 4px;
	color: var(--rmxre-blue);
	background: rgba(255, 255, 255, 0.88);
	font-size: 0.72rem;
	font-weight: 800;
}

.rmxre-map-fallback {
	display: grid;
	place-items: center;
	min-height: inherit;
	padding: 24px;
	color: var(--rmxre-muted);
	font-weight: 800;
	text-align: center;
}

.rmxre-map-picker-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-content: start;
	align-items: center;
	gap: 12px;
	padding: 16px;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: var(--rmxre-soft);
}

.rmxre-map-picker-panel strong {
	color: var(--rmxre-ink);
}

.rmxre-map-picker-panel p {
	margin: 0;
	color: var(--rmxre-muted);
	line-height: 1.5;
}

.rmxre-map-picker-panel details {
	grid-column: 1 / -1;
	display: grid;
	gap: 10px;
	color: var(--rmxre-muted);
	font-size: 0.86rem;
}

.rmxre-map-picker-panel summary {
	cursor: pointer;
	font-weight: 900;
}

.rmxre-coordinate-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 10px;
}

.rmxre-existing-media {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
	gap: 10px;
}

.rmxre-existing-media label {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border: 2px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: var(--rmxre-soft);
	cursor: pointer;
}

.rmxre-existing-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rmxre-existing-media input {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 2;
	width: auto;
	min-height: 0;
}

.rmxre-existing-media span {
	position: absolute;
	right: 6px;
	bottom: 6px;
	left: 6px;
	padding: 4px 6px;
	border-radius: 6px;
	color: #fff;
	background: rgba(15, 23, 42, 0.72);
	font-size: 0.72rem;
	font-weight: 900;
	text-align: center;
}

.rmxre-existing-media label:has(input:not(:checked)) {
	opacity: 0.42;
}

.rmxre-upload-box {
	display: grid;
	gap: 8px;
	padding: 16px;
	border: 1px dashed rgba(0, 84, 166, 0.42);
	border-radius: var(--rmxre-radius);
	background: #f8fbff;
}

.rmxre-filter-locked strong {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid rgba(0, 84, 166, 0.22);
	border-radius: var(--rmxre-radius);
	color: var(--rmxre-blue);
	background: #f8fbff;
}

.rmxre-form-actions {
	position: sticky;
	bottom: 14px;
	z-index: 5;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
	padding: 14px;
	border: 1px solid rgba(226, 232, 240, 0.86);
	border-radius: var(--rmxre-radius);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
	backdrop-filter: blur(12px);
}

.rmxre-pagination {
	margin-top: 24px;
}

.rmxre-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rmxre-pagination a,
.rmxre-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	padding: 0 10px;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: #fff;
	font-weight: 800;
}

.rmxre-pagination .current {
	color: #fff;
	background: var(--rmxre-blue);
	border-color: var(--rmxre-blue);
}

.rmxre-empty {
	padding: 28px;
	border: 1px solid var(--rmxre-line);
	border-radius: var(--rmxre-radius);
	background: #fff;
	text-align: center;
}

@media (max-width: 980px) {
	.rmxre-search,
	.rmxre-property-grid,
	.rmxre-agent-grid,
	.rmxre-detail-layout,
	.rmxre-auth-grid,
	.rmxre-map-picker {
		grid-template-columns: 1fr 1fr;
	}

	.rmxre-dashboard-hero,
	.rmxre-dashboard-layout,
	.rmxre-agent-hero {
		grid-template-columns: 1fr;
	}

	.rmxre-dashboard-overview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rmxre-dashboard-list {
		position: static;
	}

	.rmxre-detail-summary {
		grid-template-columns: 1fr;
	}

	.rmxre-detail-summary-card {
		max-width: 420px;
	}

	.rmxre-detail-sidebar {
		position: static;
	}

	.rmxre-detail-sidebar,
	.rmxre-dashboard-form,
	.rmxre-map-picker-canvas {
		grid-column: 1 / -1;
	}

	.rmxre-map-picker {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.rmxre-search,
	.rmxre-property-grid,
	.rmxre-agent-grid,
	.rmxre-detail-layout,
	.rmxre-auth-grid,
	.rmxre-dashboard-layout,
	.rmxre-dashboard-overview,
	.rmxre-dashboard-hero,
	.rmxre-dashboard-profile,
	.rmxre-form-grid,
	.rmxre-detail-table,
	.rmxre-feature-list,
	.rmxre-floor-plan,
	.rmxre-property-form-head,
	.rmxre-agent-card-profile,
	.rmxre-agent-card-sidebar,
	.rmxre-map-picker {
		grid-template-columns: 1fr;
	}

	.rmxre-agent-card-profile,
	.rmxre-agent-card-sidebar {
		text-align: center;
	}

	.rmxre-agent-card-profile .rmxre-agent-media,
	.rmxre-agent-card-sidebar .rmxre-agent-media {
		margin: 0 auto;
	}

	.rmxre-agent-card-profile .rmxre-agent-meta,
	.rmxre-agent-card-sidebar .rmxre-agent-meta {
		justify-content: center;
	}

	.rmxre-agent-card-profile .rmxre-agent-actions,
	.rmxre-agent-card-sidebar .rmxre-agent-actions {
		grid-template-columns: 1fr;
	}

	.rmxre-results-shell,
	.rmxre-archive-page,
	.rmxre-property-detail,
	.rmxre-agent-page,
	.rmxre-dashboard {
		padding-inline: 14px;
	}

	.rmxre-detail-summary {
		padding: 22px;
	}

	.rmxre-detail-summary h1 {
		font-size: 2.05rem;
	}

	.rmxre-detail-summary-card {
		max-width: none;
	}

	.rmxre-gallery {
		grid-template-columns: 1fr;
	}

	.rmxre-gallery-stage,
	.rmxre-gallery-main {
		min-height: 320px;
	}

	.rmxre-gallery-thumbs {
		grid-template-columns: repeat(5, minmax(76px, 1fr));
		grid-template-rows: none;
		min-height: 76px;
		overflow-x: auto;
	}

	.rmxre-lightbox {
		grid-template-columns: 48px minmax(0, 1fr) 48px;
		gap: 8px;
		padding: 18px;
	}

	.rmxre-lightbox-arrow {
		width: 44px;
		height: 44px;
		font-size: 2rem;
	}

	.rmxre-auth-grid {
		padding: 12px;
	}

	.rmxre-auth-form {
		padding: 24px;
	}

	.rmxre-auth-row {
		align-items: flex-start;
		flex-direction: column;
	}

	.rmxre-dashboard-hero h1 {
		font-size: 1.65rem;
	}

	.rmxre-dashboard-hero-actions {
		justify-content: stretch;
	}

	.rmxre-dashboard-hero-actions .rmxre-button {
		flex: 1 1 160px;
	}

	.rmxre-dashboard-items {
		max-height: none;
		overflow: visible;
	}

	.rmxre-dashboard-item {
		grid-template-columns: 72px minmax(0, 1fr);
	}

	.rmxre-dashboard-item-media {
		width: 72px;
	}

	.rmxre-dashboard-item-actions {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		justify-items: stretch;
	}

	.rmxre-dashboard-item-actions a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 36px;
		border: 1px solid var(--rmxre-line);
		border-radius: var(--rmxre-radius);
	}

	.rmxre-map-picker-canvas {
		min-height: 300px;
	}

	.rmxre-map-picker-panel,
	.rmxre-coordinate-grid {
		grid-template-columns: 1fr;
	}

	.rmxre-form-actions {
		position: static;
		justify-content: stretch;
	}

	.rmxre-form-actions .rmxre-button {
		width: 100%;
	}

	.rmxre-archive-head {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* Dashboard override shield for aggressive theme/page-builder styles. */
.rmxre.rmxre-dashboard,
.rmxre.rmxre-dashboard * {
	box-sizing: border-box !important;
	letter-spacing: 0 !important;
}

.rmxre.rmxre-dashboard {
	display: block !important;
	width: min(100%, 1240px) !important;
	max-width: 1240px !important;
	margin: 0 auto !important;
	padding: 34px 20px !important;
	color: var(--rmxre-text) !important;
	font-family: Inter, Roboto, Arial, sans-serif !important;
}

.rmxre.rmxre-dashboard a {
	text-decoration: none !important;
}

.rmxre.rmxre-dashboard img {
	display: block !important;
	max-width: 100% !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-hero {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	gap: 18px !important;
	align-items: center !important;
	margin: 0 0 18px !important;
	padding: 22px !important;
	border: 1px solid rgba(226, 232, 240, 0.9) !important;
	border-radius: 8px !important;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 48%, #eef6ff 100%) !important;
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08) !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-profile {
	display: grid !important;
	grid-template-columns: 72px minmax(0, 1fr) !important;
	gap: 16px !important;
	align-items: center !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-avatar {
	width: 72px !important;
	height: 72px !important;
	border: 3px solid #fff !important;
	border-radius: 999px !important;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16) !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-hero h1,
.rmxre.rmxre-dashboard .rmxre-property-form-head h2 {
	margin: 0 !important;
	color: var(--rmxre-ink) !important;
	font-weight: 900 !important;
	line-height: 1.08 !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-hero h1 {
	font-size: 2.1rem !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-hero p,
.rmxre.rmxre-dashboard .rmxre-property-form-head p,
.rmxre.rmxre-dashboard .rmxre-form-section-head p,
.rmxre.rmxre-dashboard .rmxre-dashboard-alert,
.rmxre.rmxre-dashboard .rmxre-shortcode-helper p {
	line-height: 1.55 !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-hero-actions,
.rmxre.rmxre-dashboard .rmxre-dashboard-item-actions,
.rmxre.rmxre-dashboard .rmxre-form-actions {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
	justify-content: flex-end !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-overview {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	gap: 14px !important;
	margin: 0 0 16px !important;
}

.rmxre.rmxre-dashboard .rmxre-stat-card {
	display: grid !important;
	grid-template-columns: 12px minmax(0, 1fr) !important;
	gap: 12px !important;
	min-height: 116px !important;
	padding: 16px !important;
	border: 1px solid var(--rmxre-line) !important;
	border-radius: 8px !important;
	background: #fff !important;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06) !important;
}

.rmxre.rmxre-dashboard .rmxre-stat-card > span {
	display: block !important;
	width: 12px !important;
	border-radius: 999px !important;
}

.rmxre.rmxre-dashboard .rmxre-stat-card strong {
	display: block !important;
	color: var(--rmxre-ink) !important;
	font-size: 2rem !important;
	font-weight: 900 !important;
	line-height: 1 !important;
}

.rmxre.rmxre-dashboard .rmxre-stat-card p,
.rmxre.rmxre-dashboard .rmxre-shortcode-helper h3,
.rmxre.rmxre-dashboard .rmxre-form-section-head h3,
.rmxre.rmxre-dashboard .rmxre-dashboard-list h2 {
	margin: 0 !important;
	color: var(--rmxre-ink) !important;
	font-weight: 900 !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-layout {
	display: grid !important;
	grid-template-columns: minmax(330px, 390px) minmax(0, 1fr) !important;
	gap: 22px !important;
	align-items: start !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-list,
.rmxre.rmxre-dashboard .rmxre-dashboard-form {
	border: 1px solid var(--rmxre-line) !important;
	border-radius: 8px !important;
	background: #fff !important;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05) !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-list {
	position: sticky !important;
	top: 18px !important;
	display: grid !important;
	gap: 16px !important;
	padding: 18px !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-filters,
.rmxre.rmxre-dashboard .rmxre-dashboard-items,
.rmxre.rmxre-dashboard .rmxre-dashboard-leads,
.rmxre.rmxre-dashboard .rmxre-lead-list,
.rmxre.rmxre-dashboard .rmxre-dashboard-property-form,
.rmxre.rmxre-dashboard .rmxre-form-grid,
.rmxre.rmxre-dashboard .rmxre-form-section,
.rmxre.rmxre-dashboard .rmxre-form-section-head,
.rmxre.rmxre-dashboard .rmxre-editor-side,
.rmxre.rmxre-dashboard .rmxre-completion,
.rmxre.rmxre-dashboard .rmxre-coordinate-grid,
.rmxre.rmxre-dashboard .rmxre-shortcode-helper {
	display: grid !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-filters {
	gap: 10px !important;
	padding: 12px !important;
	border-radius: 8px !important;
	background: var(--rmxre-soft) !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-items {
	gap: 10px !important;
	max-height: 720px !important;
	overflow: auto !important;
	padding-right: 4px !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-leads {
	gap: 12px !important;
}

.rmxre.rmxre-dashboard .rmxre-lead-list {
	gap: 10px !important;
	max-height: 520px !important;
	overflow: auto !important;
	padding-right: 4px !important;
}

.rmxre.rmxre-dashboard .rmxre-lead-card {
	display: grid !important;
	gap: 8px !important;
	padding: 12px !important;
	border: 1px solid var(--rmxre-line) !important;
	border-radius: 8px !important;
	background: #fff !important;
}

.rmxre.rmxre-dashboard .rmxre-lead-card-head,
.rmxre.rmxre-dashboard .rmxre-lead-actions {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
	align-items: center !important;
	justify-content: flex-start !important;
}

.rmxre.rmxre-dashboard .rmxre-lead-card-head {
	justify-content: space-between !important;
}

.rmxre.rmxre-dashboard .rmxre-lead-status {
	display: inline-flex !important;
	align-items: center !important;
	min-height: 24px !important;
	padding: 0 8px !important;
	border-radius: 999px !important;
	color: #fff !important;
	background: var(--rmxre-red) !important;
	font-size: 0.7rem !important;
	font-weight: 900 !important;
}

.rmxre.rmxre-dashboard .rmxre-lead-status-read {
	background: var(--rmxre-green) !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-item {
	display: grid !important;
	grid-template-columns: 88px minmax(0, 1fr) !important;
	gap: 12px !important;
	align-items: center !important;
	padding: 12px !important;
	border: 1px solid var(--rmxre-line) !important;
	border-radius: 8px !important;
	background: #fff !important;
	box-shadow: none !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-item-media {
	display: block !important;
	overflow: hidden !important;
	width: 88px !important;
	aspect-ratio: 4 / 3 !important;
	border-radius: 6px !important;
	background: var(--rmxre-soft) !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-item-media img,
.rmxre.rmxre-dashboard .rmxre-existing-media img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-item-body {
	display: grid !important;
	gap: 5px !important;
	min-width: 0 !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-item-body strong {
	display: block !important;
	overflow: hidden !important;
	color: var(--rmxre-ink) !important;
	font-weight: 900 !important;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-item-meta {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 6px !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-item-meta em {
	display: inline-flex !important;
	align-items: center !important;
	padding: 4px 7px !important;
	border: 0 !important;
	border-radius: 999px !important;
	font-size: 0.7rem !important;
	font-style: normal !important;
	font-weight: 900 !important;
	line-height: 1 !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-item-actions {
	grid-column: 1 / -1 !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-property-form {
	gap: 18px !important;
	padding: 18px !important;
	margin: 0 !important;
}

.rmxre.rmxre-dashboard .rmxre-property-form-head,
.rmxre.rmxre-dashboard .rmxre-form-section {
	padding: 18px !important;
	border: 1px solid var(--rmxre-line) !important;
	border-radius: 8px !important;
	background: #fff !important;
}

.rmxre.rmxre-dashboard .rmxre-property-form-head {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) 210px !important;
	gap: 18px !important;
	align-items: start !important;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
}

.rmxre.rmxre-dashboard .rmxre-form-tabs {
	position: sticky !important;
	top: 0 !important;
	z-index: 6 !important;
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
	padding: 10px !important;
	border: 1px solid rgba(226, 232, 240, 0.92) !important;
	border-radius: 8px !important;
	background: rgba(255, 255, 255, 0.94) !important;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07) !important;
	backdrop-filter: blur(12px) !important;
}

.rmxre.rmxre-dashboard .rmxre-form-tabs a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 34px !important;
	padding: 0 11px !important;
	border: 1px solid transparent !important;
	border-radius: 6px !important;
	color: var(--rmxre-muted) !important;
	background: var(--rmxre-soft) !important;
	font-size: 0.82rem !important;
	font-weight: 900 !important;
	line-height: 1 !important;
}

.rmxre.rmxre-dashboard .rmxre-form-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 12px !important;
}

.rmxre.rmxre-dashboard .rmxre-field-wide {
	grid-column: 1 / -1 !important;
}

.rmxre.rmxre-dashboard label {
	display: grid !important;
	gap: 7px !important;
	margin: 0 !important;
	color: var(--rmxre-ink) !important;
	font-size: 0.86rem !important;
	font-weight: 800 !important;
	line-height: 1.25 !important;
}

.rmxre.rmxre-dashboard input,
.rmxre.rmxre-dashboard select,
.rmxre.rmxre-dashboard textarea {
	width: 100% !important;
	min-height: 44px !important;
	padding: 10px 12px !important;
	border: 1px solid var(--rmxre-line) !important;
	border-radius: 8px !important;
	color: var(--rmxre-ink) !important;
	background: #fff !important;
	box-shadow: none !important;
	font: inherit !important;
	line-height: 1.35 !important;
}

.rmxre.rmxre-dashboard input[type="checkbox"],
.rmxre.rmxre-dashboard input[type="radio"] {
	width: auto !important;
	min-height: 0 !important;
	padding: 0 !important;
}

.rmxre.rmxre-dashboard textarea {
	min-height: 120px !important;
	resize: vertical !important;
}

.rmxre.rmxre-dashboard .rmxre-check {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
}

.rmxre.rmxre-dashboard .rmxre-button,
.rmxre.rmxre-dashboard button.rmxre-button,
.rmxre.rmxre-dashboard a.rmxre-button,
.rmxre.rmxre-dashboard .rmxre-dashboard-item-actions a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	min-height: 44px !important;
	padding: 0 18px !important;
	border-radius: 8px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	text-align: center !important;
	text-decoration: none !important;
	cursor: pointer !important;
}

.rmxre.rmxre-dashboard .rmxre-button-primary {
	border: 1px solid var(--rmxre-red) !important;
	color: #fff !important;
	background: var(--rmxre-red) !important;
}

.rmxre.rmxre-dashboard .rmxre-button-secondary {
	border: 1px solid var(--rmxre-blue) !important;
	color: #fff !important;
	background: var(--rmxre-blue) !important;
}

.rmxre.rmxre-dashboard .rmxre-whatsapp-button,
.rmxre.rmxre-dashboard a.rmxre-whatsapp-button,
.rmxre.rmxre-dashboard button.rmxre-whatsapp-button {
	border: 1px solid var(--rmxre-green) !important;
	color: #fff !important;
	background: var(--rmxre-green) !important;
}

.rmxre.rmxre-dashboard .rmxre-dashboard-item-actions a {
	min-height: 34px !important;
	padding: 0 10px !important;
	border: 1px solid var(--rmxre-line) !important;
	border-radius: 6px !important;
	color: var(--rmxre-blue) !important;
	background: #fff !important;
}

.rmxre.rmxre-dashboard .rmxre-location-tools {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	gap: 10px 14px !important;
	padding: 12px !important;
	border: 1px solid rgba(0, 84, 166, 0.16) !important;
	border-radius: 8px !important;
	background: #f8fbff !important;
}

.rmxre.rmxre-dashboard .rmxre-location-tools span {
	color: var(--rmxre-muted) !important;
	font-size: 0.86rem !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
}

.rmxre.rmxre-dashboard .rmxre-map-picker {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 14px !important;
	margin-top: 14px !important;
}

.rmxre.rmxre-dashboard .rmxre-map-picker-canvas {
	min-height: 460px !important;
	overflow: hidden !important;
	border: 1px solid var(--rmxre-line) !important;
	border-radius: 8px !important;
	background: var(--rmxre-soft) !important;
}

.rmxre.rmxre-dashboard .rmxre-native-map {
	position: relative !important;
	width: 100% !important;
	min-height: inherit !important;
	overflow: hidden !important;
	border-radius: inherit !important;
	background: #dbeafe !important;
	cursor: crosshair !important;
	touch-action: none !important;
	user-select: none !important;
}

.rmxre.rmxre-dashboard .rmxre-native-map-tiles {
	position: absolute !important;
	inset: 0 !important;
	z-index: 1 !important;
}

.rmxre.rmxre-dashboard .rmxre-native-map-tile {
	position: absolute !important;
	width: 256px !important;
	height: 256px !important;
	max-width: none !important;
}

.rmxre.rmxre-dashboard .rmxre-native-map-marker {
	position: absolute !important;
	z-index: 3 !important;
	width: 34px !important;
	height: 34px !important;
	min-height: 0 !important;
	padding: 0 !important;
	border: 3px solid #fff !important;
	border-radius: 999px 999px 999px 0 !important;
	background: var(--rmxre-red) !important;
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.28) !important;
	cursor: grab !important;
	transform: translate(-50%, -100%) rotate(-45deg) !important;
}

.rmxre.rmxre-dashboard .rmxre-native-map-controls {
	position: absolute !important;
	top: 14px !important;
	left: 14px !important;
	z-index: 4 !important;
	display: grid !important;
	gap: 6px !important;
}

.rmxre.rmxre-dashboard .rmxre-native-map-controls button {
	display: grid !important;
	place-items: center !important;
	width: 38px !important;
	height: 38px !important;
	min-height: 0 !important;
	padding: 0 !important;
	border: 1px solid rgba(15, 23, 42, 0.14) !important;
	border-radius: 8px !important;
	color: var(--rmxre-ink) !important;
	background: rgba(255, 255, 255, 0.96) !important;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12) !important;
	font-size: 1.3rem !important;
	font-weight: 900 !important;
	line-height: 1 !important;
}

.rmxre.rmxre-dashboard .rmxre-native-map-attribution {
	position: absolute !important;
	right: 8px !important;
	bottom: 8px !important;
	z-index: 4 !important;
	padding: 4px 7px !important;
	border-radius: 4px !important;
	color: var(--rmxre-blue) !important;
	background: rgba(255, 255, 255, 0.88) !important;
	font-size: 0.72rem !important;
	font-weight: 800 !important;
}

.rmxre.rmxre-dashboard .rmxre-map-picker-panel {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	align-content: start !important;
	align-items: center !important;
	gap: 12px !important;
	padding: 16px !important;
	border: 1px solid var(--rmxre-line) !important;
	border-radius: 8px !important;
	background: var(--rmxre-soft) !important;
}

.rmxre.rmxre-dashboard .rmxre-map-picker-panel details {
	grid-column: 1 / -1 !important;
}

.rmxre.rmxre-dashboard .rmxre-coordinate-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.rmxre.rmxre-dashboard .rmxre-existing-media {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)) !important;
	gap: 10px !important;
}

.rmxre.rmxre-dashboard .rmxre-existing-media label {
	position: relative !important;
	display: block !important;
	overflow: hidden !important;
	aspect-ratio: 1 / 1 !important;
	border: 2px solid var(--rmxre-line) !important;
	border-radius: 8px !important;
	background: var(--rmxre-soft) !important;
}

.rmxre.rmxre-dashboard .rmxre-upload-box,
.rmxre.rmxre-dashboard .rmxre-shortcode-helper {
	padding: 16px !important;
	border-radius: 8px !important;
}

.rmxre.rmxre-dashboard .rmxre-upload-box {
	border: 1px dashed rgba(0, 84, 166, 0.42) !important;
	background: #f8fbff !important;
}

.rmxre.rmxre-dashboard .rmxre-form-actions {
	position: sticky !important;
	bottom: 14px !important;
	z-index: 5 !important;
	padding: 14px !important;
	border: 1px solid rgba(226, 232, 240, 0.86) !important;
	border-radius: 8px !important;
	background: rgba(255, 255, 255, 0.94) !important;
	box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1) !important;
	backdrop-filter: blur(12px) !important;
}

@media (max-width: 980px) {
	.rmxre.rmxre-dashboard .rmxre-dashboard-hero,
	.rmxre.rmxre-dashboard .rmxre-dashboard-layout,
	.rmxre.rmxre-dashboard .rmxre-map-picker {
		grid-template-columns: 1fr !important;
	}

	.rmxre.rmxre-dashboard .rmxre-dashboard-overview {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.rmxre.rmxre-dashboard .rmxre-dashboard-list {
		position: static !important;
	}
}

@media (max-width: 720px) {
	.rmxre.rmxre-dashboard {
		padding: 28px 14px !important;
	}

	.rmxre.rmxre-dashboard .rmxre-dashboard-hero,
	.rmxre.rmxre-dashboard .rmxre-dashboard-profile,
	.rmxre.rmxre-dashboard .rmxre-dashboard-overview,
	.rmxre.rmxre-dashboard .rmxre-property-form-head,
	.rmxre.rmxre-dashboard .rmxre-form-grid {
		grid-template-columns: 1fr !important;
	}

	.rmxre.rmxre-dashboard .rmxre-dashboard-hero h1 {
		font-size: 1.65rem !important;
	}

	.rmxre.rmxre-dashboard .rmxre-dashboard-hero-actions,
	.rmxre.rmxre-dashboard .rmxre-form-actions {
		justify-content: stretch !important;
	}

	.rmxre.rmxre-dashboard .rmxre-dashboard-hero-actions .rmxre-button,
	.rmxre.rmxre-dashboard .rmxre-form-actions .rmxre-button {
		width: 100% !important;
	}

	.rmxre.rmxre-dashboard .rmxre-dashboard-items {
		max-height: none !important;
		overflow: visible !important;
	}

	.rmxre.rmxre-dashboard .rmxre-dashboard-item {
		grid-template-columns: 72px minmax(0, 1fr) !important;
	}

	.rmxre.rmxre-dashboard .rmxre-dashboard-item-media {
		width: 72px !important;
	}

	.rmxre.rmxre-dashboard .rmxre-dashboard-item-actions {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		justify-content: stretch !important;
	}

	.rmxre.rmxre-dashboard .rmxre-map-picker-panel,
	.rmxre.rmxre-dashboard .rmxre-coordinate-grid {
		grid-template-columns: 1fr !important;
	}

	.rmxre.rmxre-dashboard .rmxre-form-actions {
		position: static !important;
	}
}
