.fel-dashboard__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-top: 1.5rem;
}

.fel-card {
	display: flex;
	flex-direction: column;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.15s ease;
}

.fel-card:hover {
	box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.fel-card__body {
	padding: 1.25rem;
	flex: 1;
}

.fel-card__title {
	margin: 0 0 0.75rem;
	font-size: 1.05rem;
	line-height: 1.3;
}

.fel-card__title a {
	text-decoration: none;
	color: inherit;
}

.fel-card__title a:hover {
	text-decoration: underline;
}

.fel-card__terms {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-bottom: 0.75rem;
}

.fel-badge {
	display: inline-block;
	padding: 0.2em 0.6em;
	background: #f0f0f0;
	border-radius: 3px;
	font-size: 0.75rem;
	color: #555;
}

.fel-card__progress {
	margin-top: 0.75rem;
}

.fel-progress-bar {
	height: 6px;
	background: #e9e9e9;
	border-radius: 3px;
	overflow: hidden;
}

.fel-progress-bar__fill {
	height: 100%;
	background: #2271b1;
	border-radius: 3px;
	transition: width 0.3s ease;
}

.fel-progress-bar__label {
	display: block;
	font-size: 0.75rem;
	color: #666;
	margin-top: 0.3rem;
}

.fel-card__footer {
	padding: 0.75rem 1.25rem;
	border-top: 1px solid #f0f0f0;
	background: #fafafa;
}

.fel-btn {
	display: inline-block;
	padding: 0.4em 1.1em;
	background: #2271b1;
	color: #fff !important;
	border-radius: 4px;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
}

.fel-btn:hover {
	background: #135e96;
}
