.container {
	display: flex;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}
.column {
	flex: 1;
	padding: 20px 20px 0 20px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.link-item {
	margin-bottom: 25px;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
}
.link-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}
.link-title {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 5px;
	display: block;
}
.link-title a {
	text-decoration: none;
	color: darkgreen;
}
.link-title a:hover {
	text-decoration: underline;
}
.link-url {
	font-size: 0.85em;
	color: #666;
	margin-bottom: 8px;
	display: block;
	word-break: break-all;
}
.link-description {
	font-size: 0.95em;
	color: #444;
	line-height: 1.5;
	margin: 0;
}
