.my-project-tile-selector__areas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.my-project-tile-selector__area-btn {
	border: 2px solid #222;
	border-radius: 999px;
	padding: 10px 18px;
	background: transparent;
	cursor: pointer;
	font-weight: 600;
	line-height: 1;
}

.my-project-tile-selector__area-btn.is-active {
	background: #222;
	color: #fff;
}

.my-project-tile-selector__area-btn:focus {
	outline: 2px solid #2271b1;
	outline-offset: 2px;
}

.my-project-tile-selector__steps--hidden {
	display: none !important;
}

/* Step 2 + Step 3 layout: 2 columns in one row */
.my-project-tile-selector__steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	align-items: start;
	margin-top: 16px;
}

/* On small screens, stack them */
@media (max-width: 640px) {
	.my-project-tile-selector__steps {
		grid-template-columns: 1fr;
	}
}

/* Label styling (matches your Step text style) */
.my-project-tile-selector__row label,
.my-project-tile-selector__label {
	display: block;
	font-size: 14px;
	line-height: 1.2;
	margin-bottom: 10px;
	color: #222;
}

/* Select styling to match the pill reference */
.my-project-tile-selector__row select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	width: 100%;
	height: 48px;

	border: 2px solid #222;
	border-radius: 999px;

	background: #fff;
	color: #222;

	padding: 0 44px 0 18px;

	font-size: 16px;
	font-weight: 600;
	line-height: 1;

	cursor: pointer;
}

/* Disabled state */
.my-project-tile-selector__row select:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

/* Focus state */
.my-project-tile-selector__row select:focus {
	outline: 2px solid #2271b1;
	outline-offset: 2px;
}

/* Custom dropdown arrow (right side) */
.my-project-tile-selector__row {
	position: relative;
}

.my-project-tile-selector__row::after {
	content: none;
}

.my-project-tile-selector__row--select::after {
	content: '';
	position: absolute;
	right: 18px;
	bottom: 16px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #222;
	border-bottom: 2px solid #222;
	transform: rotate(45deg);
	pointer-events: none;
}

/* Results grid */
.my-project-tile-selector__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 28px;
}

/* Tablet */
@media (max-width: 1024px) {
	.my-project-tile-selector__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Mobile */
@media (max-width: 640px) {
	.my-project-tile-selector__grid {
		grid-template-columns: 1fr;
	}
}

/* Card */
.my-project-tile-selector__card {
	border: 1px solid #e5e5e5;
	border-radius: 14px;
	background: #fff;
	overflow: hidden;
	height: 100%;
}

/* Make whole card clickable */
.my-project-tile-selector__card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

/* Image */
.my-project-tile-selector__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	background: #fafafa;
	display: block;
}

/* Content */
.my-project-tile-selector__title {
	font-size: 18px;
	line-height: 1.25;
	margin: 14px 16px 8px;
	font-weight: 700;
}

.my-project-tile-selector__excerpt {
	margin: 0 16px 18px;
	font-size: 14px;
	line-height: 1.5;
	color: #444;
}

/* Hover/focus */
.my-project-tile-selector__card:hover {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
	transition: box-shadow 160ms ease, transform 160ms ease;
}

.my-project-tile-selector__card-link:focus {
	outline: 2px solid #2271b1;
	outline-offset: 3px;
	border-radius: 14px;
}
