/* Hairtec Artsen widget — design tokens come from the Elementor controls
   as CSS custom properties on the widget wrapper; every var() below carries
   the approved default so the widget also renders correctly untouched. */

.ht-artsen .ht-heading {
	color: var(--ht-primary, #223558);
	margin: 0 0 8px;
}

.ht-artsen .ht-intro {
	color: var(--ht-text, #5c5c5c);
	max-width: 640px;
	margin: 0 0 26px;
}

.ht-artsen .ht-grid {
	display: grid;
	grid-template-columns: repeat(var(--ht-cols, 2), 1fr);
	gap: var(--ht-gap, 20px);
	list-style: none;
	margin: 0;
	padding: 0;
}

.ht-artsen .ht-card {
	display: flex;
	align-items: stretch;
	gap: var(--ht-inner-gap, 20px);
	background: var(--ht-card-bg, #ffffff);
	border: 1px solid var(--ht-card-border, #22355840);
	border-radius: var(--ht-card-radius, 20px);
	padding: var(--ht-card-padding, 20px);
	margin: 0;
}

.ht-artsen .ht-photo {
	width: var(--ht-photo-size, 100px);
	height: var(--ht-photo-size, 100px);
	border-radius: var(--ht-photo-radius, 20px);
	object-fit: cover;
	flex-shrink: 0;
	display: block;
}

.ht-artsen .ht-box {
	flex: 1;
	min-width: 0;
	background: var(--ht-box-bg, #eeeff2);
	border-radius: var(--ht-box-radius, 20px);
	padding: 12px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	row-gap: 12px;
}

.ht-artsen .ht-stack {
	min-width: 0;
	/* min-content basis lets the flex line wrap the pill below in narrow cards */
	flex: 1 1 min-content;
}

.ht-artsen .ht-name {
	font-size: var(--ht-name-size, 20px);
	font-weight: 700;
	color: var(--ht-primary, #223558);
	line-height: 1.2;
	margin: 0 0 6px;
}

.ht-artsen .ht-role {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 6px;
}

.ht-artsen .ht-role span {
	font-size: 14px;
	color: var(--ht-text, #5c5c5c);
	line-height: 1.2;
}

.ht-artsen .ht-role .ht-rule {
	flex: 1;
	min-width: 24px;
	border-top: 1px solid var(--ht-divider, #22355866);
}

.ht-artsen .ht-big {
	font-size: 16px;
	color: var(--ht-text, #5c5c5c);
	margin: 0;
}

.ht-artsen .ht-big a {
	color: var(--ht-primary, #223558);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.01em;
	/* digits + external icon stay unbreakable; the label may wrap */
	white-space: nowrap;
}

.ht-artsen .ht-big a svg {
	width: 10px;
	height: 10px;
	fill: currentColor;
	margin-left: 4px;
	vertical-align: baseline;
}

.ht-artsen .ht-big a:hover,
.ht-artsen .ht-big a:focus-visible {
	text-decoration-thickness: 2px;
	color: var(--ht-primary, #223558);
}

.ht-artsen .ht-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex-shrink: 0;
	background: var(--ht-btn-bg, #223558);
	color: var(--ht-btn-color, #ffffff);
	border: 1px solid var(--ht-btn-bg, #223558);
	border-radius: var(--ht-btn-radius, 100px);
	padding: 10px 20px;
	font-size: var(--ht-btn-size, 12px);
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.ht-artsen .ht-pill svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
}

.ht-artsen .ht-pill:hover,
.ht-artsen .ht-pill:focus-visible {
	background: var(--ht-btn-hover-bg, #5c5c5c);
	border-color: var(--ht-btn-hover-bg, #5c5c5c);
	color: var(--ht-btn-hover-color, #ffffff);
}

.ht-artsen .ht-big a:focus-visible,
.ht-artsen .ht-pill:focus-visible {
	outline: 2px solid var(--ht-primary, #223558);
	outline-offset: 2px;
}

.ht-artsen .ht-dots {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.ht-artsen .ht-pill,
	.ht-artsen .ht-dots i {
		transition: none;
	}
}

/*
 * NOTE: the mobile carousel rules are NOT in this file. They are added via
 * wp_add_inline_style() in hairtec-artsen-widget.php so the breakpoint
 * follows the site's configured Elementor mobile breakpoint instead of a
 * hard-coded 767px.
 */
