/* splice-digital-patents.css */

.controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

#search {
	padding-left: 1rem;
	width: 100%;
	max-width: 300px;
}

.custom-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

@media screen and (max-width: 768px) {
	.custom-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 500px) {
	.custom-list {
		grid-template-columns: repeat(1, 1fr);
	}
}

.custom-list-item {
	min-width: 250px;
}

.custom-link-icon {
	margin-left: 0.5rem;
	height: 40px;
	width: 40px;
	margin-bottom: 0.5rem;
}
