/* Property Title Component */

.property-title-section {
	background: linear-gradient(135deg, var(--k-0) 0%, var(--k-5) 100%);
	padding: 2rem 0;
	border-bottom: 1px solid var(--k-10);
}

/* Property Title */
.property-title {
	font-family: var(--font-primary);
	font-size: 2rem;
	font-weight: 700;
	color: var(--era-navy);
	margin-bottom: 1rem;
	line-height: 1.2;
}

/* Property Address */
.property-address {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-primary);
	font-size: 1.125rem;
	color: var(--k-60);
	margin-bottom: 0;
}

.property-address svg {
	flex-shrink: 0;
	color: var(--era-red);
}

/* Property Price */
.property-price-container {
	position: relative;
}

.property-price-old {
	font-family: var(--font-primary);
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--k-60);
	text-decoration: line-through;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.property-price {
	font-family: var(--font-primary);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--era-red);
	margin-bottom: 0.75rem;
	line-height: 1;
}

/* Property Meta */
.property-meta {
	display: inline-flex;
	align-items: center;
	margin-bottom: 0.5rem;
}

.property-status {
	font-family: var(--font-secondary);
	font-size: 2rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background-color: var(--era-red);
	color: var(--k-0);
	padding: 0.375rem 0.75rem;
	border-radius: 0.25rem;
	margin-right: 10px;
}

.property-id {
	font-family: var(--font-primary);
	font-size: 0.8125rem;
	color: var(--k-50);
	margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
	.property-title-section {
		padding: 0.75rem 0 1.5rem 0;
	}

	.property-title {
		font-size: 1.5rem;
		margin-bottom: 0.75rem;
	}

	.property-address {
		font-size: 0.9375rem;
		margin-bottom: 1rem;
	}

	.property-price {
		font-size: 2rem;
		margin-bottom: 0.5rem;
	}

	.property-status {
		font-size: 1.25rem;
		padding: 0.375rem 0.625rem;
	}

	.property-id {
		font-size: 0.75rem;
	}
}

@media (min-width: 768px) {
	.property-title {
		font-size: 2.5rem;
	}

	.property-price {
		font-size: 3rem;
	}
}
