.fd-area-picker { max-width: 900px; margin: 0 auto; padding: 20px; text-align: center; }
.fd-area-picker h1 { font-size: 32px; font-weight: 800; margin: 0 0 6px; }
.fd-area-picker-sub { color: #666; margin: 0 0 28px; font-size: 16px; }

.fd-area-picker-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.fd-area-picker-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	background: #f7f7f5;
	border: 1px solid #e5e5e2;
	border-radius: 12px;
	padding: 22px 20px;
	text-decoration: none;
	color: inherit;
	transition: transform .15s ease, box-shadow .15s ease;
}
.fd-area-picker-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.1); }

.fd-area-picker-card:nth-child(1) { grid-column: span 3; background: #1a5d3a; color: #fff; }
.fd-area-picker-card:nth-child(1) .fd-area-picker-rank { color: #d4af37; }
.fd-area-picker-card:nth-child(1) .fd-area-picker-city { color: #cde3d5; }
.fd-area-picker-card:nth-child(1) .fd-area-picker-name { font-size: 24px; }

.fd-area-picker-rank { font-weight: 800; font-size: 13px; color: #b8862f; }
.fd-area-picker-name { font-weight: 800; font-size: 18px; }
.fd-area-picker-city { color: #777; font-size: 14px; }

@media (max-width: 640px) {
	.fd-area-picker-grid { grid-template-columns: 1fr; }
	.fd-area-picker-card:nth-child(1) { grid-column: span 1; }
}
