/* BANNER ARTIK <a> TAG - TÜM ALAN TIKLANABİLİR */
.hakikatkitabevi {

	background: url("images/hakikatkitabevi_bg.jpg");
	background-size: cover;
	background-position: center;
	padding: 15px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	max-height: 140px;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 20px;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hakikatkitabevi:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.left-content {
	flex: 1;
	max-width: 500px;
	text-align: left;
}

.main-title {
	color: #8B0000;
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 1.2;
}

.description-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.number {
	color: #003366;
	font-size: 36px;
	font-weight: bold;
	line-height: 1;
}

.description {
	color: #003366;
	font-size: 13px;
	line-height: 1.3;
	flex: 1;
}

.bottom-info {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

/* CTA BUTTON ARTIK <span> - Sadece görsel, tıklama parent'a git */
.cta-button {
	background-color: #2c3e50;
	color: white;
	padding: 8px 20px;
	text-decoration: none;
	border-radius: 4px;
	font-size: 12px;
	font-weight: bold;
	display: inline-block;
	transition: background-color 0.3s;
	pointer-events: none;
}

.hakikatkitabevi:hover .cta-button {
	background-color: #1a252f;
}

.website {
	color: #2c3e50;
	font-size: 12px;
}

.images-container {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-shrink: 0;
}

.badge {
	width: 100px;
	height: 100px;
	flex-shrink: 0;
}

.badge img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.books-image {
	max-width: 150px;
	height: auto;
}

.books-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Tablet için */
@media (max-width: 968px) {
	.hakikatkitabevi {
		padding: 12px 20px;
		max-height: 120px;
	}

	.main-title {
		font-size: 18px;
	}

	.number {
		font-size: 30px;
	}

	.description {
		font-size: 12px;
	}

	.books-image {
		max-width: 160px;
	}

	.badge {
		width: 60px;
		height: 60px;
	}
}

/* Mobil için */
@media (max-width: 768px) {
	.hakikatkitabevi {
		padding: 12px 15px;
		gap: 15px;
		max-height: 120px;
	}

	.left-content {
		flex: 1;
		max-width: none;
		text-align: left;
	}

	.main-title {
		font-size: 16px;
		margin-bottom: 8px;
	}
	
	.description-wrapper {
		display: none;
	}
	
	.bottom-info {
		gap: 5px;
	}

	.cta-button {
		padding: 6px 16px;
		font-size: 11px;
	}

	.website {
		font-size: 11px;
	}

	.images-container {
		gap: 10px;
		flex-direction: row;
		justify-content: flex-end;
	}

	.badge {
		width: 80px;
		height: 80px;
	}

	.books-image {
		max-width: 120px;
	}
}

@media (max-width: 480px) {
	.hakikatkitabevi {
		padding: 10px 12px;
		gap: 5px;
		max-height: 110px;
	}

	.main-title {
		font-size: 14px;
		margin-bottom: 6px;
	}

	.cta-button {
		padding: 5px 14px;
		font-size: 10px;
	}
	
	.website {
		font-size: 10px;
	}

	.badge {
		width: 80px;
		height: 80px;
	}

	.books-image {
		max-width: 110px;
	}
}