/* ============================================================
	CARDS GRID SECTION
	============================================================ */

.cards-grid {
    width: 100%;
    padding: 4rem 1rem;
    background-color: var(--bg-white);
}

@media (min-width: 640px) {
    .cards-grid {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .cards-grid {
        padding-top: 6rem;
        padding-bottom: 5rem;
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        padding-top: 2rem;
        padding-bottom: 3rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Container */
.cards-grid__container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

/* Header (Eyebrow, Title, Description) */
.cards-grid__header {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cards-grid__header {
        margin-bottom: 3.5rem;
    }
}

.cards-grid__eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.cards-grid__title {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 1rem 0;
}

@media (min-width: 768px) {
    .cards-grid__title {
        font-size: 42px;
    }
}

.cards-grid__description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Base List */
.cards-grid__list {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

/* Base Item */
.cards-grid__item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    color: inherit;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cards-grid__icon-wrapper {
    overflow: hidden;
    width: 100%;
}

.cards-grid__icon-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cards-grid__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cards-grid__item-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 0.5rem 0;
    transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cards-grid__item-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.cards-grid__footer {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* ============================================================
   VARIANTS
   ============================================================ */

/* 1. STANDARD VARIANT */
.cards-grid--standard {
    background-color: var(--bg-white);
}

.cards-grid--standard .cards-grid__list {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cards-grid--standard .cards-grid__item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem 1rem;
    align-items: center;
    text-align: center;
}

.cards-grid--standard .cards-grid__item:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.cards-grid--standard .cards-grid__item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary);
}

.cards-grid--standard .cards-grid__icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    background: transparent;
}

.cards-grid--standard .cards-grid__icon-wrapper img {
    object-fit: contain;
}

.cards-grid--standard .cards-grid__item:hover .cards-grid__item-title {
    color: var(--color-primary);
}

/* Extend Service Button for Standard Variant */
.cards-grid--standard .cards-grid__item-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 15px;
    margin-top: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: inherit;
    display: inline-block;
}

.cards-grid--standard .cards-grid__item-btn:hover {
    opacity: 0.8;
}

/* Active State for Extend Service Cards */
.cards-grid--standard .cards-grid__item.is-active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.cards-grid--standard .cards-grid__item.is-active .cards-grid__item-title {
    color: var(--color-primary);
}

/* Shared Details Area */
.cards-grid__shared-details {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .cards-grid__shared-details {
        margin-top: 4rem;
        padding-top: 4rem;
    }
}

.cards-grid__shared-details-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .cards-grid__shared-details-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 5rem;
    }
}

.cards-grid__shared-details-content {
    flex: 1;
}

.cards-grid__shared-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.cards-grid__shared-details-image {
    flex: 0 0 100%;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--bg-light);
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .cards-grid__shared-details-image {
        flex: 0 0 38%;
        max-width: 450px;
    }
}

.cards-grid__shared-details-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.cards-grid__shared-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 1.5rem 0;
}

@media (min-width: 768px) {
    .cards-grid__shared-title {
        font-size: 32px;
    }
}

.cards-grid__shared-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.cards-grid__shared-features {
    display: grid;
    gap: 1.5rem;
}

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

.cards-grid__shared-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cards-grid__shared-feature-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards-grid__shared-feature-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cards-grid__shared-feature-text {
    flex: 1;
}

.cards-grid__shared-feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 0.25rem 0;
}

.cards-grid__shared-feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.cards-grid__shared-btn-wrapper {
    margin-top: 2.5rem;
}


/* 2. FEATURED VARIANT */
.cards-grid--featured {
    background-color: var(--bg-light);
}

.cards-grid--featured .cards-grid__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem 0;
}

@media (min-width: 768px) {
    .cards-grid--featured .cards-grid__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 3.5rem 0;
    }
}

.cards-grid--featured .cards-grid__item {
    padding: 0 1rem;
    text-align: center;
    align-items: center;
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .cards-grid--featured .cards-grid__item {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        padding: 0 2.5rem;
        border-right: 1px solid var(--border-color);
        box-sizing: border-box;
    }

    .cards-grid--featured .cards-grid__item:last-child,
    .cards-grid--featured .cards-grid__item:nth-child(3n) {
        border-right: none;
    }
}

.cards-grid--featured .cards-grid__icon-wrapper {
    width: 72px;
    height: 72px;
    margin-bottom: 1.5rem;
    background: transparent;
}

.cards-grid--featured .cards-grid__icon-wrapper img {
    object-fit: contain;
}

.cards-grid--featured .cards-grid__item-title {
    font-size: 20px;
    margin-bottom: 1rem;
}

.cards-grid--featured .cards-grid__item-desc {
    margin-bottom: 1.5rem;
}

.cards-grid--featured .cards-grid__item-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    margin-top: auto;
    transition: opacity 0.2s;
}

.cards-grid--featured .cards-grid__item-link:hover {
    opacity: 0.8;
}


/* 3. MINIMAL VARIANT */
.cards-grid--minimal {
    background-color: var(--bg-white);
}

.cards-grid--minimal .cards-grid__list {
    gap: 2.5rem 1.5rem;
}

@media (min-width: 640px) {
    .cards-grid--minimal .cards-grid__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 3rem 0;
    }

    .cards-grid--minimal .cards-grid__item {
        flex: 1 1 250px;
        max-width: 33.333%;
    }
}

.cards-grid--minimal .cards-grid__item {
    text-align: center;
    align-items: center;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .cards-grid--minimal .cards-grid__item {
        padding: 0 1.5rem;
        border-right: 1px solid var(--border-color);
    }

    .cards-grid--minimal .cards-grid__item:last-child,
    .cards-grid--minimal .cards-grid__item:nth-child(3n) {
        border-right: none;
    }
}

@media (min-width: 1024px) {
    .cards-grid--minimal .cards-grid__item {
        max-width: 20%;
        padding: 0 1rem;
        border-right: 1px solid var(--border-color);
    }

    .cards-grid--minimal .cards-grid__item:last-child,
    .cards-grid--minimal .cards-grid__item:nth-child(5n) {
        border-right: none;
    }
}

.cards-grid--minimal .cards-grid__icon-wrapper {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    background: transparent;
}

.cards-grid--minimal .cards-grid__icon-wrapper img {
    object-fit: contain;
}

.cards-grid--minimal .cards-grid__item-title {
    font-size: 16px;
    margin-bottom: 0.75rem;
}

.cards-grid--minimal .cards-grid__item-desc {
    font-size: 13px;
}


/* 4. STATS COUNTER VARIANT */
.cards-grid--stats {
    background-color: var(--bg-light);
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.cards-grid--stats .cards-grid__list {
    gap: 2.5rem 1.5rem;
}

@media (min-width: 640px) {
    .cards-grid--stats .cards-grid__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 0;
    }
}

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

.cards-grid--stats .cards-grid__item {
    text-align: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cards-grid--stats .cards-grid__item {
        padding: 0 1.5rem;
        border-right: 1px solid var(--border-color);
    }

    .cards-grid--stats .cards-grid__item:nth-child(2n) {
        border-right: none;
    }
}

@media (min-width: 1024px) {
    .cards-grid--stats .cards-grid__item {
        padding: 0 1rem;
        border-right: 1px solid var(--border-color);
    }

    .cards-grid--stats .cards-grid__item:nth-child(2n) {
        border-right: 1px solid var(--border-color);
    }

    .cards-grid--stats .cards-grid__item:nth-child(4n),
    .cards-grid--stats .cards-grid__item:last-child {
        border-right: none;
    }
}

.cards-grid--stats .cards-grid__icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 0.75rem;
    background: transparent;
}

.cards-grid--stats .cards-grid__icon-wrapper img {
    object-fit: contain;
}

.cards-grid--stats .cards-grid__item-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.cards-grid--stats .cards-grid__item-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================================
   5. BLOG ARCHIVE & CARD VARIANT (.cards-grid--blog)
   ============================================================ */

/* Blog Hero Header (Matches input_file_0.png layout) */
.sarathi-blog-hero {
    background-color: var(--bg-white);
    padding: 3.5rem 1rem 2.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.sarathi-blog-hero__grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .sarathi-blog-hero__grid {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.sarathi-blog-hero__left {
    max-width: 620px;
    text-align: left;
}

.sarathi-blog-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    background-color: rgba(0, 161, 171, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.sarathi-blog-hero__title {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--color-secondary);
    margin: 0 0 0.75rem 0;
    text-align: left;
}

@media (min-width: 768px) {
    .sarathi-blog-hero__title {
        font-size: 42px;
    }
}

.sarathi-blog-hero__title .sarathi-highlight {
    color: var(--color-primary);
    position: relative;
}

.sarathi-blog-hero__desc {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
    text-align: left;
}

/* Filter & Search Bar (Matches input_file_0.png top right) */
.sarathi-blog-hero__right {
    display: flex;
    align-items: center;
}

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

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

.sarathi-blog-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    min-width: 250px;
}

.sarathi-search-icon {
    position: absolute;
    left: 1rem;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
}

.sarathi-blog-search-input {
    width: 100%;
    padding: 0.65rem 2rem 0.65rem 2.6rem;
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-main);
    border-radius: 12px;
    outline: none;
}

.sarathi-blog-search-input:focus {
    box-shadow: 0 0 0 2px rgba(0, 161, 171, 0.2);
}

.sarathi-blog-cat-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    min-width: 180px;
}

.sarathi-blog-cat-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    padding: 0.65rem 2.25rem 0.65rem 1rem;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    outline: none;
}

.sarathi-select-arrow {
    position: absolute;
    right: 0.75rem;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
}

/* Screen reader utility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Blog Grid Variant */
.cards-grid--blog {
    padding-top: 3rem !important;
    padding-bottom: 4.5rem !important;
    background-color: var(--bg-white);
}

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

@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: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
    height: 100%;
}

.sarathi-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary);
}

.sarathi-blog-card__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-light);
}

.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 400ms 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(--color-primary);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

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

.sarathi-blog-card__title {
    font-family: var(--font-heading);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 0.5rem 0;
}

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

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

.sarathi-blog-card__excerpt {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0 0 1rem 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: 12px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

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

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

.sarathi-blog-card__dot {
    color: var(--border-color);
}

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

.sarathi-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: gap 200ms ease;
}

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

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

/* Horizontal Blog Card (Matches Related Articles in input_file_1.png) */
.sarathi-blog-card--horizontal {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem;
    gap: 1.25rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    height: auto !important;
}

.sarathi-blog-card--horizontal .sarathi-blog-card__thumb {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
}

.sarathi-blog-card--horizontal .sarathi-blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.sarathi-blog-card--horizontal:hover .sarathi-blog-card__thumb img {
    transform: scale(1.06);
}

.sarathi-blog-card--horizontal .sarathi-blog-card__content {
    padding: 0;
}

.sarathi-blog-card--horizontal .sarathi-blog-card__title {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.sarathi-blog-card--horizontal .sarathi-blog-card__link {
    font-size: 13px;
}

/* Pagination Wrapper (Matches input_file_0.png) */
.sarathi-cs-pagination {
    margin-top: 3.5rem;
    display: flex;
    justify-content: center;
}

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

.sarathi-cs-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    border-radius: 8px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 200ms ease;
}

.sarathi-cs-pagination .page-numbers.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    border-radius: 8px;
}

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

/* ============================================================
   6. SINGLE BLOG POST STYLES (.sarathi-single-post)
   ============================================================ */

.sarathi-breadcrumbs {
    padding: 1.5rem 0 0.5rem 0;
    background: var(--bg-white);
}

.sarathi-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.sarathi-breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 200ms ease;
}

.sarathi-breadcrumb-item a:hover {
    color: var(--color-primary);
}

.sarathi-breadcrumb-sep {
    color: var(--border-color);
}

.sarathi-breadcrumb-item.is-active span {
    color: var(--text-main);
    font-weight: 500;
}

/* Single Post Hero (Matches input_file_1.png) */
.sarathi-single-hero {
    padding: 2rem 0 2.5rem 0;
    background: var(--bg-white);
    text-align: left;
}

.sarathi-single-hero__inner {
    max-width: 960px;
    margin: 0 auto;
}

.sarathi-single-cat-wrap {
    margin-bottom: 1rem;
}

.sarathi-single-cat {
    display: inline-block !important;
    background-color: rgba(0, 161, 171, 0.1) !important;
    color: var(--color-primary) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    text-transform: uppercase !important;
}

.sarathi-single-title {
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--color-secondary);
    margin: 0 0 1rem 0;
    text-align: left;
}

@media (min-width: 768px) {
    .sarathi-single-title {
        font-size: 40px;
    }
}

.sarathi-single-lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 1.5rem 0;
    text-align: left;
}

/* Single Meta Strip */
.sarathi-single-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 14px;
    color: var(--text-muted);
    flex-wrap: wrap;
    justify-content: flex-start;
}

.sarathi-single-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Featured Image */
.sarathi-single-featured-wrap {
    max-width: 960px;
    margin: 2.25rem auto 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: var(--bg-light);
}

.sarathi-single-featured-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* Main Post Content (Prose) */
.sarathi-single-body {
    padding-bottom: 4rem;
    background: var(--bg-white);
}

.sarathi-post-prose {
    max-width: 780px;
    margin: 2.5rem auto 0 auto;
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--text-main);
}

.sarathi-post-prose h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 2.25rem 0 1rem 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .sarathi-post-prose h2 {
        font-size: 26px;
    }
}

.sarathi-post-prose h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 1.75rem 0 0.75rem 0;
    line-height: 1.35;
}

.sarathi-post-prose p {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.sarathi-post-prose ul,
.sarathi-post-prose ol {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

.sarathi-post-prose ul li {
    position: relative;
    list-style: none;
    padding-left: 1.75rem;
    margin-bottom: 0.65rem;
}

.sarathi-post-prose ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(0, 161, 171, 0.15);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    border-radius: 50%;
}

.sarathi-post-prose blockquote {
    border-left: 4px solid var(--color-primary);
    margin: 2rem 0;
    padding: 0.75rem 0 0.75rem 1.5rem;
    font-style: italic;
    color: var(--color-secondary);
    background: var(--bg-light);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

/* Social Share Bar */
.sarathi-share-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3.5rem auto 0 auto;
    max-width: 780px;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.sarathi-share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.sarathi-share-buttons {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.sarathi-share-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--color-secondary);
    border: 1px solid var(--border-color);
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms ease;
    padding: 0;
}

.sarathi-share-btn:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.sarathi-share-svg {
    width: 16px;
    height: 16px;
}

.sarathi-copy-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--color-secondary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, transform 200ms ease;
    pointer-events: none;
}

.sarathi-copy-tooltip.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Related Articles Section */
.sarathi-related-section {
    background-color: #f7fafc;
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

.sarathi-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.sarathi-related-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0;
}

.sarathi-related-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: gap 200ms ease;
}

.sarathi-related-view-all:hover {
    gap: 0.65rem;
}

@media (min-width: 1024px) {
    .sarathi-related-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}