/*
 * GRANTHA — ebook cards stylesheet.
 * Loads on every singular page (ebook cards can appear on any regular book
 * page, not only reader pages) — kept deliberately small. Structurally
 * unchanged from the previous grantha.css; only recolored to the theme's
 * brand tokens (green Read button instead of yellow/gold). Consumes the
 * theme's :root tokens via var() rather than redefining its own — if this
 * plugin is ever active without vedic-people-v3, these var() references
 * fall back to their fallback values below rather than breaking outright.
 */

.grantha-ebook-sections{margin-top:48px;}
.grantha-ebook-section{margin-bottom:40px;}

.grantha-ebook-section-title{
	font-size:22px; font-weight:700; color:inherit; margin:0 0 20px; padding:0;
	border-bottom:2px solid var(--line, rgba(0,0,0,0.08)); padding-bottom:10px; line-height:1.3;
}

.grantha-ebook-grid{display:grid; grid-template-columns:repeat(auto-fill, minmax(260px, 1fr)); gap:20px;}

.grantha-ebook-card{
	display:flex; flex-direction:column; background:var(--surface, #fff);
	border:1px solid var(--line, rgba(0,0,0,0.125)); border-radius:var(--radius-md, 8px);
	box-shadow:var(--shadow-card, 0 2px 6px rgba(0,0,0,0.08)); overflow:hidden;
}

.grantha-ebook-card-body{flex:1; padding:20px 20px 16px;}

.grantha-ebook-card-title{
	font-size:18px !important; font-weight:600 !important; color:var(--ink, #1a1008) !important;
	margin:0 0 8px !important; line-height:1.35 !important; border:none !important; padding:0 !important;
}

.grantha-ebook-card-subtitle{font-size:14px; color:var(--ink-soft, #666); margin:0; line-height:1.5;}
.grantha-ebook-card-eng-label{font-size:12px; color:var(--ink-faint, #999); margin:4px 0 0; font-style:italic; line-height:1.4;}

.grantha-ebook-card-footer{padding:12px 20px; border-top:1px solid var(--line, rgba(0,0,0,0.08)); display:flex; justify-content:flex-end;}

.grantha-ebook-card--tel .grantha-ebook-card-title{font-family:var(--font-te, 'Mallanna', sans-serif) !important;}
.grantha-ebook-card--hin .grantha-ebook-card-title{font-family:var(--font-hi, 'Martel', serif) !important;}

.grantha-ebook-read-btn{
	display:inline-flex; align-items:center; padding:7px 20px;
	background:var(--green, #10673D); color:var(--role-primary-color, #F3FBF6) !important;
	border-radius:999px; font-size:16px; font-weight:500; font-family:var(--font-ui, 'Adobe Clean', sans-serif);
	text-decoration:none !important; white-space:nowrap; border:1px solid var(--green, #10673D) !important; cursor:pointer;
}
.grantha-ebook-read-btn:hover{
	background:var(--green-deep, #0B4A2C) !important; border-color:var(--green-deep, #0B4A2C) !important;
	color:var(--role-primary-color, #F3FBF6) !important; text-decoration:none !important;
}

@media (max-width: 480px){
	.grantha-ebook-grid{grid-template-columns:1fr;}
}
