/**
 * BB Assurantie — [direct_contact] contactlijst.
 */

.dc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	font-family: var(--bb-font-family);
	color: #ffffff;
}

.dc-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	text-decoration: none;
	color: inherit;
}

.dc-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	flex-shrink: 0;
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	transition: background-color 0.2s ease;
}

.dc-item:hover .dc-icon-wrap,
.dc-item:focus-visible .dc-icon-wrap {
	background: rgba(255, 255, 255, 0.2);
}

.dc-list:not(.dc-list--light) .dc-item:hover,
.dc-list:not(.dc-list--light) .dc-item:focus-visible {
	color: #ffffff !important;
	text-decoration: none;
}

.dc-list:not(.dc-list--light) .dc-item:hover .dc-value,
.dc-list:not(.dc-list--light) .dc-item:focus-visible .dc-value {
	color: #ffffff !important;
}

.dc-list:not(.dc-list--light) .dc-item:hover .dc-eyebrow,
.dc-list:not(.dc-list--light) .dc-item:focus-visible .dc-eyebrow {
	color: rgba(255, 255, 255, 0.6) !important;
}

.dc-list:not(.dc-list--light) .dc-item:hover .dc-icon-wrap,
.dc-list:not(.dc-list--light) .dc-item:focus-visible .dc-icon-wrap {
	color: #ffffff !important;
}

.dc-icon {
	width: 1rem;
	height: 1rem;
	display: block;
}

.dc-text {
	display: inline-flex;
	flex-direction: column;
	gap: 0.125rem;
	line-height: 1.2;
}

.dc-eyebrow {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.6);
}

.dc-value {
	margin: 0;
	font-weight: 600;
	line-height: 1.25;
}

.dc-list--light {
	color: var(--bb-foreground);
}

.dc-list--light .dc-icon-wrap {
	background: rgba(0, 0, 0, 0.06);
}

.dc-list--light .dc-item:hover .dc-icon-wrap,
.dc-list--light .dc-item:focus-visible .dc-icon-wrap {
	background: rgba(0, 0, 0, 0.1);
}

.dc-list--light .dc-eyebrow {
	color: var(--bb-muted);
}
