.company-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.company-list a {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: transform 0.3s ease;
	cursor: pointer;
}
.company-list a:hover {
	transform: translateY(-6px);
}
.company-list a > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1rem;
	background-color: var(--bg-secondary);
	border-radius: 6px;
	gap: 0.6rem;
}
.company-list a img {
	height: 100px;
	aspect-ratio: 1 / 1;
	object-fit: contain;
}
.company-list a > div h3 {
	display: inline-flex;
	justify-content: space-between;
	margin: 0;
	font-size: 1.2rem;
	letter-spacing: 1px;
	font-weight: 900;
}
.company-list a > div h3 i {
	font-size: 1rem;
	align-self: center;
}
.company-list a > div p {
	font-size: 1rem;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* --- Responsive --- */
@media (min-width: 568px) {
	.company-list {
		flex-direction: row;
	}
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}
@media (min-width: 1600px) {
}
