/**
 * FireSight Pulse Toolkit — Account Page Shortcode
 *
 * Loaded only on pages where [fspt_account] is rendered.
 * Layout only — no colours, so it inherits the active theme's palette.
 *
 * @since 1.3.0
 */

/* ── Wrapper ─────────────────────────────────────────────── */

.fspt-account {
	width: 100%;
}

/* ── Field list ──────────────────────────────────────────── */

.fspt-account-fields {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 0;
	margin: 0;
	padding: 0;
}

/* ── Row ─────────────────────────────────────────────────── */

.fspt-account-row {
	display: flex;
	align-items: center;
	margin-bottom: 60px;
}

.fspt-account-label,
.fspt-account-value {
	padding: 0.6em 0;
	margin: 0;
	word-break: break-word;
}

.fspt-account-label {
	color: #fff;
	max-width: 50%;
}

.fspt-account-value {
	display: flex;
	flex: 0 1 auto;
	flex-wrap: wrap;
	gap: 16px;
}


/* Remove bottom border from the last row */
.fspt-account-row:last-child .fspt-account-label,
.fspt-account-row:last-child .fspt-account-value {
	border-bottom: none;
}

/* ── Checkbox: tag/pill list ─────────────────────────────── */

.fspt-account-value--checkbox .fspt-tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ── Tag / Radio / Select: single badge ────────────────────────── */
.fspt-account-value--checkbox .fspt-tag,
.fspt-account-value--radio .fspt-badge,
.fspt-account-value--text {
	padding: 10px 22px;
	font-size: 14px;
	cursor: pointer;
	color: #e6f1ff;
	transition: all 0.25s ease;
	border-radius: 30px;
	border: 1px solid rgba(0, 255, 224, 0.55);
	background: linear-gradient(
			180deg,
			rgba(0, 144, 255, 0.22) 0%,
			rgba(134, 160, 216, 0.25) 100%
	);
}

/* ── Radio / Select: single badge ────────────────────────── */

/*.fspt-account-value--radio .fspt-badge {*/
/*	display: inline-block;*/
/*	padding: 0.2em 0.75em;*/
/*	border: 1px solid currentColor;*/
/*	border-radius: 0.3em;*/
/*	font-size: 0.875em;*/
/*	line-height: 1.4;*/
/*}*/

/* ── Empty placeholder ───────────────────────────────────── */

.fspt-account-empty {
	opacity: 0.4;
}

/* ── Responsive: stack on narrow screens ─────────────────── */

@media ( max-width: 480px ) {
	.fspt-account-fields {
		grid-template-columns: 1fr;
	}

	.fspt-account-label {
		border-bottom: none;
		padding-bottom: 0.2em;
	}

	.fspt-account-value {
		padding-top: 0.2em;
	}
}
