/**
 * Shared aarti page styles (10-aarti package layout).
 */

.hb-aarti-page {
	--hb-aarti-accent: #f97316;
	--hb-aarti-deep: #8b1e1e;
	--hb-aarti-ink: #2f2118;
	--hb-aarti-muted: #715b4d;
	--hb-aarti-line: #efd3aa;
	--hb-aarti-shadow: 0 16px 42px rgba(84, 47, 14, 0.11);
	color: var(--hb-aarti-ink);
	line-height: 1.72;
	background:
		radial-gradient(circle at 8% 3%, rgba(245, 158, 11, 0.12), transparent 24%),
		linear-gradient(180deg, #fffdf8, #fff8eb);
}

.hb-aarti-page a { text-decoration: none; color: inherit; }
.hb-aarti-page section { padding: 67px 0; }

.hb-aarti-grid { display: grid; gap: 20px; }
.hb-aarti-card {
	background: rgba(255, 255, 255, 0.93);
	border: 1px solid var(--hb-aarti-line);
	border-radius: 22px;
	box-shadow: var(--hb-aarti-shadow);
}

.hb-aarti-section-title { text-align: center; margin-bottom: 33px; }
.hb-aarti-section-title > span {
	color: var(--hb-aarti-accent);
	font-weight: 800;
}
.hb-aarti-section-title h2 {
	font-size: clamp(29px, 4vw, 42px);
	line-height: 1.25;
	color: var(--hb-aarti-deep);
	margin: 5px 0 8px;
}
.hb-aarti-section-title h2::after { display: none; }
.hb-aarti-section-title p {
	max-width: 760px;
	margin: auto;
	color: var(--hb-aarti-muted);
}

/* Hero */
.hb-aarti-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(115deg, rgba(255, 250, 240, 0.99), rgba(255, 250, 240, 0.9) 58%, rgba(245, 158, 11, 0.17));
	border-bottom: 1px solid var(--hb-aarti-line);
	padding: 0;
}
.hb-aarti-hero::before {
	content: "";
	position: absolute;
	width: 440px;
	height: 440px;
	border-radius: 50%;
	right: 5%;
	top: 30px;
	background: repeating-radial-gradient(circle, rgba(229, 107, 18, 0.23) 0 2px, transparent 2px 16px);
}
.hb-aarti-hero-icon {
	position: absolute;
	right: 13%;
	top: 110px;
	font-size: 175px;
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.16));
	line-height: 1;
}
.hb-aarti-hero-inner {
	min-height: 510px;
	display: flex;
	align-items: center;
	padding: 70px 0;
}
.hb-aarti-hero-copy { max-width: 680px; position: relative; z-index: 3; }
.hb-aarti-tag {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	background: #fff2d9;
	border: 1px solid #efca8d;
	color: var(--hb-aarti-accent);
	font-weight: 800;
	border-radius: 999px;
	padding: 7px 14px;
}
.hb-aarti-hero h1 {
	font-size: clamp(48px, 7vw, 82px);
	line-height: 1.08;
	color: var(--hb-aarti-deep);
	margin: 14px 0 6px;
}
.hb-aarti-hero h2 {
	font-size: clamp(22px, 3vw, 35px);
	margin: 0 0 17px;
	color: var(--hb-aarti-ink);
}
.hb-aarti-hero p { font-size: 18px; }
.hb-aarti-hero-mantra {
	margin-top: 22px;
	padding: 16px 18px;
	background: rgba(255, 255, 255, 0.82);
	border-left: 4px solid var(--hb-aarti-accent);
	border-radius: 0 12px 12px 0;
	color: var(--hb-aarti-deep);
	font-size: 20px;
	font-weight: 800;
	max-width: 590px;
}
.hb-aarti-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hb-aarti-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 11px;
	padding: 13px 21px;
	font-weight: 800;
	transition: 0.2s;
}
.hb-aarti-btn:hover { transform: translateY(-2px); }
.hb-aarti-btn-primary {
	color: #fff;
	background: linear-gradient(135deg, var(--hb-aarti-deep), var(--hb-aarti-accent));
	box-shadow: 0 12px 25px rgba(139, 30, 30, 0.2);
}
.hb-aarti-btn-light {
	background: #fff;
	border: 1px solid var(--hb-aarti-line);
	color: var(--hb-aarti-deep);
}

/* Facts */
.hb-aarti-facts-wrap { position: relative; z-index: 4; margin-top: -42px; }
.hb-aarti-facts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #fff;
	border: 1px solid var(--hb-aarti-line);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--hb-aarti-shadow);
}
.hb-aarti-fact {
	text-align: center;
	padding: 20px 13px;
	border-right: 1px solid #f2dfbf;
}
.hb-aarti-fact:last-child { border-right: 0; }
.hb-aarti-fact span { font-size: 27px; }
.hb-aarti-fact strong { display: block; color: var(--hb-aarti-deep); }
.hb-aarti-fact small { color: var(--hb-aarti-muted); }

/* Lyrics + sidebar */
.hb-aarti-layout {
	grid-template-columns: 1.2fr 0.8fr;
	align-items: start;
}
.hb-aarti-lyrics-card { padding: 31px; }
.hb-aarti-lyrics-card h2 {
	color: var(--hb-aarti-deep);
	font-size: 31px;
	margin: 0 0 18px;
}
.hb-aarti-lyrics-card h2::after { display: none; }
.hb-aarti-lyrics {
	padding: 25px;
	border-radius: 16px;
	background: linear-gradient(180deg, #fff9ed, #fff3dd);
	border: 1px solid #efd1a1;
	font-size: 20px;
	line-height: 2.02;
	text-align: center;
	color: #3d2115;
}
.hb-aarti-lyrics p { margin: 0; }
.hb-aarti-lyrics-break { height: 18px; }

.hb-aarti-sidebar {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 100px;
}
.hb-aarti-info-card { padding: 24px; }
.hb-aarti-info-card h3 {
	margin: 0 0 13px;
	color: var(--hb-aarti-deep);
}
.hb-aarti-info-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.hb-aarti-info-list li {
	display: flex;
	gap: 11px;
	padding: 10px 0;
	border-bottom: 1px dashed #ead4b4;
}
.hb-aarti-info-list li:last-child { border-bottom: 0; }
.hb-aarti-info-list span { font-size: 21px; }
.hb-aarti-share-row {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}
.hb-aarti-share-row button,
.hb-aarti-share-row a {
	padding: 9px 13px;
	background: #fff5e2;
	border: 1px solid var(--hb-aarti-line);
	border-radius: 9px;
	font-weight: 800;
	color: var(--hb-aarti-deep);
	cursor: pointer;
	font: inherit;
}

/* Meaning / steps / quote / faq / related */
.hb-aarti-meaning { padding: 31px; }
.hb-aarti-meaning h3 {
	font-size: 28px;
	color: var(--hb-aarti-deep);
	margin: 0 0 12px;
}
.hb-aarti-meaning p {
	font-size: 18px;
	color: var(--hb-aarti-muted);
}

.hb-aarti-steps { grid-template-columns: repeat(3, 1fr); }
.hb-aarti-step { padding: 24px; text-align: center; }
.hb-aarti-step-no {
	width: 50px;
	height: 50px;
	margin: 0 auto 12px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	font-weight: 900;
	background: linear-gradient(135deg, var(--hb-aarti-accent), var(--hb-aarti-deep));
}
.hb-aarti-step h3 { color: var(--hb-aarti-deep); margin: 0 0 7px; }
.hb-aarti-step p { color: var(--hb-aarti-muted); margin: 0; }
.hb-aarti-note {
	margin-top: 18px;
	padding: 17px 19px;
	background: #fff4dc;
	border: 1px solid #efc87f;
	border-radius: 13px;
	color: #67431f;
}

.hb-aarti-quote {
	color: #fff;
	text-align: center;
	padding: 34px;
	border-radius: 20px;
	background:
		radial-gradient(circle at 10% 50%, rgba(255, 193, 7, 0.28), transparent 27%),
		linear-gradient(135deg, var(--hb-aarti-deep), var(--hb-aarti-accent), var(--hb-aarti-deep));
	box-shadow: 0 18px 44px rgba(80, 20, 10, 0.22);
}
.hb-aarti-quote h2 { margin: 0 0 10px; color: #fff; }
.hb-aarti-quote h2::after { display: none; }
.hb-aarti-quote blockquote {
	font-size: 23px;
	font-weight: 800;
	max-width: 900px;
	margin: 10px auto;
}
.hb-aarti-quote p {
	max-width: 850px;
	margin: 8px auto 0;
	color: #ffe5d8;
}

.hb-aarti-faq { max-width: 900px; margin: auto; }
.hb-aarti-faq details {
	background: #fff;
	border: 1px solid var(--hb-aarti-line);
	border-radius: 12px;
	padding: 0 17px;
	margin-bottom: 11px;
}
.hb-aarti-faq summary {
	padding: 15px 0;
	cursor: pointer;
	font-weight: 800;
	color: var(--hb-aarti-deep);
}
.hb-aarti-faq details p {
	color: var(--hb-aarti-muted);
	margin: 0;
	padding: 0 0 16px;
}

.hb-aarti-related { grid-template-columns: repeat(4, 1fr); }
.hb-aarti-related-card {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 18px;
	transition: 0.2s;
}
.hb-aarti-related-card:hover {
	transform: translateY(-3px);
	border-color: var(--hb-aarti-accent);
}
.hb-aarti-related-card > span { font-size: 28px; }
.hb-aarti-related-card strong { display: block; color: var(--hb-aarti-deep); }
.hb-aarti-related-card small { color: var(--hb-aarti-muted); }

@media (max-width: 1000px) {
	.hb-aarti-hero-icon { opacity: 0.18; right: 4%; }
	.hb-aarti-facts { grid-template-columns: repeat(2, 1fr); }
	.hb-aarti-layout { grid-template-columns: 1fr; }
	.hb-aarti-sidebar {
		position: relative;
		top: auto;
		grid-template-columns: repeat(2, 1fr);
	}
	.hb-aarti-steps { grid-template-columns: repeat(2, 1fr); }
	.hb-aarti-related { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
	.hb-aarti-page section { padding: 52px 0; }
	.hb-aarti-hero-inner { min-height: 560px; padding: 54px 0; }
	.hb-aarti-hero-icon { font-size: 120px; top: 190px; }
	.hb-aarti-hero h1 { font-size: 50px; }
	.hb-aarti-facts-wrap { margin-top: -23px; }
	.hb-aarti-facts { grid-template-columns: 1fr 1fr; }
	.hb-aarti-fact:nth-child(even) { border-right: 0; }
	.hb-aarti-sidebar,
	.hb-aarti-steps,
	.hb-aarti-related { grid-template-columns: 1fr; }
	.hb-aarti-lyrics-card { padding: 20px; }
	.hb-aarti-lyrics { padding: 18px 12px; font-size: 18px; }
	.hb-aarti-quote { padding: 25px 18px; }
	.hb-aarti-quote blockquote { font-size: 19px; }
}

/* ---- Archive index (10 featured aartis) ---- */
.hb-aarti-archive {
	background:
		radial-gradient(circle at 8% 3%, rgba(245, 158, 11, 0.12), transparent 24%),
		linear-gradient(180deg, #fffdf8, #fff8eb);
	color: #2f2118;
}
.hb-aarti-archive-hero { padding: 66px 0 34px; }
.hb-aarti-archive-title {
	font-size: clamp(38px, 5vw, 65px);
	line-height: 1.1;
	margin: 0;
	color: #21140c;
}
.hb-aarti-archive-title span { color: #8b1e1e; }
.hb-aarti-archive-intro {
	max-width: 760px;
	color: #715b4d;
	font-size: 18px;
	margin: 12px 0 0;
}
.hb-aarti-archive-section { padding: 10px 0 75px; }
.hb-aarti-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.hb-aarti-archive-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid #f2dfc0;
	border-radius: 21px;
	box-shadow: 0 16px 42px rgba(84, 47, 14, 0.11);
	transition: 0.25s;
}
.hb-aarti-archive-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 48px rgba(84, 47, 14, 0.16);
}
.hb-aarti-archive-card > a { display: block; color: inherit; text-decoration: none; }
.hb-aarti-archive-art {
	height: 270px;
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
}
.hb-aarti-archive-art::before {
	content: "";
	position: absolute;
	inset: -35%;
	background: repeating-radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 18px);
}
.hb-aarti-archive-art::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(55, 15, 5, 0.52));
}
.hb-aarti-archive-icon {
	position: relative;
	z-index: 2;
	font-size: 100px;
	filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.23));
	line-height: 1;
}
.hb-aarti-archive-body { padding: 26px; }
.hb-aarti-archive-badge {
	display: inline-block;
	background: #fff2dc;
	color: #f97316;
	font-weight: 800;
	border-radius: 999px;
	padding: 6px 14px;
	margin-bottom: 12px;
}
.hb-aarti-archive-deity {
	display: block;
	color: #d4a20a;
	font-weight: 800;
	margin-bottom: 4px;
}
.hb-aarti-archive-body h2 {
	margin: 0 0 9px;
	font-size: 25px;
	color: #2f2118;
}
.hb-aarti-archive-body p {
	color: #715b4d;
	margin: 0 0 17px;
}
.hb-aarti-archive-more {
	color: #f97316;
	font-weight: 800;
}
.hb-aarti-archive-section-head {
	text-align: center;
	margin-bottom: 28px;
}
.hb-aarti-archive-section-head span {
	color: #f97316;
	font-weight: 800;
}
.hb-aarti-archive-section-head h2 {
	margin: 6px 0 0;
	color: #8b1e1e;
	font-size: clamp(28px, 4vw, 40px);
}
.hb-aarti-archive-other { padding-top: 0; }

@media (max-width: 1000px) {
	.hb-aarti-archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
	.hb-aarti-archive-hero { padding-top: 45px; }
	.hb-aarti-archive-grid { grid-template-columns: 1fr; gap: 22px; }
	.hb-aarti-archive-art { height: 230px; }
	.hb-aarti-archive-icon { font-size: 84px; }
}
