/* Container Layout */
.research-links-container {
	max-width: 768px;
	margin: 0 auto;
	font-family: system-ui, sans-serif;
	color: #1f2937;
}

.section-desc {
	font-size: 1.125rem;
	line-height: 1.6;
	color: #374151;
}

/* Grid Layout */
.research-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 640px) {
	.research-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Card Styling */
.academic-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	background-color: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.academic-card:hover {
	border-color: #d1d5db;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.08);
}

/* Icon Styling */
.card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	border-radius: 8px;
	background-color: #f3f4f6;
	color: #4b5563;
	flex-shrink: 0;
}

.scholar .card-icon {
	color: #4285f4; /* Google Blue */
	background-color: #eff6ff;
}

/* Content & Typography */
.card-content {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	width: 100%;
}

.card-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	font-size: 1rem;
	color: #111827;
}

.external-arrow {
	color: #9ca3af;
	transition: transform 0.2s ease, color 0.2s ease;
}

.academic-card:hover .external-arrow {
	color: #111827;
	transform: translate(2px, -2px);
}

.card-subtitle {
	margin: 0;
	font-size: 0.85rem;
	color: #6b7280;
	line-height: 1.4;
}
