/**
 * Plan section: Israel / Jordan country tabs + empty state (ACF flexible).
 * Kept separate from style.css per theme convention.
 */

.plan__country-tabs {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.plan__country-tab {
	font-family: 'DejaVu Sans Mono', 'Courier New', Courier, monospace;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 13px 23px 11px 24px;
	text-decoration: none;
	transition: background-color 0.2s, color 0.2s, border-color 0.2s;
	color: #1c2b2d;
	background-color: transparent;
	border: 1px solid #1c2b2d;
	cursor: pointer;
}

.plan__country-tab--active {
	background-color: #1c2b2d;
	color: #f3ede4;
	border-color: #1c2b2d;
}

.plan__country-tab:hover,
.plan__country-tab:focus {
	background-color: #3b8686;
	color: #f3ede4;
	border-color: #3b8686;
}

/* Do not set display:block on .plan__region alone — it overrides the [hidden] attribute. */
.plan__region[hidden] {
	display: none !important;
}

.plan__empty {
	margin: 0;
	padding: 12px 0 24px;
	color: #1c2b2d;
	font-size: 16px;
}
