/* BlueWave Hiring Options Card — scoped under .bw-hiring-card */

.bw-hiring-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 22px;
	padding: 30px 32px;
	box-sizing: border-box;
}

/* ---- Label ---- */
.bw-hiring-card__label {
	font-style: italic;
	font-size: 14px;
	color: #f1c286;
	letter-spacing: 0.04em;
	margin-bottom: 18px;
	line-height: 1.4;
	display: block;
}

/* ---- Option pills list ---- */
.bw-hiring-card__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.bw-hiring-card__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	text-decoration: none;
	transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.bw-hiring-card__item:hover {
	background: rgba(255, 255, 255, 0.10);
	border-color: rgba(241, 194, 134, 0.35);
	transform: translateY(-1px);
}

/* linked items get pointer cursor; non-linked items are plain divs */
a.bw-hiring-card__item {
	cursor: pointer;
}

div.bw-hiring-card__item {
	cursor: default;
}

div.bw-hiring-card__item:hover {
	transform: none;
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.08);
}

/* ---- Number ---- */
.bw-hiring-card__num {
	font-weight: 800;
	font-size: 13px;
	color: #f1c286;
	width: 24px;
	flex-shrink: 0;
	line-height: 1;
}

/* ---- Name ---- */
.bw-hiring-card__name {
	font-weight: 700;
	font-size: 15px;
	color: #ffffff;
	flex: 1;
	line-height: 1.3;
}

/* ---- Tag ---- */
.bw-hiring-card__tag {
	font-style: italic;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
	margin-left: auto;
	flex-shrink: 0;
	white-space: nowrap;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
	.bw-hiring-card {
		padding: 22px 20px;
	}

	.bw-hiring-card__tag {
		display: none; /* hide on very small screens to prevent overflow */
	}
}
