/**
 * Features Bar Widget Styles
 * GRPCMedia Theme
 */

.grpcmedia-features-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	flex-wrap: wrap;
	padding: 40px 0;
}

.grpcmedia-feature-item {
	display: flex;
	align-items: center;
	gap: 20px;
	transition: all 0.3s ease;
}

.grpcmedia-feature-item:hover {
	transform: translateY(-3px);
}

.grpcmedia-feature-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, rgba(47, 36, 131, 0.1) 0%, rgba(30, 24, 80, 0.1) 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: var(--grpc-primary, #2F2483);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
}

.grpcmedia-feature-item:hover .grpcmedia-feature-icon {
	background: linear-gradient(135deg, var(--grpc-primary, #2F2483) 0%, var(--grpc-secondary, #1e1850) 100%);
	color: #fff;
	transform: rotate(360deg) scale(1.1);
}

.grpcmedia-feature-content {
	text-align: left;
}

.grpcmedia-feature-title {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 4px 0;
	transition: color 0.3s ease;
}

.grpcmedia-feature-item:hover .grpcmedia-feature-title {
	color: var(--grpc-primary, #2F2483);
}

.grpcmedia-feature-subtitle {
	font-size: 14px;
	color: #666;
	margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
	.grpcmedia-features-bar {
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.grpcmedia-features-bar {
		flex-direction: column;
		gap: 30px;
	}
	
	.grpcmedia-feature-item {
		width: 100%;
		max-width: 400px;
	}
}



