/**
 * Single Community page styles
 * Enqueued only on single community posts.
 *
 * Breakpoints: 1024px (tablet), 768px (mobile)
 */

 .community-single {
	margin: 0;
	padding: 0;
}

/* ------------------------------------------------------------------ Hero */
.community-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 720px;
	padding: 230px 24px 100px;
	background-color: #001a3d;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
	margin-top: -115px;
}

.community-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 1) 25%,
		rgba(255, 255, 255, 0) 100%
	);
	pointer-events: none;
}

.community-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.community-hero__content-wrap {
	max-width: 900px;
}

/* Heading */
.community-hero__title {
	margin: 0 0 8px;
	font-family: "Playfair Display", sans-serif;
	font-size: 80px;
	font-weight: 700;
	line-height: 104px;
	color: rgba(0, 26, 61, 1);
	letter-spacing: -0.02em;
	max-width: 600px;
}

/* Script-style gold accent */
.community-hero__subtitle {
	margin: 0 0 28px;
	font-family: "Playfair Display", serif;
	font-size: 72px;
	font-weight: 700;
	font-style: italic;
	line-height: 1.1;
	color: #FF6C2C;
	max-width: 600px;
}

/* ACF description + post content */
.community-hero__description {
	font-family: "Inter", sans-serif;
	font-size: 19px;
	font-weight: 600;
	line-height: 35px;
	margin-bottom: 20px;
	color: rgba(0, 26, 61, 1);
	max-width: 600px;
}

.community-hero__body {
	font-family: "Inter", sans-serif;
	font-size: 19px;
	font-weight: 400;
	line-height: 35px;
	margin-bottom: 40px;
	color: #000;
	max-width: 600px;
}

.community-hero__description p:last-child,
.community-hero__body p:last-child {
	margin-bottom: 0;
}

.community-hero__body p,
.community-hero__description p {
	margin: 0 0 16px;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

.community-hero__body a,
.community-hero__description a {
	color: #FF6C2C;
	text-decoration: underline;
}

.community-hero__body a:hover,
.community-hero__description a:hover {
	color: #001a3d;
}

/* Buttons */
.community-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-top: 36px;
}

.community-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 14px 24px;
	border-radius: 4px;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.community-hero__btn:focus-visible {
	outline: 2px solid #FF6C2C;
	outline-offset: 3px;
}

.community-hero__btn-icon {
	flex-shrink: 0;
}

.community-hero__btn--primary {
	background-color: #FF6C2C;
	border: 2px solid #FF6C2C;
	color: #001a3d;
}

.community-hero__btn--primary:hover {
	background-color: #e0a01f;
	border-color: #e0a01f;
	color: #001a3d;
	transform: translateY(-1px);
}

.community-hero__btn--outline {
	background-color: #fff;
	border: 1px solid #001a3d;
	color: #001a3d;
}

.community-hero__btn--outline:hover {
	background-color: #001a3d;
	border-color: #001a3d;
	color: #fff;
	transform: translateY(-1px);
}

/* ---------------------------------------------------------------- Tablet */
@media (max-width: 1024px) {
	.community-hero {
		min-height: 620px;
		padding: 180px 32px 80px;
		background-position: center;
	}

	.community-hero__overlay {
		background: linear-gradient(
			90deg,
			rgba(255, 255, 255, 1) 0%,
			rgba(255, 255, 255, 1) 38%,
			rgba(255, 255, 255, 0.55) 68%,
			rgba(255, 255, 255, 0) 100%
		);
	}

	.community-hero__content-wrap {
		max-width: 100%;
	}

	.community-hero__title {
		max-width: 100%;
		font-size: 62px;
		line-height: 1.15;
	}

	.community-hero__subtitle {
		max-width: 100%;
		font-size: 56px;
		margin-bottom: 24px;
	}

	.community-hero__description,
	.community-hero__body {
		max-width: 100%;
		font-size: 18px;
		line-height: 32px;
	}

	.community-hero__body {
		margin-bottom: 32px;
	}

	.community-hero__actions {
		gap: 12px;
		margin-top: 28px;
	}

	.community-hero__btn {
		min-height: 50px;
		padding: 12px 20px;
		font-size: 15px;
	}
}

/* ---------------------------------------------------------------- Mobile */
@media (max-width: 768px) {
	.community-hero {
		align-items: flex-start;
		min-height: auto;
		padding: 130px 20px 56px;
		margin-top: -86px;
		background-position: center;
	}

	.community-hero__overlay {
		background: linear-gradient(
			180deg,
			rgba(255, 255, 255, 1) 0%,
			rgba(255, 255, 255, 0.97) 45%,
			rgba(255, 255, 255, 0.88) 100%
		);
	}

	.community-hero__title {
		font-size: 40px;
		line-height: 1.15;
		margin-bottom: 6px;
	}

	.community-hero__subtitle {
		font-size: 44px;
		margin-bottom: 18px;
	}

	.community-hero__description,
	.community-hero__body {
		font-size: 16px;
		line-height: 28px;
	}

	.community-hero__description {
		margin-bottom: 16px;
	}

	.community-hero__body {
		margin-bottom: 24px;
	}

	.community-hero__body p,
	.community-hero__description p {
		margin-bottom: 12px;
	}

	.community-hero__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		margin-top: 24px;
	}

	.community-hero__btn {
		width: 100%;
		min-height: 48px;
		padding: 12px 18px;
		font-size: 15px;
		white-space: normal;
		text-align: center;
	}
}

/* ---------------------------------------------------------------- Why Choose Us */
.community-why {
	padding: 100px 24px 50px;
	background-color: #ffffff;
}

.community-why__inner {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.community-why__grid {
	display: flex;
	align-items: center;
	gap: 60px;
}

.community-why__content {
	flex: 1;
	min-width: 0;
}

.community-why__title {
	margin: 0 0 16px;
	font-family: "Playfair Display", sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: #001a3d;
}

.community-why__title-accent {
	display: block;
	width: 80px;
	height: 4px;
	margin-bottom: 28px;
	background-color: #FF6C2C;
	border-radius: 2px;
}

.community-why__description {
	margin-bottom: 40px;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 32px;
	color: #4a4a4a;
}

.community-why__description p {
	margin: 0 0 16px;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

.community-why__description p:last-child {
	margin-bottom: 0;
}

.community-why__amenities {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px 16px;
}

.community-why__amenity {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.community-why__amenity-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 12px;
}

.community-why__amenity-img {
	display: block;
	width: auto;
	height: auto;
	max-width: 56px;
	max-height: 56px;
	object-fit: contain;
}

.community-why__amenity-text {
	margin: 0;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
	color: #001a3d;
	max-width: 100%;
}

.community-why__media {
	width: 100%;
	flex: 1;
	min-width: 0;
}

.community-why__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 420px;
	border-radius: 24px;
	object-fit: cover;
}

/* ---------------------------------------------------------------- Why Choose Us — Tablet */
@media (max-width: 1024px) {
	.community-why {
		padding: 80px 32px;
	}

	.community-why__grid {
		align-items: flex-start;
		gap: 40px;
	}

	.community-why__title {
		font-size: 40px;
		line-height: 1.2;
	}

	.community-why__title-accent {
		width: 72px;
		margin-bottom: 24px;
	}

	.community-why__description {
		margin-bottom: 32px;
		font-size: 17px;
		line-height: 30px;
	}

	.community-why__amenities {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px 16px;
	}

	.community-why__amenity-icon {
		width: 52px;
		height: 52px;
		margin-bottom: 10px;
	}

	.community-why__amenity-img {
		max-width: 52px;
		max-height: 52px;
	}

	.community-why__media {
		align-self: stretch;
	}

	.community-why__image {
		min-height: 360px;
		border-radius: 20px;
	}
}

/* ---------------------------------------------------------------- Why Choose Us — Mobile */
@media (max-width: 768px) {
	.community-why {
		padding: 60px 20px;
	}

	.community-why__grid {
		flex-direction: column;
		align-items: stretch;
		gap: 40px;
	}

	.community-why__content,
	.community-why__media {
		flex: none;
		width: 100%;
	}

	.community-why__title {
		font-size: 32px;
		line-height: 1.2;
	}

	.community-why__title-accent {
		width: 64px;
		margin-bottom: 20px;
	}

	.community-why__description {
		margin-bottom: 28px;
		font-size: 16px;
		line-height: 28px;
	}

	.community-why__amenities {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px 16px;
	}

	.community-why__amenity-icon {
		width: 48px;
		height: 48px;
		margin-bottom: 10px;
	}

	.community-why__amenity-img {
		max-width: 48px;
		max-height: 48px;
	}

	.community-why__amenity-text {
		font-size: 12px;
		line-height: 18px;
	}

	.community-why__image {
		width: 100%;
		height: auto;
		min-height: 0;
		max-height: none;
		aspect-ratio: 16 / 10;
		border-radius: 16px;
	}
}

/* ---------------------------------------------------------------- List for 1% / Equity */
.community-equity {
	padding: 50px 24px;
	background-color: #f7f8fa;
}

.community-equity__inner {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.community-equity__grid {
	display: flex;
	align-items: center;
	gap: 60px;
}

.community-equity__content {
	flex: 1;
	min-width: 0;
}

.community-equity__title {
	margin: 0 0 16px;
	font-family: "Playfair Display", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	color: #001a3d;
}

.community-equity__title-accent {
	display: block;
	width: 80px;
	height: 4px;
	margin-bottom: 16px;
	background-color: #FF6C2C;
	border-radius: 2px;
}

.community-equity__description {
	margin-bottom: 16px;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 32px;
	color: #4a4a4a;
}

.community-equity__description p {
	margin: 0 0 16px;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

.community-equity__description p:last-child {
	margin-bottom: 0;
}

.community-equity__list ul,
.community-equity__list ol {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.community-equity__list li {
	position: relative;
	padding-left: 32px;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: #001a3d;
}

.community-equity__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #FF6C2C;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6L5 8.5L9.5 3.5' stroke='%23FFFFFF' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 12px;
}

.community-equity__card {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	background-color: #ffffff;
	border-radius: 20px;
	padding: 16px;
	box-shadow: 0 8px 40px rgba(0, 26, 61, 0.1);
}

.community-equity__card-header {
	padding: 24px 24px 8px;
	text-align: center;
}

.community-equity__card-label {
	margin: 0 0 8px;
	font-family: "Inter", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: #001a3d;
}

.community-equity__card-title {
	margin: 0 0 8px;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #001a3d;
}

.community-equity__card-accent {
	display: block;
	width: 64px;
	height: 4px;
	margin: 0 auto;
	background-color: #FF6C2C;
	border-radius: 2px;
}

.community-equity__compare {
	display: flex;
	align-items: stretch;
	margin-bottom: 16px;
}

.community-equity__compare-col {
	flex: 1;
	padding: 4px 24px;
	text-align: center;
}

.community-equity__compare-divider {
	width: 1px;
	background-color: #e8ebf0;
	flex-shrink: 0;
}

.community-equity__compare-label {
	margin: 0 0 12px;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	color: #000;
}

.community-equity__compare-price {
	margin: 0 0 8px;
	font-family: "Inter", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	word-break: break-word;
}

.community-equity__compare-price--traditional {
	color: #e53935;
}

.community-equity__compare-price--percent {
	color: #2e7d32;
}

.community-equity__compare-note {
	margin: 0;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	color: #000;
}

.community-equity__card-footer {
	padding: 16px;
	background-color: #001a3d;
	text-align: center;
	border-radius: 24px;
}

.community-equity__savings {
	margin: 0 0 8px;
	font-family: "Inter", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: #ffffff;
}

.community-equity__savings span {
	color: #FF6C2C;
}

.community-equity__savings-note {
	margin: 0;
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.9);
}

/* ---------------------------------------------------------------- Equity — Tablet */
@media (max-width: 1024px) {
	.community-equity {
		padding: 50px 32px;
	}

	.community-equity__grid {
		align-items: flex-start;
		gap: 40px;
	}

	.community-equity__title {
		font-size: 32px;
	}

	.community-equity__title-accent {
		width: 72px;
		margin-bottom: 16px;
	}

	.community-equity__description {
		margin-bottom: 16px;
		font-size: 17px;
		line-height: 30px;
	}

	.community-equity__list ul,
	.community-equity__list ol {
		gap: 10px;
	}

	.community-equity__list li {
		font-size: 14px;
		line-height: 22px;
	}

	.community-equity__card {
		padding: 16px;
	}

	.community-equity__card-header {
		padding: 24px 20px 8px;
	}

	.community-equity__card-label {
		font-size: 20px;
	}

	.community-equity__card-title {
		font-size: 17px;
	}

	.community-equity__compare-col {
		padding: 4px 16px;
	}

	.community-equity__compare-price {
		font-size: 22px;
	}

	.community-equity__savings {
		font-size: 20px;
	}
}

/* ---------------------------------------------------------------- Equity — Mobile */
@media (max-width: 768px) {
	.community-equity {
		padding: 50px 20px;
	}

	.community-equity__grid {
		flex-direction: column;
		align-items: stretch;
		gap: 40px;
	}

	.community-equity__content,
	.community-equity__card {
		flex: none;
		width: 100%;
	}

	.community-equity__title {
		font-size: 28px;
	}

	.community-equity__title-accent {
		width: 64px;
		margin-bottom: 16px;
	}

	.community-equity__description {
		margin-bottom: 16px;
		font-size: 16px;
		line-height: 28px;
	}

	.community-equity__list ul,
	.community-equity__list ol {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.community-equity__list li {
		font-size: 14px;
		padding-left: 28px;
	}

	.community-equity__list li::before {
		width: 18px;
		height: 18px;
		background-size: 10px 10px;
	}

	.community-equity__card {
		padding: 12px;
		border-radius: 16px;
	}

	.community-equity__card-header {
		padding: 20px 16px 8px;
	}

	.community-equity__card-label {
		font-size: 18px;
	}

	.community-equity__card-title {
		font-size: 16px;
	}

	.community-equity__card-accent {
		width: 56px;
	}

	.community-equity__compare {
		flex-direction: column;
		margin-bottom: 12px;
	}

	.community-equity__compare-divider {
		width: 100%;
		height: 1px;
	}

	.community-equity__compare-col {
		padding: 16px;
	}

	.community-equity__compare-label {
		font-size: 15px;
		margin-bottom: 8px;
	}

	.community-equity__compare-price {
		font-size: 20px;
	}

	.community-equity__compare-note {
		font-size: 15px;
	}

	.community-equity__card-footer {
		padding: 16px;
		border-radius: 16px;
	}

	.community-equity__savings {
		font-size: 18px;
	}

	.community-equity__savings-note {
		font-size: 14px;
	}
}

/* ---------------------------------------------------------------- About / Nearby Places */
.community-about {
	padding: 50px 24px;
	background-color: #ffffff;
}

.community-about__inner {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.community-about__grid {
	gap: 24px;
	display: flex;
	align-items: flex-start;
}

.community-about__content {
	flex: 0 0 35%;
	min-width: 0;
}

.community-about__title {
	margin: 0 0 16px;
	font-family: "Playfair Display", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	color: #001a3d;
}

.community-about__title-leading {
	position: relative;
	display: inline-block;
	margin-right: 8px;
}

.community-about__title-accent {
	position: absolute;
	left: 0;
	bottom: -8px;
	display: block;
	width: 100%;
	height: 4px;
	background-color: #FF6C2C;
	border-radius: 2px;
}

.community-about__description {
	margin-bottom: 16px;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 32px;
	color: #4a4a4a;
}

.community-about__description p {
	margin: 0 0 16px;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

.community-about__description p:last-child {
	margin-bottom: 0;
}

.community-about__list ul,
.community-about__list ol {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr;
	gap: 6px;
}

.community-about__list li {
	position: relative;
	padding-left: 32px;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: #001a3d;
}

.community-about__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #FF6C2C;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6L5 8.5L9.5 3.5' stroke='%23FFFFFF' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 12px;
}

.community-about__places {
	flex: 1;
	min-width: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.community-about__place {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	overflow: hidden;
	background-color: #f7f8fa;
	border-radius: 16px;
}

.community-about__place-media {
	overflow: hidden;
	height: 170px;
}

.community-about__place-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.community-about__place-body {
	flex: 1;
	padding: 16px;
	text-align: center;
}

.community-about__place-text h1 ,
.community-about__place-text h2 ,
.community-about__place-text h3 ,
.community-about__place-text h4 ,
.community-about__place-text h5 ,
.community-about__place-text h6 {
	margin: 0 0 8px;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #001a3d;
}

.community-about__place-text {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: #001a3d;
}

.community-about__place-text p {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

.community-about__place-text p strong {
	display: block;
	margin-bottom: 8px;
}

/* ---------------------------------------------------------------- About — Tablet */
@media (max-width: 1024px) {
	.community-about {
		padding: 50px 32px;
	}

	.community-about__grid {
		gap: 40px;
		align-items: flex-start;
	}

	.community-about__content {
		flex: 1;
		min-width: 0;
	}

	.community-about__title {
		font-size: 32px;
	}

	.community-about__description {
		margin-bottom: 16px;
		font-size: 17px;
		line-height: 30px;
	}

	.community-about__list ul,
	.community-about__list ol {
		gap: 6px;
	}

	.community-about__places {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.community-about__place-media {
		height: 160px;
	}

	.community-about__place-text h1,
	.community-about__place-text h2,
	.community-about__place-text h3,
	.community-about__place-text h4,
	.community-about__place-text h5,
	.community-about__place-text h6 {
		font-size: 17px;
	}

	.community-about__place-text {
		font-size: 15px;
		line-height: 20px;
	}
}

/* ---------------------------------------------------------------- About — Mobile */
@media (max-width: 768px) {
	.community-about {
		padding: 50px 20px;
	}

	.community-about__grid {
		flex-direction: column;
		gap: 40px;
	}

	.community-about__content,
	.community-about__places {
		flex: none;
		width: 100%;
	}

	.community-about__title {
		font-size: 28px;
		line-height: 1.25;
	}

	.community-about__title-leading {
		margin-right: 6px;
	}

	.community-about__description {
		margin-bottom: 16px;
		font-size: 16px;
		line-height: 28px;
	}

	.community-about__list ul,
	.community-about__list ol {
		gap: 6px;
	}

	.community-about__list li {
		font-size: 14px;
		line-height: 22px;
		padding-left: 28px;
	}

	.community-about__list li::before {
		width: 18px;
		height: 18px;
		background-size: 10px 10px;
	}

	.community-about__places {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.community-about__place-media {
		height: 130px;
	}

	.community-about__place-img {
		border-radius: 12px 12px 0 0;
	}

	.community-about__place {
		border-radius: 12px;
	}

	.community-about__place-body {
		padding: 12px 10px 14px;
	}

	.community-about__place-text h1,
	.community-about__place-text h2,
	.community-about__place-text h3,
	.community-about__place-text h4,
	.community-about__place-text h5,
	.community-about__place-text h6 {
		font-size: 14px;
		margin-bottom: 6px;
	}

	.community-about__place-text {
		font-size: 12px;
		line-height: 18px;
	}

	.community-about__place-text p strong {
		margin-bottom: 4px;
	}
}

/* ---------------------------------------------------------------- Popular Neighborhoods */
.community-neighborhoods {
	padding: 0px 24px;
	background-color: #ffffff;
}

.community-neighborhoods__inner {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.community-neighborhoods__box {
	padding: 40px 32px;
	background-color: #f7f8fa;
	border: 1px solid #e8ebf0;
	border-radius: 20px;
}

.community-neighborhoods__title {
	margin: 0 0 32px;
	font-family: "Playfair Display", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: #001a3d;
}

.community-neighborhoods__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}

.community-neighborhoods__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	overflow: hidden;
	background-color: #ffffff;
	border-radius: 16px;
}

.community-neighborhoods__media {
	overflow: hidden;
	height: 170px;
}

.community-neighborhoods__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.community-neighborhoods__body {
	flex: 1;
	padding: 16px;
	text-align: center;
}

.community-neighborhoods__text h1,
.community-neighborhoods__text h2,
.community-neighborhoods__text h3,
.community-neighborhoods__text h4,
.community-neighborhoods__text h5,
.community-neighborhoods__text strong,
.community-neighborhoods__text h6 {
	margin: 0 0 8px;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #001a3d;
}

.community-neighborhoods__text {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: #001a3d;
}

.community-neighborhoods__text p {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

.community-neighborhoods__text p strong {
	display: block;
	margin-bottom: 8px;
}

/* ---------------------------------------------------------------- Neighborhoods — Tablet */
@media (max-width: 1024px) {
	.community-neighborhoods {
		padding: 50px 32px;
	}

	.community-neighborhoods__box {
		padding: 32px 24px;
	}

	.community-neighborhoods__title {
		margin-bottom: 28px;
		font-size: 32px;
	}

	.community-neighborhoods__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}

	.community-neighborhoods__media {
		height: 160px;
	}

	.community-neighborhoods__text h1,
	.community-neighborhoods__text h2,
	.community-neighborhoods__text h3,
	.community-neighborhoods__text h4,
	.community-neighborhoods__text h5,
	.community-neighborhoods__text h6 {
		font-size: 17px;
	}

	.community-neighborhoods__text {
		font-size: 15px;
		line-height: 20px;
	}
}

/* ---------------------------------------------------------------- Neighborhoods — Mobile */
@media (max-width: 768px) {
	.community-neighborhoods {
		padding: 0px 20px 50px;
	}

	.community-neighborhoods__box {
		padding: 28px 16px;
		border-radius: 16px;
	}

	.community-neighborhoods__title {
		margin-bottom: 24px;
		font-size: 28px;
		line-height: 1.25;
	}

	.community-neighborhoods__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.community-neighborhoods__media {
		height: 130px;
	}

	.community-neighborhoods__img {
		border-radius: 12px 12px 0 0;
	}

	.community-neighborhoods__card {
		border-radius: 12px;
	}

	.community-neighborhoods__body {
		padding: 12px 10px 14px;
	}

	.community-neighborhoods__text h1,
	.community-neighborhoods__text h2,
	.community-neighborhoods__text h3,
	.community-neighborhoods__text h4,
	.community-neighborhoods__text h5,
	.community-neighborhoods__text h6 {
		font-size: 14px;
		margin-bottom: 6px;
	}

	.community-neighborhoods__text {
		font-size: 12px;
		line-height: 18px;
	}

	.community-neighborhoods__text p strong {
		margin-bottom: 4px;
	}
}

/* ---------------------------------------------------------------- FAQ + CTA */
.community-faq-cta {
	padding: 50px 24px;
	background-color: #ffffff;
}

.community-faq-cta__inner {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.community-faq-cta__grid {
	display: flex;
	align-items: stretch;
	gap: 24px;
}

.community-faq-cta__faq {
	width: 38%;
	min-width: 0;
}

.community-faq-cta__cta {
	flex: 1;
	min-width: 0;
}

.community-faq-cta__faq-box {
	height: 100%;
	padding: 32px 28px;
	background-color: #f7f8fa;
	border: 1px solid #e8ebf0;
	border-radius: 20px;
}

.community-faq-cta__faq-title {
	margin: 0 0 24px;
	font-family: "Inter", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	color: #001a3d;
}

.community-faq-accordion__item {
	border-bottom: 1px solid #dde3ea;
	transition: border-color 0.3s ease;
}

.community-faq-accordion__item.is-active {
	border-bottom-color: #FF6C2C;
}

.community-faq-accordion__item:last-child {
	border-bottom: 0;
}

.community-faq-accordion__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	margin: 0 -8px;
	padding: 18px 8px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	text-align: left;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.25s ease;
}

.community-faq-accordion__trigger:hover {
	background-color: rgba(0, 26, 61, 0.05);
}

.community-faq-accordion__trigger:hover .community-faq-accordion__question {
	color: #0a3568;
}

.community-faq-accordion__trigger:hover .community-faq-accordion__icon::before,
.community-faq-accordion__trigger:hover .community-faq-accordion__icon::after {
	background-color: #FF6C2C;
}

.community-faq-accordion__trigger[aria-expanded="true"] {
	background-color: rgba(242, 178, 46, 0.1);
}

.community-faq-accordion__trigger[aria-expanded="true"] .community-faq-accordion__question {
	color: #001a3d;
}

.community-faq-accordion__question {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	text-wrap: auto;
	color: #001a3d;
	transition: color 0.3s ease;
}

.community-faq-accordion__icon {
	position: relative;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
}

.community-faq-accordion__icon::before,
.community-faq-accordion__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #001a3d;
	transform: translate(-50%, -50%);
	transition: transform 0.35s ease, opacity 0.35s ease, background-color 0.3s ease;
}

.community-faq-accordion__icon::before {
	width: 14px;
	height: 2px;
}

.community-faq-accordion__icon::after {
	width: 2px;
	height: 14px;
}

.community-faq-accordion__trigger:focus{
	background: transparent;
}

.community-faq-accordion__trigger[aria-expanded="true"] .community-faq-accordion__icon::before {
	background-color: #FF6C2C;
	transform: translate(-50%, -50%) rotate(180deg);
}

.community-faq-accordion__trigger[aria-expanded="true"] .community-faq-accordion__icon::after {
	transform: translate(-50%, -50%) scaleY(0);
	opacity: 0;
}

.community-faq-accordion__panel {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	overflow: hidden;
	transition: grid-template-rows 0.4s ease, opacity 0.35s ease;
}

.community-faq-accordion__panel.is-open {
	grid-template-rows: 1fr;
	opacity: 1;
}

.community-faq-accordion__answer {
	overflow: hidden;
	padding: 0 8px;
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 26px;
	color: #4a4a4a;
	transform: translateY(-6px);
	transition: transform 0.4s ease, padding 0.4s ease;
}

.community-faq-accordion__panel.is-open .community-faq-accordion__answer {
	padding-bottom: 18px;
	transform: translateY(0);
}

.community-faq-accordion__answer p {
	margin: 0 0 12px;
}

.community-faq-accordion__answer p:last-child {
	margin-bottom: 0;
}

.community-faq-cta__cta-box {
	display: flex;
	align-items: stretch;
	overflow: hidden;
	height: 100%;
	position: relative;
	border-radius: 20px;
}

.community-faq-cta__cta-content {
	width: fit-content;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 24px;
	position: relative;
	background-color: #001a3d;
	z-index: 2;
	border-radius: 24px;
}

.community-faq-cta__cta-title {
	margin: 0 0 12px;
	font-family: "Inter", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	max-width: 330px;
	color: #ffffff;
}

.community-faq-cta__cta-subtitle {
	margin: 0 0 16px;
	font-family: "Playfair Display", serif;
	font-size: 32px;
	font-weight: 700;
	font-style: italic;
	max-width: 330px;
	line-height: 1.1;
	color: #FF6C2C;
}

.community-faq-cta__cta-text {
	margin: 0 0 28px;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	max-width: 330px;
	line-height: 28px;
	color: rgba(255, 255, 255, 0.92);
}

.community-faq-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.community-faq-cta__btn-outline {
	background-color: #ffffff;
	border-color: #ffffff;
	color: #001a3d;
}

.community-faq-cta__btn-outline:hover {
	background-color: #FF6C2C;
	border-color: #FF6C2C;
	color: #001a3d;
}

.community-faq-cta__cta-media {
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 1;
	min-width: 0;
}

.community-faq-cta__cta-image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
}

/* ---------------------------------------------------------------- FAQ + CTA — Tablet */
@media (max-width: 1024px) {
	.community-faq-cta {
		padding: 50px 32px;
	}

	.community-faq-cta__grid {
		flex-direction: column;
		gap: 40px;
	}

	.community-faq-cta__faq {
		width: 100%;
	}

	.community-faq-cta__faq-box {
		padding: 28px 24px;
	}

	.community-faq-cta__faq-title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.community-faq-cta__cta-box {
		min-height: 360px;
	}

	.community-faq-cta__cta-content {
		width: 55%;
		padding: 32px 28px;
	}

	.community-faq-cta__cta-title {
		font-size: 22px;
		max-width: 100%;
	}

	.community-faq-cta__cta-subtitle {
		font-size: 30px;
		max-width: 100%;
	}

	.community-faq-cta__cta-text {
		max-width: 100%;
	}

	.community-faq-cta__cta-media {
		min-height: 100%;
	}
}

/* ---------------------------------------------------------------- FAQ + CTA — Mobile */
@media (max-width: 768px) {
	.community-faq-cta {
		padding: 0px 20px 50px;
	}

	.community-faq-cta__grid {
		gap: 40px;
	}

	.community-faq-cta__faq {
		width: 100%;
	}

	.community-faq-cta__faq-box {
		padding: 24px 18px;
		border-radius: 16px;
	}

	.community-faq-cta__faq-title {
		font-size: 22px;
		margin-bottom: 16px;
	}

	.community-faq-accordion__trigger {
		padding: 16px 6px;
		margin: 0 -6px;
	}

	.community-faq-accordion__question {
		font-size: 15px;
	}

	.community-faq-accordion__answer {
		font-size: 14px;
		line-height: 24px;
		padding-left: 6px;
		padding-right: 6px;
	}

	.community-faq-cta__cta-box {
		display: flex;
		flex-direction: column;
		min-height: auto;
		border-radius: 16px;
		padding-bottom: 120px;
	}

	.community-faq-cta__cta-content {
		width: 100%;
		padding: 28px 20px;
	}

	.community-faq-cta__cta-title {
		font-size: 22px;
		max-width: 100%;
	}

	.community-faq-cta__cta-subtitle {
		font-size: 28px;
		margin-bottom: 12px;
		max-width: 100%;
	}

	.community-faq-cta__cta-text {
		margin-bottom: 24px;
		font-size: 15px;
		line-height: 26px;
		max-width: 100%;
	}

	.community-faq-cta__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.community-faq-cta__actions .community-hero__btn {
		width: 100%;
		white-space: normal;
		text-align: center;
	}

	.community-faq-cta__cta-image {
		min-height: 220px;
	}
}

/* ---------------------------------------------------------------- Highlights / Features */
.community-highlights {
	padding: 50px 24px;
	background-color: #ffffff;
}

.community-highlights__inner {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.community-highlights__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px 20px;
	align-items: center;
}

.community-highlights__item {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.community-highlights__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 56px;
	height: 56px;
}

.community-highlights__img {
	display: block;
	width: auto;
	height: auto;
	max-width: 56px;
	max-height: 56px;
	object-fit: contain;
}

.community-highlights__title {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	color: #001a3d;
}

/* ---------------------------------------------------------------- Highlights — Tablet */
@media (max-width: 1024px) {
	.community-highlights {
		padding: 50px 32px;
	}

	.community-highlights__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px 20px;
	}
}

/* ---------------------------------------------------------------- Highlights — Mobile */
@media (max-width: 768px) {
	.community-highlights {
		padding: 50px 20px 0px;
	}

	.community-highlights__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 16px;
	}

	.community-highlights__item {
		gap: 12px;
	}

	.community-highlights__icon {
		width: 48px;
		height: 48px;
	}

	.community-highlights__img {
		max-width: 48px;
		max-height: 48px;
	}

	.community-highlights__title {
		font-size: 14px;
		line-height: 1.3;
	}
}