/* Board Section */
.board-section {
	padding: 64px 20px;
	padding-top: 100px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	background-color: #f9f9f9; /* Light background for modern look */
}

.board-section .heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	margin-bottom: 32px;
	flex-wrap: wrap; /* Ensures the layout adjusts for smaller screens */
	text-align: center;
}

.board-section img {
	background: var(--bblue);
	height: 200px;
	width: 150px;
	object-fit: cover;
	border-radius: 8px; /* Adds modern rounded edges */
}

.board-section h2 {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1.8rem;
	color: var(--bblue); /* Matches the theme */
	margin: 0;
}

.board-section .grid-container {
	display: grid;
	grid-template-columns: 1fr; /* Responsive grid */
	gap: 32px;
	margin-top: 32px;
	width: 100%;
	max-width: 800px; /* Limits maximum width for better readability */
}

.board-section .grid-container .grid-item {
	background: white;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
	border-radius: 8px;
	padding: 20px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.board-section .grid-container .grid-item:hover {
	transform: translateY(-5px); /* Hover lift effect */
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.board-section .grid-container .grid-item h3 {
	margin-bottom: 16px;
	font-size: 1.2rem;
	color: var(--bblue); /* Matches the theme */
	text-align: center;
	text-transform: uppercase;
}

.board-section .grid-container .grid-item ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.board-section .grid-container .grid-item li {
	padding: 8px 0;
	font-size: 0.95rem;
	color: #333;
	line-height: 1.5;
	border-bottom: 1px solid #eee; /* Subtle separator for better readability */
}

.board-section .grid-container .grid-item li:last-child {
	border-bottom: none; /* Removes the separator from the last item */
}

/* Responsive Design */
@media (max-width: 768px) {
	.board-section .heading {
		gap: 16px;
	}

	.board-section img {
		height: 150px;
		width: 120px;
	}
}

@media (max-width: 480px) {
	.board-section h2 {
		font-size: 1.5rem;
	}

	.board-section .grid-container {
		gap: 16px;
	}
}
