/**
 * Values List Widget Styles
 */

.angie-values-container {
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}

.angie-values-header-wrapper {
	display: flex;
	justify-content: center;
	margin-top: -65px; /* Pull header up to overlap border */
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
}

.angie-values-header {
	display: inline-block;
	text-align: center;
	box-shadow: 0 0 20px rgba(123, 31, 162, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.angie-values-header h2 {
	margin: 0;
	line-height: 1.2;
}

.angie-values-list {
	display: flex;
	flex-direction: column;
}

.angie-value-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.angie-value-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.angie-value-icon {
	flex-shrink: 0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid;
	transition: all 0.3s ease;
}

.angie-value-content {
	flex-grow: 1;
}

.angie-value-content h3 {
	margin: 0 0 8px 0;
}

.angie-value-content p {
	margin: 0;
}

/* Subtle decorative glow at the top */
.angie-values-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
	box-shadow: 0 0 15px 2px rgba(255,255,255,0.5);
	z-index: 1;
}
