.initial-circle {
    display: flex;
    align-items: center!important;;
    justify-content: center!important;;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #DE3341; /* red */
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 2.2;
}

/*--------------------------------------------------------------
# GreatSchools
--------------------------------------------------------------*/

.neighborhood-schools {
	display: grid;
	gap: 18px;
}

.neighborhood-school {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 24px;
	background: #fafafa;
	border: 1px solid #e5e7eb;
	border-radius: 22px;
}

.neighborhood-school-rating {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #00754a;

	display: flex;
	align-items: center;
	justify-content: center;
}

.neighborhood-school-rating-number {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	color: #ffffff;
}

.neighborhood-school-rating-total {
	margin-left: 1px;
	font-size: 0.58rem;
	font-weight: 600;
	line-height: 1;
	color: #cbd5e1;
}

.neighborhood-school-content {
	flex: 1;
	min-width: 0;
}

.neighborhood-school-name {
	margin: 0 0 4px;
	font: inherit;
	font-weight: 700;
	line-height: 1.3;
}

.neighborhood-school-name a {
	color: #111827;
	font: inherit;
	font-weight: inherit;
	text-decoration: none;
}

.neighborhood-school-name a:hover {
	text-decoration: underline;
}

.neighborhood-school-details {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.35;
	color: #6b7280;
}

.neighborhood-school-separator {
	margin: 0 8px;
}

@media (max-width: 767px) {

	.neighborhood-school {
		gap: 16px;
		padding: 18px;
		border-radius: 18px;
	}

	.neighborhood-school-rating {
		flex: 0 0 48px;
		width: 48px;
		height: 48px;
	}

	.neighborhood-school-rating-number {
		font-size: 1.15rem;
	}

	.neighborhood-school-rating-total {
		font-size: 0.55rem;
	}
}

/*--------------------------------------------------------------
# Market Overview Embed
--------------------------------------------------------------*/

.market-overview-iframe {
	display: block;
	width: 100%;
	height: 800px;
	border: 0;
}

@media (max-width: 767px) {
	.market-overview-iframe {
		height: 1170px;
	}
}


/*--------------------------------------------------------------
# Neighborhood Rentals
--------------------------------------------------------------*/

.neighborhood-rentals {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.neighborhood-rental {
	display: block;
	overflow: hidden;
	min-width: 0;
	color: #4B4F58;
	text-decoration: none;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.25)!important;
	transition: box-shadow 0.2s ease;
}

.neighborhood-rental:hover,
.neighborhood-rental:focus {
	color: #4B4F58;
	text-decoration: none;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.5)!important;
}

.neighborhood-rental:focus-visible {
	outline: 2px solid #de3341;
	outline-offset: 3px;
}

/* Force every rental image to exactly the same height */
.neighborhood-rental img.neighborhood-rental-image {
	display: block;
	width: 100%;
	height: 260px !important;
	min-height: 260px;
	max-height: 260px;
	object-fit: cover;
	object-position: center;
}

.neighborhood-rental-content {
	padding: 24px;
}

.neighborhood-rental-price {
	margin-bottom: 10px;
	color: #de3341;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.15;
}

.neighborhood-rental-title {
	margin: 0 0 12px;
	color: #4B4F58;
	font-size: 0.8rem;
	font-weight: 400;
	line-height: 1.35;
}

.neighborhood-rental-location {
	margin: -6px 0 12px;
	color: #4B4F58;
	font-size: 0.8rem;
	font-weight: 400;
	line-height: 1.35;
}

.neighborhood-rental-details {
	color: #4B4F58;
	font-size: 0.84rem;
	font-weight: 600;
	line-height: 1.35;
}

/* Tablet */
@media (max-width: 1024px) {

	.neighborhood-rentals {
		gap: 20px;
	}

	.neighborhood-rental-content {
		padding: 20px;
	}
}

/* Mobile swipe layout */
@media (max-width: 767px) {

	.neighborhood-rentals {
		display: flex;
		gap: 16px;
		overflow-x: auto;
		padding: 12px 18px 18px;
		margin: -12px -18px 0;
		scroll-snap-type: x mandatory;
		scroll-padding-left: 18px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.neighborhood-rentals::-webkit-scrollbar {
		display: none;
	}

	.neighborhood-rental {
		flex: 0 0 88%;
		scroll-snap-align: start;
	}

	.neighborhood-rental-content {
		padding: 20px;
	}
}




