/**
 * VH360 Profile Fields – Public About-section display styles.
 *
 * Provides a clean "Profile Details" block rendered below the bio
 * in all About templates.
 *
 * @package Videohub360_Theme
 * @since   1.0.0
 */

/* ---------------------------------------------------------------
   Container
--------------------------------------------------------------- */
.vh360-profile-fields {
	margin-top: 2rem;
}

/* ---------------------------------------------------------------
   Section title
--------------------------------------------------------------- */
.vh360-profile-fields-title {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-light, #6b7280);
	margin: 0 0 1rem;
}

/* ---------------------------------------------------------------
   Field list (definition list)
--------------------------------------------------------------- */
.vh360-profile-field-list {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.vh360-profile-field {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	flex-wrap: wrap;
	padding: 0.625rem 0;
	border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.vh360-profile-field:last-child {
	border-bottom: none;
}

/* ---------------------------------------------------------------
   Label + value
--------------------------------------------------------------- */
.vh360-profile-field-label {
	flex: 0 0 auto;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-color, #111827);
	min-width: 8rem;
}

.vh360-profile-field-label::after {
	content: ":";
}

.vh360-profile-field-value {
	flex: 1 1 auto;
	font-size: 0.9375rem;
	color: var(--text-color, #111827);
	margin: 0;
	line-height: 1.6;
	word-break: break-word;
}

.vh360-profile-field-value a {
	color: var(--primary-color, #2563eb);
	text-decoration: none;
}

.vh360-profile-field-value a:hover {
	text-decoration: underline;
}

/* ---------------------------------------------------------------
   Textarea / long values
--------------------------------------------------------------- */
.vh360-profile-field-value p {
	margin: 0 0 0.5rem;
}

.vh360-profile-field-value p:last-child {
	margin-bottom: 0;
}

/* ---------------------------------------------------------------
   Edit form – visibility toggle
--------------------------------------------------------------- */
.vh360-field-visibility-toggle {
	margin-top: 0.5rem;
}

.vh360-required {
	color: var(--error-color, #ef4444);
}

/* ---------------------------------------------------------------
   Responsive
--------------------------------------------------------------- */
@media (max-width: 480px) {
	.vh360-profile-field {
		flex-direction: column;
		gap: 0.25rem;
	}

	.vh360-profile-field-label {
		min-width: unset;
	}
}
