.program-list {
	border: 2px solid #d94c6e;
	background-color: #FFE6E8;
	padding: 20px;
	border-radius: 8px;
	max-width: 800px;
	margin: 0 auto;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.program-list h2 {
	text-align: center;
	font-weight: bold;
	margin-bottom: 20px;
	color: #8a1538;
	font-size: 1.5rem;
	padding-bottom: 10px;
	border-bottom: 1px solid #d94c6e;
}

.program-items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 12px;
	line-height: 1.6;
}

.program-item {
	display: flex;
	align-items: center;
	padding: 8px 12px;
	transition: background-color 0.2s;
	border-radius: 4px;
}

.program-item:hover {
	background-color: rgba(217, 76, 110, 0.1);
}

.program-number {
	display: inline-block;
	width: 24px;
	height: 24px;
	background-color: #d94c6e;
	color: white;
	border-radius: 50%;
	text-align: center;
	line-height: 24px;
	margin-left: 8px;
	font-size: 0.85rem;
	flex-shrink: 0;
}

.program-item a {
	color: #8a1538;
	text-decoration: none;
	transition: color 0.2s;
}

.program-item a:hover {
	color: #d94c6e;
	text-decoration: underline;
}

@media (max-width: 600px) {
	.program-items {
		grid-template-columns: 1fr;
	}
	
	.program-list {
		padding-right: 2px;
		padding-left: 2px;
	}
}
