/**
 * Spiritual Theme Customization
 * Saffron/Orange color scheme for Hindu spiritual website
 */

/* CSS Variables */
:root {
	--color-saffron: #FF6600;
	--color-dark-orange: #E65C00;
	--color-light-orange: #FFF3E0;
	--color-text-dark: #333333;
	--color-text-light: #666666;
	--color-border: #E0E0E0;
}

/* Global Link Colors */
a {
	color: var(--color-saffron);
}

a:hover,
a:focus {
	color: var(--color-dark-orange);
}

/* Button Styling */
button,
input[type="button"],
input[type="submit"],
.button {
	background-color: var(--color-saffron);
	border-color: var(--color-saffron);
}

button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.button:hover,
.button:focus {
	background-color: var(--color-dark-orange);
	border-color: var(--color-dark-orange);
}

/* Widget Styling */
.sidebar .widget-title,
.footer-widgets .widget-title {
	color: var(--color-saffron);
	border-bottom: 2px solid var(--color-saffron);
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
}

.sidebar .widget ul > li a {
	color: var(--color-text-dark);
	transition: color 0.2s ease;
}

.sidebar .widget ul > li a:hover {
	color: var(--color-saffron);
}

/* Recent Posts Widget - Bullet List */
.homepage-sidebar .widget_recent_entries ul,
.sidebar .widget_recent_entries ul {
	list-style: none;
	padding: 0;
}

.homepage-sidebar .widget_recent_entries li,
.sidebar .widget_recent_entries li {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
	position: relative;
}

.homepage-sidebar .widget_recent_entries li::before,
.sidebar .widget_recent_entries li::before {
	content: "•";
	color: var(--color-saffron);
	font-size: 1.5rem;
	position: absolute;
	left: 0;
	top: -0.2rem;
}

/* Sthotra Cards */
.sthotra-card {
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	border: 1px solid var(--color-border);
}

.sthotra-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(255, 102, 0, 0.15);
}

.sthotra-card h3 {
	transition: color 0.2s ease;
}

.sthotra-card:hover h3 {
	color: var(--color-saffron);
}

/* Deity Cards */
.deity-card {
	border: 1px solid var(--color-border);
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.deity-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 102, 0, 0.1);
}

/* Deity Section Headings */
.deity-section-heading {
	color: var(--color-saffron);
	border-bottom: 3px solid var(--color-saffron);
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
}

/* Deity Terms/Tags */
.deity-terms a {
	background-color: var(--color-light-orange);
	color: var(--color-dark-orange);
	transition: background-color 0.2s ease;
}

.deity-terms a:hover {
	background-color: var(--color-saffron);
	color: #FFFFFF;
}

/* Breadcrumbs */
.breadcrumb {
	border-bottom-color: var(--color-border);
}

.breadcrumb a {
	color: var(--color-text-light);
}

.breadcrumb a:hover {
	color: var(--color-saffron);
}

/* Entry Title */
.entry-title a {
	color: var(--color-text-dark);
}

.entry-title a:hover,
.entry-title a:focus {
	color: var(--color-saffron);
}

/* Archive Pagination */
.archive-pagination li a {
	border: 1px solid var(--color-border);
}

.archive-pagination li a:hover,
.archive-pagination li a:focus,
.archive-pagination li.active a {
	background-color: var(--color-saffron);
	color: #FFFFFF;
	border-color: var(--color-saffron);
}

/* Search Form */
.search-form input[type="submit"] {
	background-color: var(--color-saffron);
}

.search-form input[type="submit"]:hover,
.search-form input[type="submit"]:focus {
	background-color: var(--color-dark-orange);
}

/* Homepage Specific Styles */
.sthotras-homepage .site-inner {
	max-width: 1200px;
}

.sthotras-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

/* Deity Section Spacing */
.deity-section {
	margin-bottom: 4rem;
}

.deity-section:last-child {
	margin-bottom: 2rem;
}

/* Sidebar Styling */
.sidebar {
	padding: 1.5rem;
	background-color: #FAFAFA;
	border-radius: 8px;
}

/* Homepage Widget Card Styling */
.homepage-column .widget {
	background-color: #FFFFFF;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.homepage-column .widget:hover {
	box-shadow: 0 4px 16px rgba(255, 102, 0, 0.15);
	transform: translateY(-2px);
}

.homepage-column .widget:last-child {
	margin-bottom: 0;
}

/* Widget Title Styling for Homepage */
.homepage-column .widget-title {
	color: var(--color-saffron);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--color-saffron);
}

/* Deity Sthotras Widget Specific Styling */
.deity-sthotras-widget-content .sthotras-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.deity-sthotras-widget-content .sthotra-item {
	position: relative;
	padding-left: 1.25rem;
	margin-bottom: 0.75rem;
}

.deity-sthotras-widget-content .sthotra-item .bullet {
	position: absolute;
	left: 0;
	color: var(--color-saffron);
	font-weight: bold;
	font-size: 1.2rem;
	line-height: 1.2;
}

.deity-sthotras-widget-content .sthotra-item a {
	color: var(--color-text-dark);
	text-decoration: none;
	transition: color 0.2s ease;
	display: inline-block;
	line-height: 1.4;
}

.deity-sthotras-widget-content .sthotra-item a:hover {
	color: var(--color-saffron);
}

.deity-sthotras-widget-content .view-all-link {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #E0E0E0;
}

.deity-sthotras-widget-content .view-all-link a {
	color: var(--color-saffron);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
	transition: color 0.2s ease;
}

.deity-sthotras-widget-content .view-all-link a:hover {
	color: var(--color-dark-orange);
}

/* Recent Posts Widget Styling for Homepage */
.homepage-column .widget_recent_entries ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.homepage-column .widget_recent_entries li {
	position: relative;
	padding-left: 1.25rem;
	margin-bottom: 0.75rem;
}

.homepage-column .widget_recent_entries li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--color-saffron);
	font-weight: bold;
	font-size: 1.2rem;
	line-height: 1.2;
}

.homepage-column .widget_recent_entries li a {
	color: var(--color-text-dark);
	text-decoration: none;
	transition: color 0.2s ease;
	display: inline-block;
	line-height: 1.4;
}

.homepage-column .widget_recent_entries li a:hover {
	color: var(--color-saffron);
}

.homepage-column .widget_recent_entries li .post-date {
	display: block;
	font-size: 0.75rem;
	color: var(--color-text-light);
	margin-top: 0.25rem;
}

/* 3-Column Homepage Layout */
.three-column-homepage .homepage-sections-container {
	max-width: 96%;
	width: 96%;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.three-column-homepage .site-inner {
	max-width: 100% !important;
}

.three-column-homepage #genesis-content {
	width: 100% !important;
	max-width: 100% !important;
}

@media only screen and (max-width: 768px) {
	.three-column-homepage .homepage-sections-container {
		padding: 1rem 0.5rem;
	}
}

/* Main homepage grid: Deities section + Articles section */
.three-column-homepage .homepage-main-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: start;
}

/* Tablet and up: Side-by-side layout */
@media only screen and (min-width: 1024px) {
	.three-column-homepage .homepage-main-grid {
		grid-template-columns: 3fr 1fr;
		gap: 2rem;
	}
}

/* Deities grid section - nested grid for deity cards */
.deities-grid-section .deities-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

/* Tablet: 2 columns for deities */
@media only screen and (min-width: 768px) {
	.deities-grid-section .deities-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Desktop: 3 columns for deities */
@media only screen and (min-width: 1024px) {
	.deities-grid-section .deities-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Very large screens: better spacing */
@media only screen and (min-width: 1400px) {
	.deities-grid-section .deities-grid {
		gap: 1.5rem;
	}
}

/* Articles section */
.articles-section {
	display: flex;
	flex-direction: column;
}

/* Deity Section Card Styling */
.deity-section-card {
	background-color: #FFFFFF;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 1.5rem;
	margin-bottom: 1rem;
	transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.deity-section-card:hover {
	box-shadow: 0 4px 16px rgba(255, 102, 0, 0.15);
	transform: translateY(-2px);
}

.deity-section-card h3 {
	color: #FFFFFF;
	background-color: var(--color-saffron);
	font-size: 1.25rem;
	font-weight: 600;
	margin: -1.5rem -1.5rem 1rem -1.5rem;
	padding: 1rem 1.5rem;
	border-radius: 8px 8px 0 0;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.deity-section-card h3::before,
.deity-section-card h3::after {
	content: "ॐ";
	font-size: 1rem;
	opacity: 0.9;
}

.deity-section-card .sthotras-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.deity-section-card .sthotra-item {
	position: relative;
	padding-left: 1.25rem;
	margin-bottom: 0.5rem;
}

.deity-section-card .sthotra-item .bullet {
	position: absolute;
	left: 0;
	color: var(--color-saffron);
	font-weight: bold;
	font-size: 1.125rem;
	line-height: 1.2;
}

.deity-section-card .sthotra-item a {
	color: var(--color-text-dark);
	text-decoration: none;
	transition: color 0.2s ease;
	font-size: 0.875rem;
	line-height: 1.4;
}

.deity-section-card .sthotra-item a:hover {
	color: var(--color-saffron);
}

.deity-section-card .view-all-link {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #E0E0E0;
}

.deity-section-card .view-all-link a {
	color: var(--color-saffron);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.875rem;
	transition: color 0.2s ease;
}

.deity-section-card .view-all-link a:hover {
	color: var(--color-dark-orange);
}

/* Latest Posts Card Styling - Distinct from Deity Cards */
.latest-posts-card {
	background: linear-gradient(135deg, #FFF9F5 0%, #FFFFFF 100%);
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border: 2px solid #FFE0CC;
	padding: 1.5rem;
	margin-bottom: 1rem;
	transition: box-shadow 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.latest-posts-card:hover {
	box-shadow: 0 6px 20px rgba(255, 102, 0, 0.2);
	transform: translateY(-2px);
	border-color: #FFB74D;
}

.latest-posts-card h3 {
	color: var(--color-saffron);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--color-saffron);
	text-align: center;
}

.latest-posts-card .posts-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.latest-posts-card .post-item {
	position: relative;
	padding-left: 1.25rem;
	margin-bottom: 0.5rem;
}

.latest-posts-card .post-item .bullet {
	position: absolute;
	left: 0;
	color: var(--color-saffron);
	font-weight: bold;
	font-size: 1.125rem;
	line-height: 1.2;
}

.latest-posts-card .post-item a {
	color: var(--color-text-dark);
	text-decoration: none;
	transition: color 0.2s ease;
	font-size: 0.875rem;
	line-height: 1.4;
}

.latest-posts-card .post-item a:hover {
	color: var(--color-saffron);
}

.latest-posts-card .view-all-link {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #E0E0E0;
}

.latest-posts-card .view-all-link a {
	color: var(--color-saffron);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.875rem;
	transition: color 0.2s ease;
}

.latest-posts-card .view-all-link a:hover {
	color: var(--color-dark-orange);
}

/* Widget Placeholder Styling */
.widget-placeholder {
	background-color: #FFF3E0;
	border: 2px dashed #FFB74D;
	border-radius: 8px;
	padding: 2rem;
	text-align: center;
}

.widget-placeholder p {
	margin: 0 0 0.5rem 0;
	color: var(--color-text-light);
}

.widget-placeholder a {
	color: var(--color-saffron);
	text-decoration: none;
	font-weight: 500;
}

.widget-placeholder a:hover {
	color: var(--color-dark-orange);
}

/* Deity Archive Page Styles */
.deity-archive .deity-archive-header {
	margin-bottom: 3rem;
}

.deity-archive .deity-archive-title {
	font-size: 3rem;
	font-weight: 700;
	color: var(--color-saffron);
	margin: 0;
	padding: 2rem 0;
	position: relative;
	display: inline-block;
}

.deity-archive .deity-archive-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--color-saffron), transparent);
}

/* Sthotras Archive Page Styles */
.sthotras-archive .sthotras-archive-header {
	margin-bottom: 3rem;
}

.sthotras-archive .sthotras-archive-title {
	font-size: 3rem;
	font-weight: 700;
	color: var(--color-saffron);
	margin: 0;
	padding: 2rem 0;
	position: relative;
	display: inline-block;
}

.sthotras-archive .sthotras-archive-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--color-saffron), transparent);
}

/* Sthotras List */
.sthotras-list {
	max-width: 800px;
	margin: 0 auto;
}

.sthotras-archive .no-sthotras {
	text-align: center;
	padding: 3rem 1rem;
	color: var(--color-text-light);
	font-size: 1.125rem;
}

/* Deity Filter Dropdown */
.deity-filter {
	max-width: 800px;
	margin: 0 auto 2rem auto;
}

.deity-filter label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--color-text-dark);
	font-weight: 600;
}

.deity-filter select {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid #E0E0E0;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.2s ease;
}

.deity-filter select:focus {
	outline: none;
	border-color: var(--color-saffron);
}

@media only screen and (min-width: 768px) {
	.deity-filter select {
		width: auto;
		min-width: 300px;
	}
}

/* Sthotras Title List */
.deity-sthotras-list {
	max-width: 800px;
	margin: 0 auto;
}

.sthotras-title-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sthotra-title-item {
	margin-bottom: 1rem;
	padding-left: 2rem;
	position: relative;
}

.sthotra-title-item::before {
	content: "॥";
	position: absolute;
	left: 0;
	color: var(--color-saffron);
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.5;
}

.sthotra-title-link {
	color: var(--color-text-dark);
	text-decoration: none;
	font-size: 1.125rem;
	line-height: 1.6;
	transition: color 0.2s ease, padding-left 0.2s ease;
	display: inline-block;
}

.sthotra-title-link:hover {
	color: var(--color-saffron);
	padding-left: 0.5rem;
}

.deity-archive .no-sthotras {
	text-align: center;
	padding: 3rem 1rem;
	color: var(--color-text-light);
	font-size: 1.125rem;
}

/* Responsive adjustments for deity archive */
@media only screen and (max-width: 768px) {
	.deity-archive .deity-archive-title {
		font-size: 2rem;
		padding: 1rem 0;
	}

	.sthotra-title-link {
		font-size: 1rem;
	}
}

/* Single Sthotra Page Styles */

/* Breadcrumbs */
.single-sthotra .breadcrumb {
	margin-bottom: 2rem;
	padding: 1rem 0;
	font-size: 0.875rem;
	color: var(--color-text-light);
}

.single-sthotra .breadcrumb a {
	color: var(--color-saffron);
	text-decoration: none;
	transition: color 0.2s ease;
}

.single-sthotra .breadcrumb a:hover {
	color: var(--color-dark-orange);
	text-decoration: underline;
}

/* Improved Deity Tags/Chips */
.deity-terms {
	margin-bottom: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.deity-terms a {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, #FFE0CC 0%, #FFCCB3 100%);
	color: var(--color-dark-orange);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #FFB74D;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(255, 102, 0, 0.1);
}

.deity-terms a:hover {
	background: var(--color-saffron);
	color: #FFFFFF;
	border-color: var(--color-saffron);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(255, 102, 0, 0.2);
}

/* Sthotra Tags - Footer (Small) */
.single-sthotra .sthotra-tags-footer,
.single-post .post-tags-footer {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid #E0E0E0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
	align-items: center;
}

.single-sthotra .sthotra-tags-footer .tags-label,
.single-post .post-tags-footer .tags-label {
	font-size: 0.75rem;
	font-weight: 600;
	color: #999999 !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-right: 0.5rem;
}

.single-sthotra .sthotra-tags-footer .sthotra-tag-link,
.single-post .post-tags-footer .post-tag-link {
	display: inline-flex !important;
	align-items: center;
	background: #F5F5F5 !important;
	color: #666666 !important;
	padding: 0.25rem 0.625rem !important;
	border-radius: 50px !important;
	font-size: 0.75rem !important;
	font-weight: 500 !important;
	text-decoration: none !important;
	border: 1px solid #E0E0E0 !important;
	transition: all 0.2s ease;
	margin-right: 0.375rem;
}

.single-sthotra .sthotra-tags-footer .sthotra-tag-link:hover,
.single-post .post-tags-footer .post-tag-link:hover {
	background: #E0E0E0 !important;
	color: #333333 !important;
	border-color: #CCCCCC !important;
}

/* Print Button - Small */
.sthotra-actions {
	margin-bottom: 1rem;
	margin-top: 0.5rem;
}

.sthotra-print-button {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	background-color: var(--color-saffron);
	color: #FFFFFF;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 1px 3px rgba(255, 102, 0, 0.2);
}

.sthotra-print-button:hover {
	background-color: var(--color-dark-orange);
	transform: translateY(-1px);
	box-shadow: 0 2px 6px rgba(255, 102, 0, 0.3);
}

.sthotra-print-button:active {
	transform: translateY(0);
}

.sthotra-print-button svg {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

/* Single Sthotra Entry Title */
.single-sthotra .entry-title {
	color: var(--color-saffron);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

/* Hide empty entry-meta in sthotra and blog posts */
.single-sthotra .entry-footer .entry-meta:empty,
.single-sthotra .entry-meta:empty,
.single-post .entry-footer .entry-meta:empty,
.single-post .entry-meta:empty {
	display: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Related Sthotras - Simple List */
.related-sthotras {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 2px solid #E0E0E0;
}

.related-sthotras-title {
	color: var(--color-saffron);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.related-sthotras-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

@media only screen and (min-width: 768px) {
	.related-sthotras-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem 1.5rem;
	}
}

.related-sthotra-item {
	position: relative;
	padding-left: 1.5rem;
}

.related-sthotra-item::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--color-saffron);
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1.4;
}

.related-sthotra-item a {
	color: var(--color-text-dark);
	text-decoration: none;
	font-size: 1rem;
	line-height: 1.5;
	transition: color 0.2s ease;
}

.related-sthotra-item a:hover {
	color: var(--color-saffron);
}

.view-all-deity-link {
	margin-top: 1.5rem;
	text-align: center;
}

.view-all-deity-link a {
	display: inline-block;
	color: var(--color-saffron);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	padding: 0.75rem 1.5rem;
	border: 2px solid var(--color-saffron);
	border-radius: 8px;
	transition: all 0.3s ease;
}

.view-all-deity-link a:hover {
	background-color: var(--color-saffron);
	color: #FFFFFF;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(255, 102, 0, 0.2);
}

/* Print Styles for Sthotras */
@media print {
	/* Hide elements not needed in print */
	.sthotra-actions,
	.breadcrumb,
	.related-sthotras,
	.site-header,
	.nav-primary,
	.nav-secondary,
	.site-footer,
	button,
	nav {
		display: none !important;
	}

	/* Show only essential content */
	.entry-title {
		color: #000000;
		margin-bottom: 1rem;
	}

	.deity-terms {
		margin-bottom: 1rem;
	}

	.deity-terms a {
		color: #000000;
		background-color: transparent;
		border: 1px solid #666666;
		padding: 0.25rem 0.5rem;
		box-shadow: none;
	}

	.entry-content {
		font-size: 12pt;
		line-height: 1.6;
		color: #000000;
	}

	/* Page breaks */
	h1, h2, h3 {
		page-break-after: avoid;
	}

	p {
		orphans: 3;
		widows: 3;
	}
}

/* Responsive Adjustments */
@media only screen and (max-width: 768px) {
	.sthotras-grid {
		grid-template-columns: 1fr;
	}

	.deity-section {
		margin-bottom: 3rem;
	}

	.sidebar {
		margin-top: 2rem;
		padding: 1rem;
	}
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
	.sthotras-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
