.kimlik-hub {
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 15px;
}

.kimlik-hero {
	background: #f7f9fc;
	padding: 50px 30px;
	border-radius: 16px;
	text-align: center;
	border: 1px solid #e6ebf1;
	box-shadow: 0 10px 30px rgba(0,0,0,0.04);
	margin-bottom: 50px;
}

.kimlik-hero h2 {
	font-weight: 700;
	margin-bottom: 10px;
}

.kimlik-hero p {
	max-width: 650px;
	margin: 0 auto 20px;
	opacity: 0.9;
}

.hub-title {
	font-weight: 700;
	margin: 50px 0 20px;
	padding-left: 12px;
	border-left: 3px solid #111;
}

.hub-col {
	display: flex;
}

.hub-card {
	background: #fff;
	border-radius: 14px;
	padding: 26px 22px;
	width: 100%;
	height: 100%;
	text-align: center;
	text-decoration: none!important;
	color: #111;
	border: 1px solid #eee;
	box-shadow: 0 8px 24px rgba(0,0,0,0.05);
	display: flex;
	flex-direction: column;
	transition: all 0.25s ease;
}

.hub-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 32px rgba(0,0,0,0.08);
	border-color: #ddd;
}

.hub-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: #f4f6f9;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease;
}

.hub-card:hover .hub-icon {
	transform: scale(1.1);
}

.hub-icon i {
	font-size: 22px;
	color: #0d6efd;
}

.hub-card h4 {
	font-size: 16px;
	font-weight: 700;
	margin: 6px 0 8px;
	min-height: 48px; /* başlık hizalama */
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hub-card p {
	font-size: 13px;
	color: #666;
	flex-grow: 1;
	margin-bottom: 15px;
}

.hub-actions {
	display: flex;
	gap: 8px;
}

.hub-actions .btn {
	flex: 1;
	font-size: 12px;
}

.btn-video {
	background: #6f8fc8;
	color: #fff;
	border: none;
}

.btn-video:hover {
	background: #5a7ec0;
	color: #fff;
}

@media (max-width: 767px) {

	.kimlik-hero {
		padding: 35px 20px;
	}

	.hub-card {
		padding: 20px;
	}

	.hub-actions {
		flex-direction: column;
	}
}

.row.equal-row {
	display: flex;
	flex-wrap: wrap;
}

.row.equal-row > [class*="col-"] {
	display: flex;
}

.row.equal-row .hub-card {
	height: 100%;
	display: flex;
	flex-direction: column;
}