/* Section Headers */
.section-header {
	font-size: 1.4rem;
	color: #2c3e50;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #eaeaea;
	display: flex;
	align-items: center;
}

.section-header::before {
	content: "●";
	color: #4a6fa5;
	margin-left: 10px;
	font-size: 1.2rem;
}

/* Multi-column layout for large screens */
.links-container {
	display: grid;
	gap: 20px;
	margin-bottom: 30px;
	/* Default single column for mobile */
	grid-template-columns: 1fr;
}

/* Two columns for medium screens */
@media (min-width: 768px) {
	.links-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Three columns for large screens */
@media (min-width: 1024px) {
	.links-container {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Links List */
.links-list {
	list-style: none;
}

.link-item {
	margin-bottom: 15px;
	padding: 15px;
	border-radius: 6px;
	transition: background-color 0.2s;
	break-inside: avoid;
}

.link-item:hover {
	background-color: #f5f7fa;
}

.link-item a {
	display: block;
	font-weight: bold;
	color: #2c3e50;
	text-decoration: none;
	margin-bottom: 5px;
	font-size: 1.1rem;
	transition: color 0.2s;
}

.link-item a:hover {
	color: #4a6fa5;
}

.link-description {
	color: #666;
	font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 767px) {
	.hero h1 {
		font-size: 1.8rem;
	}
	
	.content-box {
		padding: 20px;
	}
	
	.section-header {
		font-size: 1.2rem;
	}
}