/*--------------------------------------------------------------
# Features Section : defines a two coloumn block. 
# Righthand styled list of bullet points each in a card of its own
# Lefthad has text narrative and might contain a standard CTA button
--------------------------------------------------------------*/
.features .feature-box {
	padding: 24px 20px;
	box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	height: 100%;
}

.features .feature-box h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
}

.features .feature-box i {
	background: color-mix(in srgb, var(--accent-color), transparent 92%);
	color: var(--accent-color);
	line-height: 0;
	padding: 4px;
	margin-right: 10px;
	font-size: 0,75rem;
	border-radius: 3px;
	transition: 0.3s;
}

.features .feature-box:hover i {
	background: var(--accent-color);
	color: var(--contrast-color);
}

.features .feature-box p {
	margin-top: 12px;
}

.features .info-link {
	font-size: 0.75rem; /* Subscript size */
	font-weight: 300; /* Light font weight */
	color: color-mix(in srgb, var(--accent-color), transparent 75%); 
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
}

.features .info-link i {
	font-size: 1rem; /* Icon slightly larger than text for visibility */
	margin-left: 2px;
}

.features .info-link:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%); 
}s