/* ===== HUB PAGE ===== */

.hub-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	padding: 20px 0;
}

.hub-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	background: rgba(0, 0, 0, 0.25);
	border-left: 3px solid #009879;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	transition: all 0.25s ease;
	cursor: pointer;
}

.hub-card:hover {
	background: rgba(0, 0, 0, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 152, 121, 0.25);
	text-decoration: none;
}

.hub-card:active {
	transform: translateY(0);
}

/* Icon */
.hub-icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to bottom, #0d3a3b, #1c4c4e);
	border-radius: 10px;
	font-family: FontAwesome;
	font-style: normal;
	font-size: 24px;
	color: #fff;
}

/* Text */
.hub-text {
	min-width: 0;
}

.hub-card h3 {
	margin: 0;
	padding: 0;
	font-family: 'Rajdhani', sans-serif;
	font-weight: 600;
	font-size: 1.1em;
	color: #4beacc;
	text-transform: uppercase;
	line-height: 1.2;
}

.hub-card p {
	margin: 4px 0 0;
	padding: 0;
	font-family: 'Rajdhani', sans-serif;
	font-size: 14px;
	color: #ccc;
	line-height: 1.4;
}


/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 991px) {
	.hub-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

/* Mobile */
@media (max-width: 600px) {
	.hub-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.hub-card {
		padding: 14px 16px;
	}

	.hub-icon {
		width: 44px;
		height: 44px;
		font-size: 20px;
		border-radius: 8px;
	}
}
