/* West Ham Books */

.books-page {
	padding: 10px 0 30px;
}

.books-heading {
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #122241;
	margin: 0 0 4px;
}

.books-heading .icon {
	color: #7a003c;
	margin-right: 6px;
}

.books-intro {
	font-size: 13px;
	color: #777;
	margin: 0 0 20px;
}

/* Category */
.books-cat {
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #7a003c;
	border-bottom: 2px solid #7a003c;
	padding-bottom: 5px;
	margin: 24px 0 12px;
}

/* Grid: 4 cols desktop, 3 medium, 2 small, 1 mobile */
.books-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

/* Card */
.book-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none !important;
	color: inherit !important;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.book-card:hover {
	border-color: #7a003c;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Cover image */
.book-img {
	background: #f7f7f7;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 180px;
	padding: 14px;
}

.book-img img {
	max-height: 155px;
	max-width: 100%;
	object-fit: contain;
	border-radius: 2px;
}

.book-img-fallback {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 130px;
	background: linear-gradient(145deg, #122241, #7a003c);
	border-radius: 3px;
}

.book-img-fallback .icon {
	font-size: 32px;
	color: rgba(255, 255, 255, 0.5);
}

/* Text */
.book-meta {
	padding: 10px 12px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.book-title {
	font-size: 13px;
	color: #122241;
	line-height: 1.35;
	margin-bottom: 2px;
}

.book-author {
	font-size: 11px;
	color: #999;
	margin-bottom: 6px;
}

.book-desc {
	font-size: 11px;
	color: #666;
	line-height: 1.45;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Button */
.book-btn {
	display: block;
	text-align: center;
	background: #122241;
	color: #fff !important;
	font-size: 12px;
	font-weight: 700;
	padding: 8px;
	transition: background 0.15s;
}

.book-card:hover .book-btn {
	background: #7a003c;
}

/* Footer note */
.books-note {
	font-size: 11px;
	color: #aaa;
	margin-top: 24px;
}

/* Responsive */
@media (max-width: 1000px) {
	.books-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 700px) {
	.books-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.book-img {
		height: 150px;
	}

	.book-img img {
		max-height: 125px;
	}
}

@media (max-width: 420px) {
	.books-grid {
		grid-template-columns: 1fr;
	}
}
