.angie-levels-grid {
	display: grid;
	width: 100%;
}

.angie-level-card {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	border-radius: 4px;
	padding: 32px 28px;
	height: 100%;
}

.angie-level-card__title {
	margin: 0 0 4px 0;
	padding: 0;
}

.angie-level-card__subtitle {
	display: block;
	margin-bottom: 16px;
}

.angie-level-card__price {
	margin-bottom: 16px;
}

.angie-level-card__content {
	margin-bottom: 0;
}

/* Standaard (Licht) Thema */
.angie-level-card--style-default {
	background-color: #fff;
	border: 1.5px solid #e8e4dd;
}

.angie-level-card--style-default .angie-level-card__title {
	color: #0d1f35;
}

.angie-level-card--style-default .angie-level-card__subtitle {
	color: #6e6860;
}

.angie-level-card--style-default .angie-level-card__price {
	color: #0e7c6e; /* Teal */
}

.angie-level-card--style-default .angie-level-card__content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.angie-level-card--style-default .angie-level-card__content li {
	color: #6e6860;
	padding: 6px 0;
	border-bottom: 1px solid #e8e4dd;
}

.angie-level-card--style-default .angie-level-card__content li::before {
	content: "✓ ";
	margin-right: 5px;
	font-weight: bold;
}

/* Donker (Senior) Thema */
.angie-level-card--style-dark {
	background-color: #0d1f35; /* Navy */
	border: 2px solid #0e7c6e; /* Teal Border */
}

.angie-level-card--style-dark .angie-level-card__title {
	color: #fff;
}

.angie-level-card--style-dark .angie-level-card__subtitle {
	color: rgba(255, 255, 255, 0.5);
}

.angie-level-card--style-dark .angie-level-card__price {
	color: #c8992a; /* Gold */
}

.angie-level-card--style-dark .angie-level-card__content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.angie-level-card--style-dark .angie-level-card__content li {
	color: rgba(255, 255, 255, 0.8);
	padding: 6px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.angie-level-card--style-dark .angie-level-card__content li::before {
	content: "✓ ";
	margin-right: 5px;
	font-weight: bold;
	color: #fff;
}
