/* Property Facts Component */

.property-facts-section {
	padding: 3rem 0;
	background-color: var(--k-0);
}

/* Fact Cards */
.fact-card {
	background-color: var(--k-0);
	border-radius: 0.5rem;
	padding: 1.5rem;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.fact-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.fact-icon {
	color: var(--era-red);
	margin-bottom: 1rem;
}

.fact-value {
	font-family: var(--font-primary);
	font-size: 2rem;
	font-weight: 700;
	color: var(--era-navy);
	margin-bottom: 0.5rem;
	line-height: 1;
}

.fact-label {
	font-family: var(--font-primary);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--k-60);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

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

	.section-heading {
		font-size: 1.75rem;
		margin-bottom: 1.5rem;
	}

	.fact-card {
		padding: 1.25rem;
	}

	.fact-icon svg {
		width: 28px;
		height: 28px;
	}

	.fact-value {
		font-size: 1.75rem;
	}

	.fact-label {
		font-size: 0.875rem;
	}
}

@media (min-width: 768px) {
	.section-heading {
		font-size: 2.25rem;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.fact-card {
		transition: none;
	}

	.fact-card:hover {
		transform: none;
	}
}
