/**
 * Textual Sources layouts.
 *
 * Loaded by inc/core.php.
 */

.textual-sources-wrapper {
	display: grid;
	grid-template-columns: repeat(2, minmax(360px, 560px));
	column-gap: 16px;
	row-gap: 18px;
	justify-content: center;
	align-items: start;
}

.textual-sources-wrapper .twocols-textual-sources-list {
	display: flex;
	width: 100% !important;
	min-width: 0;
	height: auto !important;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.textual-sources-wrapper .twocols-textual-sources-list a {
	display: block;
	width: 100%;
	height: auto !important;
	min-height: 0 !important;
	max-height: none !important;
	padding: 14px 16px;
	overflow: visible;
	border: 1px solid #d9dee3;
	border-radius: 6px;
	background: #f8f9fa;
	color: #1f2d3d;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.55;
	white-space: normal;
	word-break: break-word;
	overflow-wrap: anywhere;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.textual-sources-wrapper .twocols-textual-sources-list a:hover,
.textual-sources-wrapper .twocols-textual-sources-list a:focus {
	border-color: #9fb7c9;
	background: #eef4f8;
	color: #0f3d5e;
	transform: translateY(-1px);
}

.textual-sources-wrapper > div[style*="clear:both"] {
	display: none !important;
}

@media (max-width: 767px) {
	.textual-sources-wrapper {
		grid-template-columns: 1fr;
	}

	.textual-sources-wrapper .twocols-textual-sources-list a {
		padding: 12px 14px;
		font-size: 14px;
	}
}
