body {
	font-family: 'Mukta Malar', sans-serif;
	margin: 0;
	padding: 2rem;
	background-color: #ffffff;
	color: #111;
}

p {
	font-family: 'Mukta Malar', sans-serif;
	margin-bottom: 1em;
	color: #000000;
}

/* CSS for icons */
.icon {
	width: 40px;
	/* fixed size, or use relative units like '2em' */
	height: auto;
	margin: 0 10px;
	/* spacing between icons */
	vertical-align: middle;
	/* align with text if needed */
	display: inline-block;
	/* Ensure proper inline display */
}


/* Override size for the specific icon */
#home-icon {
	width: 60px;
	/* or any size */
	/*  margin: 10px;       /* adds space outside the element */
	padding: 5px;
	/* adds space inside the element's border */
}


/* Headings with fluid sizes */
h2 {
	font-size: clamp(1.75rem, 4.5vw, 2.125rem);
	/* 28px to 34px */
	margin-top: 1.75em;
	margin-bottom: 0.5em;
	color: #838996;
	font-weight: 700;
}

h3 {
	font-size: clamp(1.5rem, 4vw, 1.875rem);
	/* 24px to 30px */
	margin-top: 1.5em;
	margin-bottom: 0.5em;
	color: #111;
	font-weight: 400;
}

h3.styled-border {
	border-top: 1px solid #c7c7c7;
	border-bottom: 1px solid #c7c7c7;
	padding: 0.5em 0;
}

.grid-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.book-card {
	display: grid;
	grid-template-columns: 70% 30%;
	border-radius: 0;
	background-color: #ffffff;
	overflow: hidden;
	font-size: 1rem;
	height: 100%;
	/* Allow internal items to expand evenly */
	min-height: 55px;
	/* ensures enough height for good vertical spacing */
	align-items: stretch;
	/* this ensures both columns stretch equally */
}

.book-card a {
	display: block;
	background-color: #ffffff;
	color: #000;
	padding: 8px;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
}

.book-card .short {
	background-color: #dcdcdc;
	color: #000000;
	font-weight: 600;
	display: flex;
	text-align: left;
	align-items: left;
	justify-content: center;
	padding: 8px;

}

/* full link column */
.book-link a.full {
	display: block;
	align-items: center;
	/* vertical center */
	justify-content: flex-start;
	/* left align text */
	background-color: #ffffff;
	color: #000;
	padding: 8px;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	height: 100%;
}

/* short link column */
.short-link {
	display: flex;
	align-items: stretch;
	/* allow anchor to stretch full height */
}

.short-link a.short {
	background-color: #EDEEED;
	color: #000;
	font-weight: 600;
	display: flex;
	align-items: center;
	/* vertical center */
	justify-content: center;
	/* horizontal center */
	text-decoration: none;

	width: 100%;
	height: 100%;
	padding: 0 8px;
	/* balanced internal spacing */
	line-height: 1.4;
	/* stable baseline alignment */
}

.button-container {
	text-align: center;
	margin: 30px auto;
	max-width: 600px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.bible-button {
	background-color: white;
	color: black;
	border: 1.5px solid #838996;
	border-radius: 12px;
	width: 50px;
	height: 50px;
	font-size: 22px;
	font-family: 'Mukta Malar', sans-serif;
	text-decoration: none !important;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.bible-button:hover {
	background-color: #EDEEED;
	color: black;
	border-color: #EDEEED;
}

@media (max-width: 768px) {
	.grid-container {
		grid-template-columns: 1fr;
	}
}