/* Romenal City24 Feed — Listings */

.romenal-listings {
	display: flex;
	flex-direction: column;
	max-width: 1000px;
	margin: 0 auto;
}

/* ── Single listing row ──────────────────────────────────────────────────── */
.romenal-listing {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding: 28px 0;
	border-bottom: 1px solid #e5e7eb;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s ease;
	border-radius: 4px;
}

.romenal-listing:hover {
	background: #f8fffe;
	padding-left: 12px;
	padding-right: 12px;
	margin-left: -12px;
	margin-right: -12px;
}

.romenal-listings .romenal-listing:last-child {
	border-bottom: none;
}

/* ── Photo ───────────────────────────────────────────────────────────────── */
.romenal-listing__image {
	flex: 0 0 270px;
	height: 180px;
	border-radius: 6px;
	overflow: hidden;
	background: #f0f0f0;
}

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

.romenal-listing__no-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #aaa;
	font-size: 0.85rem;
}

/* ── Content body ────────────────────────────────────────────────────────── */
.romenal-listing__body {
	flex: 1;
	min-width: 0;
}

.romenal-listing__title {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 5px 0;
	color: #1a1a2e;
	line-height: 1.3;
}

.romenal-listing__location {
	font-size: 0.85rem;
	color: #6b7280;
	margin: 0 0 14px 0;
}

/* ── Spec chips ──────────────────────────────────────────────────────────── */
.romenal-listing__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 14px;
}

.romenal-listing__specs span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.82rem;
	color: #374151;
	background: #f3f4f6;
	padding: 4px 10px;
	border-radius: 99px;
	white-space: nowrap;
}

.romenal-listing__specs .spec-energy {
	background: #ecfdf5;
	color: #065f46;
	font-weight: 600;
}

/* ── Description excerpt ─────────────────────────────────────────────────── */
.romenal-listing__desc {
	font-size: 0.875rem;
	color: #6b7280;
	margin: 0;
	line-height: 1.55;
}

/* ── Price column ────────────────────────────────────────────────────────── */
.romenal-listing__price {
	flex: 0 0 130px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	padding-top: 2px;
	gap: 4px;
}

.romenal-listing__price strong {
	font-size: 1.2rem;
	font-weight: 700;
	color: #1a1a2e;
	white-space: nowrap;
}

.romenal-price-request {
	font-size: 0.9rem !important;
	color: #6b7280 !important;
}

.romenal-price-m2 {
	font-size: 0.8rem;
	color: #9ca3af;
}

.romenal-deal-badge {
	display: inline-block;
	background: #3a9e8c;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 99px;
	margin-top: 6px;
	letter-spacing: 0.02em;
}

/* ── No listings message ─────────────────────────────────────────────────── */
.romenal-no-listings {
	color: #6b7280;
	font-style: italic;
	text-align: center;
	padding: 40px 0;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media ( max-width: 700px ) {
	.romenal-listing {
		flex-wrap: wrap;
		gap: 16px;
	}

	.romenal-listing:hover {
		padding-left: 0;
		padding-right: 0;
		margin-left: 0;
		margin-right: 0;
	}

	.romenal-listing__image {
		flex: 0 0 100%;
		height: 220px;
	}

	.romenal-listing__price {
		flex: 0 0 100%;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}
