:root {
	--ple-header-height: 92px;
	--ple-ink: #2b2b3a;
	--ple-deep: #2f4768;
	--ple-accent: #ff8f52;
	--ple-accent-2: #4e89c7;
	--ple-bg-cream: #fff8ef;
	--ple-bg-mint: #eaf8f3;
	--ple-bg-sky: #eaf2ff;
	--ple-border: rgba(48, 78, 108, 0.2);
	--ple-card-shadow: 0 12px 24px rgba(41, 54, 73, 0.12);
}

.ple-courts-explorer {
	position: relative;
	background:
		radial-gradient(circle at 8% 12%, rgba(255, 198, 150, 0.4) 0%, rgba(255, 198, 150, 0) 32%),
		radial-gradient(circle at 90% 18%, rgba(168, 219, 255, 0.44) 0%, rgba(168, 219, 255, 0) 36%),
		radial-gradient(circle at 78% 76%, rgba(182, 243, 212, 0.42) 0%, rgba(182, 243, 212, 0) 38%),
		linear-gradient(165deg, #fff9ef 0%, #f8fbff 45%, #fefeff 100%);
	min-height: calc(100vh - var(--ple-header-height));
}

.ple-loading-overlay {
	position: absolute;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: center;
	background: rgba(248, 252, 255, 0.74);
	backdrop-filter: blur(3px);
	pointer-events: all;
}

.ple-loading-spinner-wrap {
	display: grid;
	place-items: center;
	gap: 10px;
	padding: 18px 22px;
	border-radius: 16px;
	border: 1px solid rgba(58, 93, 128, 0.2);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 16px 34px rgba(40, 61, 88, 0.14);
}

.ple-loading-spinner-wrap p {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 700;
	color: #355679;
	letter-spacing: 0.01em;
}

.ple-loading-pickleball {
	position: relative;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 30% 31%, #ffffff 0 5px, transparent 6px),
		radial-gradient(circle at 72% 42%, #ffffff 0 5px, transparent 6px),
		radial-gradient(circle at 46% 73%, #ffffff 0 5px, transparent 6px),
		conic-gradient(from 25deg, #fee985 0%, #ffd65f 34%, #f8c84a 66%, #ffdd74 100%);
	box-shadow: inset 0 -6px 10px rgba(146, 109, 16, 0.23), 0 8px 22px rgba(54, 85, 118, 0.24);
	animation: ple-spin-ball 1s linear infinite;
}

.ple-loading-pickleball::before,
.ple-loading-pickleball::after {
	content: '';
	position: absolute;
	border: 2.3px solid rgba(255, 255, 255, 0.95);
	border-color: rgba(255, 255, 255, 0.98) transparent transparent transparent;
	border-radius: 50%;
}

.ple-loading-pickleball::before {
	width: 42px;
	height: 42px;
	left: 10px;
	top: 6px;
	transform: rotate(18deg);
}

.ple-loading-pickleball::after {
	width: 40px;
	height: 40px;
	left: 11px;
	top: 18px;
	transform: rotate(198deg);
}

@keyframes ple-spin-ball {
	to {
		transform: rotate(360deg);
	}
}

.ple-courts-layout {
	display: grid;
	grid-template-columns: minmax(330px, 430px) 1fr;
	height: calc(100vh - var(--ple-header-height));
	border-top: 1px solid rgba(47, 71, 104, 0.16);
    margin-top: 92px;
}

.ple-courts-list-panel {
	backdrop-filter: blur(6px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.91), rgba(249, 252, 255, 0.9));
	border-right: 1px solid rgba(47, 71, 104, 0.16);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.ple-courts-list-header {
	padding: 18px 18px 14px;
	background: linear-gradient(155deg, rgba(255, 255, 255, 0.96) 0%, rgba(237, 247, 255, 0.9) 55%, rgba(236, 251, 242, 0.88) 100%);
	border-bottom: 1px solid rgba(47, 71, 104, 0.14);
}

.ple-courts-list-header h1 {
	margin: 0 0 6px;
	color: var(--ple-deep);
	font-size: 1.5rem;
	line-height: 1.15;
}

.ple-courts-list-header p {
	margin: 0 0 10px;
	font-size: 0.92rem;
	color: #49607d;
}

.ple-courts-controls {
	display: block;
}

.ple-search-row {
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 8px;
	align-items: center;
}

.ple-search-input-wrap {
	position: relative;
	min-width: 0;
}

.ple-search-submit-btn {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	padding: 0;
	border: none !important;
	border-radius: 999px;
	display: inline-flex  !important;
	align-items: center;
	justify-content: center;
	color: #1f8ea8 !important;
	cursor: pointer;
	box-shadow: 0 3px 8px rgba(43, 113, 150, 0.16) !important;
	transition: color 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
	outline: none;
}

.ple-search-submit-btn:hover {
	background: rgba(233, 248, 252, 0.98) !important;
	color: #166f86 !important;
	border-color: rgba(22, 111, 134, 0.5) !important;
}

.ple-search-submit-btn:focus,
.ple-search-submit-btn:active,
.ple-search-submit-btn:visited {
	color: #1f8ea8 !important;
}

.ple-search-input-wrap .ple-search-submit-btn:focus-visible {
	box-shadow: 0 0 0 2px rgba(49, 111, 176, 0.28) !important;
}

.ple-search-submit-icon {
	width: 16px;
	height: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ple-search-submit-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

.ple-filter-toggle {
	display: inline-flex;
	align-items: center;
	width: 40px !important;
	height: 40px !important;
	min-width: 40px !important;
	justify-content: center;
	padding: 0 !important;
	border: 1px solid #22b7ce;
	border-radius: 999px !important;
	background: #33cfe3 !important;
	color: #ffffff !important;
	font-size: 0.84rem;
	font-weight: 700;
	cursor: pointer;
	visibility: visible !important;
	opacity: 1 !important;
}

.ple-filter-icon {
	width: 15px;
	height: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ple-filter-icon svg {
	width: 14px;
	height: 14px;
	display: block;
	color: #ffffff;
}

.ple-filters-panel {
	margin-top: 8px;
	display: none;
}

.ple-filters-panel.is-open {
	display: block;
}

#ple-courts-search {
	width: 100%;
	padding: 10px 50px 10px 12px;
	border: 1px solid rgba(77, 121, 170, 0.36);
	border-radius: 12px;
	font-size: 0.95rem;
	outline: none;
	box-shadow: inset 0 1px 2px rgba(39, 56, 76, 0.08);
}

#ple-courts-search::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
	height: 14px;
	width: 14px;
	margin-right: 8px;
	border-radius: 999px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 4l8 8M12 4l-8 8' fill='none' stroke='%232b6aa8' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center center;
	background-size: 14px 14px;
	opacity: 0.85;
	cursor: pointer;
}

#ple-courts-search::-webkit-search-cancel-button:hover {
	opacity: 1;
}

#ple-courts-search:focus {
	border-color: #4e89c7;
	box-shadow: 0 0 0 3px rgba(78, 137, 199, 0.22);
}

.ple-near-me-btn {
	border: 0;
	border-radius: 25px !important;
	padding: 10px 14px;
	font-weight: 700;
	font-size: 0.85rem;
	color: #ffffff !important;
	background: #f06aa7  !important;
	cursor: pointer;
	box-shadow: 0 8px 18px rgba(155, 56, 111, 0.22);
	transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.ple-near-me-btn.is-loading {
	position: relative;
	padding-left: 32px;
	opacity: 0.95;
	cursor: wait;
}

.ple-near-me-btn.is-loading::before {
	content: '';
	position: absolute;
	left: 12px;
	top: 50%;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: ple-spin 0.8s linear infinite;
}

@keyframes ple-spin {
	to {
		transform: rotate(360deg);
	}
}

.ple-near-me-btn:hover {
	transform: translateY(-1px);
	filter: saturate(1.04);
	box-shadow: 0 10px 22px rgba(155, 56, 111, 0.28);
}

.ple-near-me-btn.is-active {
	background: #d65291;
}

.ple-near-me-icon-btn {
	width: 40px;
	height: 40px;
	padding: 0;
	border-radius: 999px !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 18px rgba(43, 113, 150, 0.24);
	background: #2db7d4 !important;
	color: #fff !important;
}

.ple-near-me-icon {
	width: 16px;
	height: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ple-near-me-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

.ple-near-me-icon-btn.is-active {
	background: #1f96b3 !important;
}

.ple-near-me-icon-btn.is-loading {
	padding-left: 0;
}

.ple-near-me-icon-btn.is-loading::before {
	left: 50%;
	margin-left: -6px;
}

.ple-filter-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 8px;
	margin-top: 8px;
}

.ple-filter-row select {
	width: 100%;
	border-radius: 10px;
	border: 1px solid rgba(77, 121, 170, 0.34);
	padding: 9px 10px;
	font-size: 0.86rem;
	color: #335072;
	background: linear-gradient(180deg, #ffffff, #f4f9ff);
}

.ple-near-me-status {
	font-size: 0.78rem;
	line-height: 1.3;
	margin-top: 8px;
	min-height: 1.2em;
	color: #375a7d;
}

.ple-near-me-status.is-error {
	color: #b54140;
}

.ple-courts-count {
	padding: 8px 18px;
	font-size: 0.84rem;
	color: #49607d;
	border-bottom: 1px solid rgba(47, 71, 104, 0.12);
}

.ple-courts-list {
	overflow-y: auto;
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ple-court-card {
	background: #ffffff;
	border: 2.5px solid var(--ple-border);
	border-radius: 16px;
	padding: 10px;
	cursor: pointer;
	transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
	box-shadow: 0 3px 8px rgba(38, 53, 73, 0.08);
}

.ple-court-card.tone-1 { border-color: #f083b6; }
.ple-court-card.tone-2 { border-color: #6dbcec; }
.ple-court-card.tone-3 { border-color: #66d5ad; }
.ple-court-card.tone-4 { border-color: #f4a76f; }
.ple-court-card.tone-5 { border-color: #ab90f0; }
.ple-court-card.tone-6 { border-color: #efbe56; }

.ple-court-card:hover,
.ple-court-card.is-active {
	transform: translateY(-2px);
	border-color: #49b4d1;
	box-shadow: var(--ple-card-shadow);
}

.ple-court-card h3 {
	margin: 0 0 4px;
	font-size: 0.98rem;
	line-height: 1.25;
	color: #243f60;
}

.ple-court-card p {
	margin: 2px 0;
	font-size: 0.85rem;
	color: #435e7b;
}

.ple-card-meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px 10px;
	margin-top: 8px;
}

.ple-card-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.9rem;
	font-weight: 600;
	color: #2c587f;
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
}

.ple-card-meta-line {
	white-space: nowrap;
}

.ple-card-meta-fee {
	padding: 2px 8px;
	border-radius: 999px;
	font-weight: 800;
	letter-spacing: 0.01em;
	border: 1px solid transparent;
}

.ple-card-meta-fee.is-free {
	color: #0f7a3d;
	background: #e8f8ee;
	border-color: #b8e2c7;
}

.ple-card-meta-fee.is-paid {
	color: #8f1f1f;
	background: #fdecec;
	border-color: #f0b6b6;
}

.ple-card-meta-fee.is-unknown {
	color: #415d7c;
	background: #edf2f9;
	border-color: #ccd8e8;
}

.ple-meta-icon {
	display: inline-flex;
	width: 14px;
	height: 14px;
	color: #2f92af;
}

.ple-meta-icon svg {
	width: 14px;
	height: 14px;
}

@media (max-width: 640px) {
	.ple-card-meta {
		grid-template-columns: 1fr;
	}
}

.ple-court-card a {
	display: inline-block;
	margin-top: 6px;
	font-size: 0.85rem;
	color: #1d5f98;
	text-decoration: none;
	font-weight: 700;
}
span.ple-filter-label {
    color: white !important;
	display: inline-block !important;
}

.ple-map-pop {
	min-width: 210px;
	max-width: 240px;
	padding: 4px 34px 2px 2px;
	font-family: inherit;
	position: relative;
}

.ple-map-pop-close {
	all: unset !important;
	position: absolute !important;
	top: 2px !important;
	right: 2px !important;
	width: 22px !important;
	height: 22px !important;
	display: grid !important;
	place-items: center !important;
	box-sizing: border-box !important;
	border: 1px solid rgba(63, 118, 179, 0.38) !important;
	border-radius: 999px !important;
	background: #ffffff !important;
	color: #1f2b38 !important;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 17px !important;
	line-height: 1 !important;
	font-weight: 700 !important;
	padding: 0 !important;
	margin: 0 !important;
	text-align: center !important;
	cursor: pointer !important;
	z-index: 4 !important;
}

.ple-map-pop-close svg {
	width: 12px !important;
	height: 12px !important;
	display: block !important;
	pointer-events: none !important;
}

.ple-map-pop-close:hover {
	background: #f0f7ff !important;
	color: #133f69 !important;
}

.ple-map-pop-close:focus {
	outline: 2px solid rgba(63, 118, 179, 0.42) !important;
	outline-offset: 1px !important;
}

.ple-map-pop h4 {
	margin: 0 0 4px;
	font-size: 0.93rem;
	line-height: 1.25;
	color: #244464;
	white-space: normal;
	overflow-wrap: anywhere;
	padding-right: 6px;
}

.ple-map-pop p {
	margin: 0 0 6px;
	font-size: 0.8rem;
	line-height: 1.3;
	color: #476483;
}

.ple-map-pop-meta {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 6px;
}

.ple-map-pop-meta span {
	display: inline-block;
	font-size: 0.74rem;
	font-weight: 700;
	color: #315170;
	background: #ebf4fd;
	border: 1px solid #c4dbef;
	padding: 3px 7px;
	border-radius: 10px;
}

.ple-map-pop a {
	font-size: 0.8rem;
	font-weight: 700;
	color: #1f6aa9;
	text-decoration: none;
}

.ple-map-pop a:hover {
	text-decoration: underline;
}

.ple-courts-explorer .gm-style .gm-style-iw-c {
	padding: 10px 12px 10px 12px !important;
	border: 2px solid #2f7f5c;
	border-radius: 14px;
	box-shadow: 0 10px 22px rgba(44, 79, 66, 0.18);
}

.ple-courts-explorer .gm-style .gm-style-iw-d {
	overflow: hidden !important;
	max-height: none !important;
}

.ple-courts-explorer .gm-style .gm-style-iw-chr {
	display: none !important;
}

.ple-court-card a:hover {
	text-decoration: underline;
}

.ple-courts-map-panel {
	position: relative;
	background: linear-gradient(145deg, var(--ple-bg-cream), var(--ple-bg-sky) 55%, var(--ple-bg-mint) 100%);
}

.ple-courts-map {
	height: 100%;
	width: 100%;
}

.ple-map-disabled {
	position: absolute;
	inset: 24px;
	padding: 16px;
	border: 1px solid rgba(47, 71, 104, 0.28);
	border-radius: 12px;
	background: #fff;
	color: #3d546f;
}

.ple-mobile-toggle {
	display: none;
}

.ple-court-detail {
	--ple-detail-bg: #b9c8f3;
	--ple-detail-ink: #173f3a;
	background: var(--ple-detail-bg);
	padding: 22px 14px 32px;
	margin-top: 80px;
	position: relative;
	overflow: hidden;
}

.ple-court-detail::before {
	content: "";
	position: absolute;
	width: 560px;
	height: 560px;
	top: -270px;
	left: -170px;
	border-radius: 50%;
	background: rgba(220, 204, 244, 0.82);
	filter: blur(2px);
	pointer-events: none;
}

.ple-court-detail::after {
	content: "";
	position: absolute;
	width: 470px;
	height: 470px;
	right: -160px;
	bottom: -180px;
	border-radius: 50%;
	background: rgba(207, 231, 184, 0.78);
	filter: blur(2px);
	pointer-events: none;
}

.ple-court-detail-wrap {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	gap: 14px;
	position: relative;
	z-index: 2;
}

.ple-detail-hero-card,
.ple-detail-section-card {
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(247, 252, 255, 0.92));
	border: 1px solid rgba(23, 63, 58, 0.16);
	border-radius: 22px;
	padding: 18px;
	box-shadow: 0 14px 28px rgba(23, 63, 58, 0.12);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ple-detail-section-card:hover,
.ple-detail-hero-card:hover {
	transform: translateY(-2px);
	border-color: rgba(103, 74, 134, 0.35);
	box-shadow: 0 16px 30px rgba(23, 63, 58, 0.16);
}

.ple-breadcrumb {
	font-size: 0.84rem;
	margin: 0 0 8px;
	color: rgba(23, 63, 58, 0.7);
}

.ple-breadcrumb a {
	color: #674a86;
	text-decoration: none;
}

.ple-crumb-sep {
	display: inline-block;
	margin: 0 5px;
	color: rgba(23, 63, 58, 0.46);
}

.ple-detail-hero-card h1 {
	margin: 0 0 6px;
	color: #173f3a;
	font-size: 1.95rem;
	line-height: 1.08;
}

.ple-court-address {
	font-size: 0.96rem;
	color: rgba(23, 63, 58, 0.74);
	margin-bottom: 12px;
}

.ple-court-official-link {
	margin: -4px 0 12px;
}

.ple-court-official-link a {
	color: #674a86;
	font-weight: 800;
	text-decoration: none;
}

.ple-court-official-link a:hover {
	text-decoration: underline;
}

.ple-court-meta-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(220px, 1fr));
	gap: 8px 16px;
	margin-bottom: 2px;
}

.ple-court-meta-grid div {
	padding: 8px 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.56);
	border: 1px solid rgba(23, 63, 58, 0.1);
	color: #234a45;
	font-size: 0.9rem;
}

.ple-court-meta-grid div:nth-child(4n + 1) {
	background: rgba(216, 201, 242, 0.46);
}

.ple-court-meta-grid div:nth-child(4n + 2) {
	background: rgba(255, 183, 201, 0.42);
}

.ple-court-meta-grid div:nth-child(4n + 3) {
	background: rgba(184, 221, 232, 0.48);
}

.ple-court-meta-grid div:nth-child(4n + 4) {
	background: rgba(207, 231, 184, 0.45);
}

.ple-detail-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.ple-detail-section-card h2 {
	margin: 0 0 10px;
	color: #1f3f3a;
	font-size: 1.2rem;
}

.ple-court-detail-map {
	height: 420px;
	border: 1px solid rgba(23, 63, 58, 0.24);
	border-radius: 14px;
	overflow: hidden;
}

.ple-amenities-list {
	columns: 2;
	column-gap: 24px;
	margin: 0;
	padding-left: 16px;
	color: #264944;
}

.ple-weather-card {
	position: relative;
	min-height: 104px;
}

.ple-weather-loading,
.ple-weather-empty {
	margin: 0;
	padding: 12px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.62);
	border: 1px solid rgba(23, 63, 58, 0.1);
	color: #274943;
	font-size: 0.92rem;
}

.ple-weather-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(120px, 1fr));
	gap: 10px;
	align-items: stretch;
}

.ple-weather-day {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 230px;
	border-radius: 14px;
	padding: 11px 10px;
	border: 1px solid rgba(23, 63, 58, 0.13);
	background: rgba(255, 255, 255, 0.58);
	box-shadow: 0 8px 18px rgba(23, 63, 58, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	font-weight: 700;
}

.ple-weather-day:nth-child(4n + 1) {
	background: rgba(216, 201, 242, 0.52);
	border-color: rgba(142, 121, 188, 0.42);
}

.ple-weather-day:nth-child(4n + 2) {
	background: rgba(255, 183, 201, 0.44);
	border-color: rgba(206, 110, 140, 0.42);
}

.ple-weather-day:nth-child(4n + 3) {
	background: rgba(184, 221, 232, 0.52);
	border-color: rgba(91, 156, 177, 0.42);
}

.ple-weather-day:nth-child(4n + 4) {
	background: rgba(207, 231, 184, 0.47);
	border-color: rgba(126, 166, 92, 0.42);
}

.ple-weather-day:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 26px rgba(23, 63, 58, 0.14);
}

.ple-weather-head {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 2px;
	width: 100%;
	justify-content: center;
}

.ple-weather-dow {
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	text-transform: none;
	font-weight: 800;
	color: #2a4e5a;
	line-height: 1.15;
	text-align: center;
}

.ple-weather-date {
	font-size: 0.74rem;
	font-weight: 800;
	color: rgba(42, 78, 90, 0.72);
	margin-bottom: 7px;
	text-align: center;
}

.ple-weather-temp {
	font-size: 1.12rem;
	font-weight: 800;
	color: #163f3a;
	line-height: 1;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
	margin-bottom: 8px;
	text-align: center;
}

.ple-weather-icon {
	width: 52px;
	height: 52px;
	margin-bottom: 7px;
	padding: 6px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.45);
	align-self: center;
}

.ple-weather-day:hover .ple-weather-icon {
	background: rgba(255, 255, 255, 0.66);
}

.ple-weather-icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	display: block;
}

.ple-weather-day p {
	margin: 0 0 8px;
	min-height: 2.8em;
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.25;
	color: rgba(23, 63, 58, 0.82);
	text-align: center;
}

.ple-weather-stats {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	margin-top: auto;
	font-size: 0.8rem;
	line-height: 1.25;
	font-weight: 800;
	color: #1d4e5f;
}

.ple-weather-stat-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.ple-weather-stat-icon {
	width: 14px;
	height: 14px;
	color: #2787a1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ple-weather-stat-icon svg {
	width: 14px;
	height: 14px;
	display: block;
}

.ple-weather-stat-value {
	display: block;
}

@media (max-width: 1024px) {
	:root {
		--ple-header-height: 82px;
	}

	.ple-courts-layout {
		grid-template-columns: 360px 1fr;
	}
}

@media (max-width: 860px) {
	:root {
		--ple-header-height: 75px;
	}

	.ple-courts-explorer {
		margin-top: 75px;
	}

	.ple-court-detail {
		margin-top: 75px;
	}

	.ple-courts-layout {
		display: block;
		height: calc(100vh - var(--ple-header-height) - 58px);
	}

	.ple-courts-list-panel,
	.ple-courts-map-panel {
		height: calc(100vh - var(--ple-header-height) - 58px);
	}

	.ple-courts-layout[data-view="map"] .ple-courts-list-panel {
		display: none;
	}

	.ple-courts-layout[data-view="list"] .ple-courts-map-panel {
		display: none;
	}

	.ple-mobile-toggle {
		display: grid;
		grid-template-columns: 1fr 1fr;
		position: fixed;
		left: 12px;
		right: 12px;
		bottom: 12px;
		z-index: 999;
		padding: 4px;
		background: rgba(247, 252, 255, 0.96);
		border: 1px solid rgba(47, 71, 104, 0.22);
		border-radius: 999px;
		box-shadow: 0 10px 24px rgba(41, 54, 73, 0.2);
	}

	.ple-mobile-toggle button {
		border: 0;
		background: transparent;
		color: #395878;
		font-weight: 700;
		padding: 10px;
		border-radius: 999px;
	}

	.ple-mobile-toggle button.is-active {
		background: #f06aa7;
		color: #fff;
	}

	.ple-courts-list-header h1,
	.ple-courts-list-header p {
		display: none;
	}

	.ple-filter-toggle[aria-expanded="true"] {
		background: #25b9ce;
		border-color: #25b9ce;
	}

	.ple-filter-label {
		display: inline-block !important;
	}

	.ple-filter-row {
		margin-top: 8px;
	}

	.ple-filter-row {
		grid-template-columns: 1fr;
	}

	.ple-court-meta-grid,
	.ple-detail-two-col {
		grid-template-columns: 1fr;
	}

	.ple-weather-grid {
		grid-template-columns: repeat(2, minmax(120px, 1fr));
	}

	.ple-weather-day {
		min-height: 212px;
	}

	.ple-weather-day p {
		min-height: 3.6em;
	}

	.ple-amenities-list {
		columns: 1;
	}

	.ple-court-detail-map {
		height: 320px;
	}
}
/* Only the full-screen court explorer map suppresses the site footer. */
.ple-courts-explorer-page footer {
	display: none;
}
