/* ============================================================
   HELPFUL LINKS / FEATURE CARDS SECTION — AstroJyot Vedic Astrology
   ============================================================ */

.ust-helpful-links {
	width: 100%;
	background-color: var(--astro-bg, #FCF9F4);
	padding: 1.5rem 1rem;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.ust-helpful-links {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
}

.ust-helpful-links-container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
}

/* Eyebrow */
.ust-helpful-links-eyebrow {
	display: block;
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #E06D2C;
	margin-bottom: 8px;
	text-align: center;
}

/* Heading */
.ust-helpful-links-title {
	font-family: var(--astro-font-serif, 'Cinzel', serif);
	font-size: 32px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--astro-heading, #1C1917);
	text-align: center;
	margin-top: 0;
	margin-bottom: 1rem;
	letter-spacing: -0.01em;
}

@media (min-width: 768px) {
	.ust-helpful-links-title {
		font-size: 40px;
		margin-bottom: 1.5rem;
	}
}

/* Cards Grid */
.ust-helpful-links-grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 340px));
	justify-content: center;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.ust-helpful-links-grid {
		grid-template-columns: repeat(2, minmax(0, 320px));
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.ust-helpful-links-grid {
		grid-template-columns: repeat(3, minmax(0, 340px));
		gap: 2rem;
	}
	
	.ust-helpful-links-grid.ust-helpful-links-grid-4-col {
		grid-template-columns: repeat(4, minmax(0, 280px));
		gap: 1.5rem;
	}
}

/* Card Link Item */
.ust-helpful-links-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	background: linear-gradient(180deg, #FFF9F3 0%, #FFF2E5 100%);
	border: 1px solid var(--astro-border, #F3E8DC);
	border-radius: 18px;
	padding: 2.5rem 1.75rem;
	box-sizing: border-box;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(224, 109, 44, 0.04);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ust-helpful-links-card:focus {
	outline: 2px solid var(--astro-primary, #E06D2C);
	outline-offset: 2px;
}

.ust-helpful-links-card:hover {
	transform: translateY(-5px);
	border-color: var(--astro-border-warm, #FED7AA);
	box-shadow: 0 12px 30px rgba(224, 109, 44, 0.12);
	background: linear-gradient(180deg, #FFFFFF 0%, #FFF5EB 100%);
}

/* Image / Icon Wrapper */
.ust-helpful-links-img-wrapper {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background-color: #FFFFFF;
	border: 1.5px solid var(--astro-border-warm, #FED7AA);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	box-shadow: 0 4px 12px rgba(224, 109, 44, 0.08);
	transition: transform 0.3s ease;
	flex-shrink: 0;
	overflow: hidden;
}

.ust-helpful-links-img-wrapper img {
	display: block;
	width: 38px;
	height: 38px;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.ust-helpful-links-card:hover .ust-helpful-links-img-wrapper {
	transform: scale(1.08);
	border-color: var(--astro-primary, #E06D2C);
}

.ust-helpful-links-card:hover .ust-helpful-links-img-wrapper img {
	transform: scale(1.08);
}

/* Label Banner / Card Title */
.ust-helpful-links-banner {
	font-family: var(--astro-font-sans, 'Plus Jakarta Sans', sans-serif);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--astro-heading, #1C1917);
	transition: color 0.2s ease;
	margin: 0;
	padding: 0;
	background: transparent;
	width: 100%;
	display: block;
}

.ust-helpful-links-card:hover .ust-helpful-links-banner {
	color: var(--astro-primary, #E06D2C);
}

/* Card Text / Description */
.ust-helpful-links-text {
	font-family: var(--astro-font-sans, 'Plus Jakarta Sans', sans-serif);
	font-size: 14px;
	line-height: 1.5;
	color: var(--astro-body, #44403C);
	margin-top: 0.5rem;
	width: 100%;
}

/* ============================================================
   BLOG GRID ARCHIVE SECTION (Imported from Sarathi, Adapted for Astrology)
   ============================================================ */

.sarathi-inner-page-banner {
	background-color: transparent;
	padding: 3.5rem 1rem 1.5rem 1rem;
	border-bottom: 1px solid var(--astro-border, #F3E8DC);
}

.sarathi-inner-banner-wrapper {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (min-width: 1024px) {
	.sarathi-inner-banner-wrapper {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.sarathi-inner-banner-text-content {
	max-width: 620px;
	text-align: left;
	width: 100%;
}

@media (min-width: 1024px) {
	.sarathi-inner-banner-text-content {
		flex: 0 0 60%;
	}
}

.sarathi-hero-eyebrow-wrapper {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.sarathi-hero-eyebrow {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--astro-primary, #E06D2C);
	letter-spacing: 0.1em;
	margin: 0;
}

.sarathi-hero-eyebrow-line {
	height: 1px;
	background-color: var(--astro-primary, #E06D2C);
	flex-grow: 1;
	max-width: 60px;
}

.sarathi-hero-heading {
	font-family: var(--astro-font-heading, 'Cinzel', serif);
	font-size: 32px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--astro-text, #44403C);
	margin: 0 0 1rem 0;
}

@media (min-width: 768px) {
	.sarathi-hero-heading {
		font-size: 46px;
	}
}

.sarathi-hero-heading .sarathi-highlight {
	color: var(--astro-primary, #E06D2C);
}

.sarathi-hero-description p {
	font-size: 16px;
	color: var(--astro-text-muted, #78716C);
	line-height: 1.6;
	margin: 0;
}

/* Filter & Search Bar */
.sarathi-inner-banner-side-content {
	display: flex;
	align-items: center;
	width: 100%;
}

@media (min-width: 1024px) {
	.sarathi-inner-banner-side-content {
		flex: 0 0 38%;
		justify-content: flex-end;
	}
}

.sarathi-blog-filter-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

@media (min-width: 640px) {
	.sarathi-blog-filter-form {
		flex-direction: row;
		align-items: center;
	}
}

.sarathi-blog-search-wrap,
.sarathi-blog-cat-select-wrap {
	position: relative;
	display: flex;
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--astro-border, #F3E8DC);
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.sarathi-blog-search-wrap {
	min-width: 250px;
}

.sarathi-search-icon,
.sarathi-select-arrow {
	position: absolute;
	width: 18px;
	height: 18px;
	color: var(--astro-text-muted, #78716C);
	pointer-events: none;
}

.sarathi-search-icon { left: 1rem; }
.sarathi-select-arrow { right: 1rem; }

.sarathi-blog-search-input,
.sarathi-blog-cat-select {
	width: 100%;
	border: none;
	background: transparent;
	font-family: var(--astro-font-sans, 'Plus Jakarta Sans', sans-serif);
	font-size: 15px;
	color: var(--astro-text, #44403C);
	outline: none;
	padding: 0.75rem 1rem;
}

.sarathi-blog-search-input {
	padding-left: 2.75rem;
}

.sarathi-blog-cat-select {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 2.75rem;
	cursor: pointer;
}

.sarathi-blog-search-input:focus,
.sarathi-blog-cat-select:focus {
	box-shadow: 0 0 0 2px rgba(224, 109, 44, 0.2); /* Primary transparent focus ring */
}

/* Blog Grid Variant */
.cards-grid--blog {
	padding-top: 3rem;
	padding-bottom: 2.5rem;
	background-color: transparent;
}

.sarathi-blog-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 640px) {
	.sarathi-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.sarathi-blog-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Blog Card Item Component (Standard Vertical) */
.sarathi-blog-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid var(--astro-border, #F3E8DC);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.sarathi-blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	border-color: rgba(224, 109, 44, 0.3);
}

.sarathi-blog-card__image-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f8fafc;
}

.sarathi-blog-card__img-link {
	display: block;
	width: 100%;
	height: 100%;
}

.sarathi-blog-card__img-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.sarathi-blog-card:hover .sarathi-blog-card__img-link img {
	transform: scale(1.05);
}

.sarathi-blog-card__cat-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--astro-primary, #E06D2C);
	letter-spacing: 0.1em;
	margin-bottom: 0.75rem;
}

.sarathi-blog-card__content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.sarathi-blog-card__title {
	font-family: var(--astro-font-heading, 'Cinzel', serif);
	font-size: 20px;
	line-height: 1.35;
	font-weight: 700;
	color: var(--astro-text, #44403C);
	margin: 0 0 0.75rem 0;
}

.sarathi-blog-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.sarathi-blog-card:hover .sarathi-blog-card__title a,
.sarathi-blog-card__title a:hover {
	color: var(--astro-primary, #E06D2C);
}

.sarathi-blog-card__excerpt {
	font-size: 15px;
	line-height: 1.6;
	color: var(--astro-text-muted, #78716C);
	margin: 0 0 1.25rem 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sarathi-blog-card__meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 13px;
	color: var(--astro-text-muted, #78716C);
	margin-bottom: 1.25rem;
}

.sarathi-meta-icon {
	width: 14px;
	height: 14px;
	vertical-align: -2px;
	margin-right: 4px;
	color: var(--astro-text-muted, #78716C);
}

.sarathi-blog-card__date,
.sarathi-blog-card__readtime {
	display: inline-flex;
	align-items: center;
}

.sarathi-blog-card__dot {
	color: var(--astro-border, #F3E8DC);
}

.sarathi-blog-card__action {
	margin-top: auto;
}

.sarathi-blog-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 14px;
	font-weight: 700;
	color: var(--astro-primary, #E06D2C);
	text-decoration: none;
	transition: gap 0.2s ease;
}

.sarathi-btn-arrow-icon {
	width: 16px;
	height: 16px;
	transition: transform 0.2s ease;
}

.sarathi-blog-card:hover .sarathi-btn-arrow-icon,
.sarathi-blog-card__link:hover .sarathi-btn-arrow-icon {
	transform: translateX(4px);
}

/* Pagination Wrapper */
.sarathi-cs-pagination {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
}

.sarathi-cs-pagination .nav-links {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.sarathi-cs-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.5rem;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid var(--astro-border, #F3E8DC);
	color: var(--astro-text, #44403C);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.sarathi-cs-pagination .page-numbers.current {
	background: var(--astro-primary, #E06D2C);
	border-color: var(--astro-primary, #E06D2C);
	color: #ffffff;
}

.sarathi-cs-pagination .page-numbers:hover:not(.current) {
	border-color: var(--astro-primary, #E06D2C);
	color: var(--astro-primary, #E06D2C);
}

.sarathi-blog-no-results {
	text-align: center;
	padding: 4rem 2rem;
	max-width: 600px;
	margin: 0 auto;
}

.sarathi-blog-no-results__icon {
	color: var(--astro-text-muted, #78716C);
	margin-bottom: 1.5rem;
}

/* ============================================================
   HELPFUL LINKS / FEATURE CARDS SECTION — AstroJyot Vedic Astrology
   ============================================================ */

.ust-helpful-links {
	width: 100%;
	background-color: var(--astro-bg, #FCF9F4);
	padding: 1.5rem 1rem;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.ust-helpful-links {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
}

.ust-helpful-links-container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
}

/* Eyebrow */
.ust-helpful-links-eyebrow {
	display: block;
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #E06D2C;
	margin-bottom: 8px;
	text-align: center;
}

/* Heading */
.ust-helpful-links-title {
	font-family: var(--astro-font-serif, 'Cinzel', serif);
	font-size: 32px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--astro-heading, #1C1917);
	text-align: center;
	margin-top: 0;
	margin-bottom: 1rem;
	letter-spacing: -0.01em;
}

@media (min-width: 768px) {
	.ust-helpful-links-title {
		font-size: 40px;
		margin-bottom: 1.5rem;
	}
}

/* Cards Grid */
.ust-helpful-links-grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 340px));
	justify-content: center;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.ust-helpful-links-grid {
		grid-template-columns: repeat(2, minmax(0, 320px));
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.ust-helpful-links-grid {
		grid-template-columns: repeat(3, minmax(0, 340px));
		gap: 2rem;
	}
	
	.ust-helpful-links-grid.ust-helpful-links-grid-4-col {
		grid-template-columns: repeat(4, minmax(0, 280px));
		gap: 1.5rem;
	}
}

/* Card Link Item */
.ust-helpful-links-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	background: linear-gradient(180deg, #FFF9F3 0%, #FFF2E5 100%);
	border: 1px solid var(--astro-border, #F3E8DC);
	border-radius: 18px;
	padding: 2.5rem 1.75rem;
	box-sizing: border-box;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(224, 109, 44, 0.04);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ust-helpful-links-card:focus {
	outline: 2px solid var(--astro-primary, #E06D2C);
	outline-offset: 2px;
}

.ust-helpful-links-card:hover {
	transform: translateY(-5px);
	border-color: var(--astro-border-warm, #FED7AA);
	box-shadow: 0 12px 30px rgba(224, 109, 44, 0.12);
	background: linear-gradient(180deg, #FFFFFF 0%, #FFF5EB 100%);
}

/* Image / Icon Wrapper */
.ust-helpful-links-img-wrapper {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background-color: #FFFFFF;
	border: 1.5px solid var(--astro-border-warm, #FED7AA);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	box-shadow: 0 4px 12px rgba(224, 109, 44, 0.08);
	transition: transform 0.3s ease;
	flex-shrink: 0;
	overflow: hidden;
}

.ust-helpful-links-img-wrapper img {
	display: block;
	width: 38px;
	height: 38px;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.ust-helpful-links-card:hover .ust-helpful-links-img-wrapper {
	transform: scale(1.08);
	border-color: var(--astro-primary, #E06D2C);
}

.ust-helpful-links-card:hover .ust-helpful-links-img-wrapper img {
	transform: scale(1.08);
}

/* Label Banner / Card Title */
.ust-helpful-links-banner {
	font-family: var(--astro-font-sans, 'Plus Jakarta Sans', sans-serif);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--astro-heading, #1C1917);
	transition: color 0.2s ease;
	margin: 0;
	padding: 0;
	background: transparent;
	width: 100%;
	display: block;
}

.ust-helpful-links-card:hover .ust-helpful-links-banner {
	color: var(--astro-primary, #E06D2C);
}

/* Card Text / Description */
.ust-helpful-links-text {
	font-family: var(--astro-font-sans, 'Plus Jakarta Sans', sans-serif);
	font-size: 14px;
	line-height: 1.5;
	color: var(--astro-body, #44403C);
	margin-top: 0.5rem;
	width: 100%;
}

/* ============================================================
   BLOG GRID ARCHIVE SECTION (Imported from Sarathi, Adapted for Astrology)
   ============================================================ */

.sarathi-inner-page-banner {
	background-color: transparent;
	padding: 3.5rem 1rem 1.5rem 1rem;
	border-bottom: 1px solid var(--astro-border, #F3E8DC);
}

.sarathi-inner-banner-wrapper {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (min-width: 1024px) {
	.sarathi-inner-banner-wrapper {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.sarathi-inner-banner-text-content {
	max-width: 620px;
	text-align: left;
	width: 100%;
}

@media (min-width: 1024px) {
	.sarathi-inner-banner-text-content {
		flex: 0 0 60%;
	}
}

.sarathi-hero-eyebrow-wrapper {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.sarathi-hero-eyebrow {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--astro-primary, #E06D2C);
	letter-spacing: 0.1em;
	margin: 0;
}

.sarathi-hero-eyebrow-line {
	height: 1px;
	background-color: var(--astro-primary, #E06D2C);
	flex-grow: 1;
	max-width: 60px;
}

.sarathi-hero-heading {
	font-family: var(--astro-font-heading, 'Cinzel', serif);
	font-size: 32px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--astro-text, #44403C);
	margin: 0 0 1rem 0;
}

@media (min-width: 768px) {
	.sarathi-hero-heading {
		font-size: 46px;
	}
}

.sarathi-hero-heading .sarathi-highlight {
	color: var(--astro-primary, #E06D2C);
}

.sarathi-hero-description p {
	font-size: 16px;
	color: var(--astro-text-muted, #78716C);
	line-height: 1.6;
	margin: 0;
}

/* Filter & Search Bar */
.sarathi-inner-banner-side-content {
	display: flex;
	align-items: center;
	width: 100%;
}

@media (min-width: 1024px) {
	.sarathi-inner-banner-side-content {
		flex: 0 0 38%;
		justify-content: flex-end;
	}
}

.sarathi-blog-filter-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

@media (min-width: 640px) {
	.sarathi-blog-filter-form {
		flex-direction: row;
		align-items: center;
	}
}

.sarathi-blog-search-wrap,
.sarathi-blog-cat-select-wrap {
	position: relative;
	display: flex;
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--astro-border, #F3E8DC);
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.sarathi-blog-search-wrap {
	min-width: 250px;
}

.sarathi-search-icon,
.sarathi-select-arrow {
	position: absolute;
	width: 18px;
	height: 18px;
	color: var(--astro-text-muted, #78716C);
	pointer-events: none;
}

.sarathi-search-icon { left: 1rem; }
.sarathi-select-arrow { right: 1rem; }

.sarathi-blog-search-input,
.sarathi-blog-cat-select {
	width: 100%;
	border: none;
	background: transparent;
	font-family: var(--astro-font-sans, 'Plus Jakarta Sans', sans-serif);
	font-size: 15px;
	color: var(--astro-text, #44403C);
	outline: none;
	padding: 0.75rem 1rem;
}

.sarathi-blog-search-input {
	padding-left: 2.75rem;
}

.sarathi-blog-cat-select {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 2.75rem;
	cursor: pointer;
}

.sarathi-blog-search-input:focus,
.sarathi-blog-cat-select:focus {
	box-shadow: 0 0 0 2px rgba(224, 109, 44, 0.2); /* Primary transparent focus ring */
}

/* Blog Grid Variant */
.cards-grid--blog {
	padding-top: 3rem;
	padding-bottom: 2.5rem;
	background-color: transparent;
}

.sarathi-blog-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 640px) {
	.sarathi-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.sarathi-blog-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Blog Card Item Component (Standard Vertical) */
.sarathi-blog-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid var(--astro-border, #F3E8DC);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.sarathi-blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	border-color: rgba(224, 109, 44, 0.3);
}

.sarathi-blog-card__image-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f8fafc;
}

.sarathi-blog-card__img-link {
	display: block;
	width: 100%;
	height: 100%;
}

.sarathi-blog-card__img-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.sarathi-blog-card:hover .sarathi-blog-card__img-link img {
	transform: scale(1.05);
}

.sarathi-blog-card__cat-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--astro-primary, #E06D2C);
	letter-spacing: 0.1em;
	margin-bottom: 0.75rem;
}

.sarathi-blog-card__content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.sarathi-blog-card__title {
	font-family: var(--astro-font-heading, 'Cinzel', serif);
	font-size: 20px;
	line-height: 1.35;
	font-weight: 700;
	color: var(--astro-text, #44403C);
	margin: 0 0 0.75rem 0;
}

.sarathi-blog-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.sarathi-blog-card:hover .sarathi-blog-card__title a,
.sarathi-blog-card__title a:hover {
	color: var(--astro-primary, #E06D2C);
}

.sarathi-blog-card__excerpt {
	font-size: 15px;
	line-height: 1.6;
	color: var(--astro-text-muted, #78716C);
	margin: 0 0 1.25rem 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sarathi-blog-card__meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 13px;
	color: var(--astro-text-muted, #78716C);
	margin-bottom: 1.25rem;
}

.sarathi-meta-icon {
	width: 14px;
	height: 14px;
	vertical-align: -2px;
	margin-right: 4px;
	color: var(--astro-text-muted, #78716C);
}

.sarathi-blog-card__date,
.sarathi-blog-card__readtime {
	display: inline-flex;
	align-items: center;
}

.sarathi-blog-card__dot {
	color: var(--astro-border, #F3E8DC);
}

.sarathi-blog-card__action {
	margin-top: auto;
}

.sarathi-blog-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 14px;
	font-weight: 700;
	color: var(--astro-primary, #E06D2C);
	text-decoration: none;
	transition: gap 0.2s ease;
}

.sarathi-btn-arrow-icon {
	width: 16px;
	height: 16px;
	transition: transform 0.2s ease;
}

.sarathi-blog-card:hover .sarathi-btn-arrow-icon,
.sarathi-blog-card__link:hover .sarathi-btn-arrow-icon {
	transform: translateX(4px);
}

/* Pagination Wrapper */
.sarathi-cs-pagination {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
}

.sarathi-cs-pagination .nav-links {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.sarathi-cs-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.5rem;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid var(--astro-border, #F3E8DC);
	color: var(--astro-text, #44403C);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.sarathi-cs-pagination .page-numbers.current {
	background: var(--astro-primary, #E06D2C);
	border-color: var(--astro-primary, #E06D2C);
	color: #ffffff;
}

.sarathi-cs-pagination .page-numbers:hover:not(.current) {
	border-color: var(--astro-primary, #E06D2C);
	color: var(--astro-primary, #E06D2C);
}

.sarathi-blog-no-results {
	text-align: center;
	padding: 4rem 2rem;
	max-width: 600px;
	margin: 0 auto;
}

.sarathi-blog-no-results__icon {
	color: var(--astro-text-muted, #78716C);
	margin-bottom: 1.5rem;
}