/**
 * Product Features Block Styles
 */

.product-features-block {
	margin: 20px 0;
}

.product-features-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.product-feature-item {
	width: 100%;
}

.product-feature-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background-color: #f5f5f5;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

.product-feature-link:hover,
.product-feature-link:focus-visible {
	background-color: #e8e8e8;
	transform: translateX(4px);
}

.product-feature-link:focus {
	outline: 2px solid #00274c;
	outline-offset: 2px;
}

.product-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: #333;
}

.product-name {
	flex-grow: 1;
	font-size: 16px;
	font-weight: 500;
	color: #333;
}

.product-arrow {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background-color: #00274c;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

.product-feature-link:hover .product-arrow,
.product-feature-link:focus-visible .product-arrow {
	background-color: #154579;
}

.product-arrow svg {
	width: 20px;
	height: 20px;
}

.acf-block-preview .product-feature-link {
	pointer-events: none;
}