.xcart_blog_page,
.xcart_blog_single,
.xcart_home_blog_section {
    color: #141c22;
}

.xcart_blog_page {
    margin-top: 110px;
    padding-bottom: 40px;
}

.xcart_blog_hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 28px;
}

.xcart_blog_hero_text,
.xcart_blog_hero_stat {
    background: linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
    border: 1px solid #e6ece9;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 14px 34px rgba(20, 28, 34, 0.06);
}

.xcart_blog_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(19, 144, 107, 0.1);
    color: #13906b;
    font-size: 12px;
    font-weight: 800;
}

.xcart_blog_hero_title {
    margin: 16px 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.3;
    color: #141c22;
}

.xcart_blog_hero_desc {
    margin: 0;
    font-size: 16px;
    line-height: 2;
    color: #4b5563;
}

.xcart_blog_hero_stat {
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(180deg, #13906b 0%, #0d7255 100%);
    color: #ffffff;
}

.xcart_blog_hero_stat_value {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1;
    font-weight: 800;
}

.xcart_blog_hero_stat_label {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.xcart_blog_featured {
    margin-bottom: 24px;
}

.xcart_blog_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.xcart_blog_grid--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.xcart_blog_card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e7ece9;
    border-radius: 22px;
    box-shadow: 0 16px 32px rgba(20, 28, 34, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.xcart_blog_card:hover {
    transform: translateY(-4px);
    border-color: rgba(19, 144, 107, 0.22);
    box-shadow: 0 20px 40px rgba(20, 28, 34, 0.08);
}

.xcart_blog_card_media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #ecf4f0;
}

.xcart_blog_card--featured {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.xcart_blog_card--featured .xcart_blog_card_media {
    aspect-ratio: auto;
    min-height: 100%;
}

.xcart_blog_card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.xcart_blog_card_fallback {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: grid;
    place-items: center;
    padding: 20px;
    background:
        radial-gradient(circle at top left, rgba(19, 144, 107, 0.22), transparent 38%),
        linear-gradient(145deg, #1f2a33 0%, #141c22 100%);
    color: #ffffff;
    text-align: center;
}

.xcart_blog_card_fallback span {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.7;
}

.xcart_blog_card_body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
    height: 100%;
}

.xcart_blog_card_meta,
.xcart_blog_single_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.xcart_blog_chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(19, 144, 107, 0.1);
    color: #13906b;
    font-size: 12px;
    font-weight: 800;
}

.xcart_blog_meta_text {
    font-size: 12px;
    color: #6b7280;
}

.xcart_blog_meta_dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(23, 29, 34, 0.18);
}

.xcart_blog_card_title {
    margin: 0;
    font-size: 22px;
    line-height: 1.6;
}

.xcart_blog_card--grid .xcart_blog_card_title,
.xcart_blog_card--home .xcart_blog_card_title {
    font-size: 19px;
}

.xcart_blog_card_title a {
    color: #141c22;
    text-decoration: none;
}

.xcart_blog_card_excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 2;
    color: #4b5563;
}

.xcart_blog_card_link,
.xcart_home_blog_more,
.xcart_blog_related_more,
.xcart_blog_back_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(19, 144, 107, 0.22);
    background: #f7fbf9;
    color: #13906b !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 800;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.xcart_blog_card_link {
    margin-top: auto;
    align-self: flex-start;
}

.xcart_blog_card_link:hover,
.xcart_home_blog_more:hover,
.xcart_blog_related_more:hover,
.xcart_blog_back_link:hover {
    background: #ecf7f3;
    transform: translateY(-1px);
}

.xcart_blog_pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.xcart_blog_page_link {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #dfe7e3;
    color: #141c22;
    text-decoration: none;
    font-weight: 700;
}

.xcart_blog_page_link.is-active {
    background: #13906b;
    border-color: #13906b;
    color: #ffffff;
}

.xcart_blog_empty {
    text-align: center;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e7ece9;
    padding: 46px 24px;
}

.xcart_blog_empty h2 {
    margin: 0 0 12px;
    border: 0;
    padding: 0;
}

.xcart_blog_empty p {
    margin: 0;
    color: #6b7280;
    line-height: 2;
}

.xcart_blog_single {
    /* margin-top: 110px; */
    padding-bottom: 50px;
}
nav.xcart_front_breadcrumb {
    margin-top: 70px;
}
ol.xcart_front_breadcrumb_list {
    /* display: flex; */
    /* justify-content: flex-start; */
    /* gap: 30px; */
    font-size: 12px;
    font-weight: 100;
}
.xcart_blog_single_intro {
        display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(220px, 1fr);
    grid-template-areas: "hero cover";
    gap: 24px;
    align-items: start;

}

.xcart_blog_single_intro--no-cover {
    grid-template-columns: 1fr;
    grid-template-areas: "hero";
}

.xcart_blog_single_hero {
    grid-area: hero;
    /* background: linear-gradient(180deg, #ffffff 0%, #f5faf7 100%); */
    border: 1px solid #e7ece9;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 16px 36px rgba(20, 28, 34, 0.05);
    /* min-height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.xcart_blog_single_title {
 margin: 10px 0 0px;
    font-size: 23px;
    line-height: 2;
    color: #141c22;
    font-weight: 600 !important;
}

.xcart_blog_single_excerpt {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 2.1;
    color: #4b5563;
}

.xcart_blog_single_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.xcart_blog_single_hero_extras {
    display: grid;
    gap: 12px;
    margin-top: 22px;
    /* padding-top: 18px; */
    /* border-top: 1px solid #e3eee8; */
}

.xcart_blog_single_hero_facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.xcart_blog_single_hero_facts div {
    min-width: 0;
    display: grid;
    gap: 5px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(19, 144, 107, 0.1);
}

.xcart_blog_single_hero_facts span,
.xcart_blog_recent_posts_list small {
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
}

.xcart_blog_single_hero_facts strong {
    color: #141c22;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.7;
}

.xcart_blog_single_hero_toc {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(19, 144, 107, 0.12);
    padding: 10px;
}

.xcart_blog_single_cover {
    grid-area: cover;
    overflow: hidden;
    /* aspect-ratio: 4 / 4.2; */
    border-radius: 24px;
    border: 1px solid #e7ece9;
    box-shadow: 0 14px 32px rgba(20, 28, 34, 0.05);
    min-height: 100%;
    background: linear-gradient(160deg, #f3faf7 0%, #ffffff 100%);
}

.xcart_blog_single_cover_img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.xcart_blog_single_layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 24px;
    align-items: start;
    margin-top: 24px;
}

.xcart_blog_single_content {
    background: #ffffff;
    border: 1px solid #e7ece9;
    border-radius: 24px;
    padding: 38px 34px;
    box-shadow: 0 14px 32px rgba(20, 28, 34, 0.05);
    font-size: 16px;
    line-height: 2.2;
    color: #374151;
    font-weight: 500;
}

.xcart_blog_single_sidebar {
    display: grid;
    gap: 14px;
    position: sticky;
    top: 110px;
    align-self: start;
    height: fit-content;
}

.xcart_blog_single_sidebar.has-expanded-toc {
    position: static;
}

.xcart_blog_single_sidebar_card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
    border: 1px solid #e7ece9;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 12px 26px rgba(20, 28, 34, 0.05);
}

.xcart_blog_sidebar_head {
        display: flex;
    gap: 8px;
    margin-bottom: 14px;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.xcart_blog_sidebar_title {
    margin: 0;
    color: #141c22;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 900;
}

.xcart_blog_recent_posts_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.xcart_blog_recent_posts_list li {
    min-width: 0;
}

.xcart_blog_recent_posts_list a {
    display: flex;
    gap: 6px;
    padding: 11px 12px;
    border-radius: 16px;
    text-decoration: none;
    color: #141c22;
    background: #ffffff;
    border: 1px solid #edf1ef;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    flex-direction: column-reverse;
}

.xcart_blog_recent_posts_list a:hover,
.xcart_blog_recent_posts_list a:focus-visible {
    border-color: rgba(19, 144, 107, 0.28);
    box-shadow: 0 10px 22px rgba(20, 28, 34, 0.06);
    transform: translateY(-1px);
}

.xcart_blog_recent_posts_list span {
    color: #141c22;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.8;
}

.xcart_blog_sidebar_ad_card {
    padding: 10px;
}

.xcart_blog_sidebar_ad {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: #eef8f4;
    min-height: 120px;
}

.xcart_blog_sidebar_ad img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.xcart_blog_single_facts {
    list-style: none;
    margin: 14px 0 16px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.xcart_blog_single_facts li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf1ef;
    color: #4b5563;
    font-size: 13px;
}

.xcart_blog_single_facts li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.xcart_blog_single_facts strong {
    color: #141c22;
    font-size: 13px;
    font-weight: 800;
}

.xcart_blog_single_toc {
    position: relative;
    overflow: hidden;
    padding: 12px;
}

.xcart_blog_single_toc::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #13906b 0%, #56c5a3 100%);
}

.xcart_blog_single_toc_head {
    display: flex;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 10px 12px;
    border-radius: 18px;
    cursor: pointer;
    user-select: none;
    justify-content: space-between;
    border: none;
    box-shadow: unset;
}

.xcart_blog_single_toc_head::-webkit-details-marker {
    display: none;
}

.xcart_blog_single_toc_head::marker {
    content: "";
}

.xcart_blog_single_toc_head:focus-visible {
    outline: 2px solid rgba(19, 144, 107, 0.25);
    outline-offset: 2px;
}

.xcart_blog_single_toc_meta {
    font-size: 12px;
    font-weight: 800;
    color: #698174;
    white-space: nowrap;
}

.xcart_blog_single_toc_head::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #13906b;
    border-bottom: 2px solid #13906b;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.xcart_blog_single_toc[open] .xcart_blog_single_toc_head::after {
    transform: rotate(-135deg);
}

.xcart_blog_single_toc_hint {
    margin: 0;
    grid-column: 1 / -1;
    font-size: 12px;
    line-height: 1.75;
    color: #6b7280;
}

.xcart_blog_single_toc .xcart_blog_eyebrow {
    width: fit-content;
}

.xcart_blog_single_toc_list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: grid;
    gap: 6px;
    max-height: min(42vh, 340px);
    overflow-y: auto;
    padding-left: 2px;
}

.xcart_blog_single_toc_item {
    margin: 0;
}

.xcart_blog_single_toc_item.level-3 {
    padding-right: 10px;
}

.xcart_blog_single_toc_item.level-4 {
    padding-right: 18px;
}

.xcart_blog_single_toc_link {
    position: relative;
    display: block;
    padding: 10px 12px;
    padding-inline-start: 24px;
    border-radius: 14px;
    background: #f8fbf9;
    border: 1px solid transparent;
    color: #40515f;
    text-decoration: none;
    line-height: 1.75;
    font-size: 13px;
    font-weight: 700;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.xcart_blog_single_toc_link::before {
    content: "";
    position: absolute;
    inset-inline-start: 10px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(19, 144, 107, 0.25);
    transform: translateY(-50%);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.xcart_blog_single_toc_link:hover,
.xcart_blog_single_toc_link:focus-visible,
.xcart_blog_single_toc_link.is-active {
    background: #eef8f4;
    border-color: rgba(19, 144, 107, 0.18);
    color: #0e7f5e;
    transform: translateX(-1px);
}

.xcart_blog_single_toc_link:hover::before,
.xcart_blog_single_toc_link:focus-visible::before,
.xcart_blog_single_toc_link.is-active::before {
    background: #13906b;
    transform: translateY(-50%) scale(1.2);
}



.xcart_blog_single_content h2 {
    /* font-size: clamp(24px, 3vw, 32px); */
}



.xcart_blog_single_content h4 {
    font-size: 18px;
}

.xcart_blog_single_content p,
.xcart_blog_single_content ul,
.xcart_blog_single_content ol,
.xcart_blog_single_content blockquote {
    margin: 0 0 18px;
}

.xcart_blog_single_content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.xcart_blog_single_content ul,
.xcart_blog_single_content ol {
    padding-right: 20px;
}

.xcart_blog_single_content blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-right: 4px solid #13906b;
    border-radius: 18px;
    background: #f5faf7;
    color: #1f2937;
}

.xcart_blog_single_content a {
    color: #13906b;
}

.xcart_blog_single_content pre,
.xcart_blog_single_content code {
    font-family: "Fira Code", monospace;
}

.xcart_blog_single_content pre {
    overflow-x: auto;
    background: #141c22;
    color: #f8fafc;
    border-radius: 18px;
    padding: 18px;
}

.xcart_blog_related {
    margin-top: 28px;
}

.xcart_blog_related_head,
.xcart_home_blog_head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.xcart_blog_related_title,
.xcart_home_blog_title {
    margin: 10px 0 8px;
    border: 0;
    padding: 0;
    font-size: 28px;
    line-height: 1.5;
    color: #141c22;
}

.xcart_home_blog_section {
    margin-top: 34px;
    margin-bottom: 26px;
    position: relative;
    padding: 4px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.xcart_home_blog_head--compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.xcart_home_blog_title_group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.xcart_home_blog_head--compact .xcart_home_blog_title {
    margin: 0;
    font-size: clamp(26px, 2.5vw, 34px);
    line-height: 1.35;
    color: #171d22;
}

.xcart_home_blog_head--compact .xcart_blog_eyebrow {
    flex-shrink: 0;
}

.xcart_home_blog_actions {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0;
}

.xcart_home_blog_more {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #13906b !important;
}

.xcart_home_blog_more svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 180ms ease;
}

.xcart_home_blog_more:hover svg,
.xcart_home_blog_more:focus-visible svg {
    transform: translateX(-3px);
}

.xcart_home_blog_slider_wrap {
    position: relative;
}

.xcart_home_blog_slider {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    overscroll-behavior-x: contain;
    touch-action: pan-y;
    cursor: grab;
}

.xcart_home_blog_slider::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.xcart_home_blog_slider:focus-visible {
    outline: 2px solid rgba(19, 144, 107, 0.28);
    outline-offset: 4px;
    border-radius: 28px;
}

.xcart_home_blog_slider.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.xcart_home_blog_track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 72px) / 4);
    gap: 24px;
    user-select: none;
}

.xcart_home_blog_slide {
    min-width: 0;
    scroll-snap-align: start;
}

.xcart_blog_card_link_overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: 22px;
}

.xcart_blog_card_link_overlay:focus-visible {
    outline: 3px solid rgba(19, 144, 107, 0.26);
    outline-offset: -3px;
}

.xcart_blog_card--home {
    position: relative;
    min-height: 100%;
    border: 1px solid rgba(23, 29, 34, 0.08);
    border-radius: 22px;
    box-shadow: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.xcart_blog_card--home:hover {
    transform: translateY(-4px);
    border-color: rgba(19, 144, 107, 0.18);
    box-shadow: 0 14px 30px rgba(23, 29, 34, 0.08);
}

.xcart_blog_card--home .xcart_blog_card_media_wrap {
    position: relative;
}

.xcart_blog_card--home .xcart_blog_card_media {
    aspect-ratio: 16 / 9;
    margin: 0;
    border-radius: 22px 22px 0 0;
    background: #eef4f1;
}

.xcart_blog_card--home .xcart_blog_card_fallback {
    min-height: 100%;
    border-radius: 22px 22px 0 0;
}

.xcart_blog_card--home .xcart_blog_card_fallback span {
    font-size: 16px;
}

.xcart_blog_card--home .xcart_blog_card_img {
    object-position: center center;
    transition: transform 180ms ease;
}

.xcart_blog_card--home:hover .xcart_blog_card_img {
    transform: scale(1.03);
}

.xcart_blog_card--home .xcart_blog_chip--overlay {
    position: absolute;
    inset-inline-end: 14px;
    bottom: 12px;
    z-index: 1;
    padding: 7px 12px;
    border: 1px solid rgba(23, 29, 34, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 20px rgba(23, 29, 34, 0.08);
    backdrop-filter: blur(10px);
}

.xcart_blog_card--home .xcart_blog_card_body {
    padding: 16px 18px 18px !important;
    gap: 10px;
}

.xcart_blog_card--home .xcart_blog_card_meta {
    gap: 8px;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 500;
}

.xcart_blog_card--home .xcart_blog_meta_text,
.xcart_blog_card--home .xcart_blog_meta_dot {
    font-size: 12px;
}

.xcart_blog_card--home .xcart_blog_meta_text {
    color: #6c7680;
}

.xcart_blog_card--home .xcart_blog_card_title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.6em;
    color: #171d22;
}

.xcart_blog_card--home .xcart_blog_card_excerpt {
    margin: 0;
    font-size: 12px;
    line-height: 1.9;
    color: #64707b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
        font-weight: 500;
}

@media (max-width: 1100px) {
    .xcart_blog_grid,
    .xcart_blog_grid--related {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .xcart_blog_card--featured {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .xcart_blog_hero,
    .xcart_home_blog_head,
    .xcart_blog_related_head {
        grid-template-columns: 1fr;
        display: grid;
        align-items: start;
    }

    .xcart_blog_single_intro {
        grid-template-columns: 1fr;
        grid-template-areas:
            "hero"
            "cover";
    }

    .xcart_blog_single_layout {
        grid-template-columns: 1fr;
    }

    .xcart_blog_single_sidebar {
        position: static;
    }

    .xcart_blog_single_cover {
        aspect-ratio: 16 / 10;
    }

    .xcart_blog_single_content {
        padding: 26px 20px;
    }

    .xcart_home_blog_head--compact {
        align-items: start;
    }

    .xcart_home_blog_title_group {
        flex-wrap: wrap;
    }

    .xcart_home_blog_track {
        grid-auto-columns: calc((100% - 20px) / 2);
        gap: 20px;
    }

}

@media (max-width: 700px) {
    .xcart_blog_page,
    .xcart_blog_single {
        margin-top: 96px;
    }

    .xcart_blog_grid,
    .xcart_blog_grid--related {
        grid-template-columns: 1fr;
    }

    .xcart_blog_hero_text,
    .xcart_blog_hero_stat,
    .xcart_blog_single_hero,
    .xcart_blog_single_sidebar_card,
    .xcart_blog_single_content {
        border-radius: 20px;
        padding: 22px 18px;
    }

    .xcart_blog_hero_title,
    .xcart_blog_single_title,
    .xcart_blog_related_title,
    .xcart_home_blog_title {
        font-size: 24px;
    }

    .xcart_blog_single_hero_facts {
        grid-template-columns: 1fr;
    }

    .xcart_home_blog_head--compact {
        gap: 10px;
        margin-bottom: 14px;
    }

    .xcart_home_blog_more {
        font-size: 13px;
    }

    .xcart_home_blog_track {
        grid-auto-columns: calc((100% - 14px) / 1.15);
        gap: 14px;
    }

    .xcart_blog_card--home .xcart_blog_card_body {
        padding: 14px 16px 16px;
    }

    .xcart_blog_card--home .xcart_blog_card_title {
        font-size: 17px;
    }
}

/* Blog archive layout v2 */
.xcart_blog_page {
    gap: 30px;
    margin-top: 104px;
    padding-bottom: 72px;
    background: transparent;
}

.xcart_blog_archive_header {
    display: grid;
    gap: 28px;
    padding-top: 22px;
}

.xcart_blog_archive_header_row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.xcart_blog_archive_kicker {
    display: block;
    margin-bottom: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.8;
}

.xcart_blog_archive_header .xcart_blog_archive_title {
    margin: 0 !important;
    color: #0f172a;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.5;
}

.xcart_blog_archive_intro {
    max-width: 430px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    line-height: 2;
    text-align: left;
}

.xcart_blog_discovery_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.xcart_blog_discovery_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: #0f172a;
    font-size: 15px;
    font-weight: 900;
}

.xcart_blog_discovery_label span {
    color: #7c3aed;
    font-size: 19px;
}

.xcart_blog_discovery_bar .xcart_blog_category_filters {
    flex: 1 1 auto;
    justify-content: flex-end;
    padding: 0;
}

.xcart_blog_discovery_bar .xcart_blog_category_filter {
    min-height: 34px;
    padding: 0 16px;
    border: 0;
    border-radius: 8px;
    background: #f4f7fb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    color: #0f172a;
    font-size: 12px;
}

.xcart_blog_discovery_bar .xcart_blog_category_filter small {
    min-width: 20px;
    height: 20px;
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.xcart_blog_discovery_bar .xcart_blog_category_filter:hover,
.xcart_blog_discovery_bar .xcart_blog_category_filter:focus-visible,
.xcart_blog_discovery_bar .xcart_blog_category_filter.is-active {
    background: #eefcf7;
    color: #087457;
    transform: none;
}

.xcart_blog_top_stories {
    display: grid;
    grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
    gap: 24px;
    direction: ltr;
}

.xcart_blog_top_stories > * {
    direction: rtl;
}

.xcart_blog_top_stack {
    display: grid;
    gap: 24px;
}

.xcart_blog_story_tile {
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #0f172a;
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
}

.xcart_blog_story_tile_link {
    position: relative;
    display: block;
    min-height: 100%;
    color: #ffffff !important;
    text-decoration: none !important;
}

.xcart_blog_story_tile--large .xcart_blog_story_tile_link {
    aspect-ratio: 16 / 8.5;
}

.xcart_blog_story_tile--small .xcart_blog_story_tile_link {
    aspect-ratio: 16 / 7;
}

.xcart_blog_story_tile .xcart_blog_card_img,
.xcart_blog_story_tile .xcart_blog_card_fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.xcart_blog_story_tile:hover .xcart_blog_card_img {
    transform: scale(1.04);
}

.xcart_blog_story_shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.18) 35%, rgba(15, 23, 42, 0.88) 100%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.22), transparent 58%);
}

.xcart_blog_story_content {
    position: absolute;
    inset-inline: 26px;
    bottom: 22px;
    display: grid;
    gap: 10px;
    z-index: 1;
}

.xcart_blog_story_tile--small .xcart_blog_story_content {
    inset-inline: 20px;
    bottom: 18px;
}

.xcart_blog_story_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.6;
}

.xcart_blog_story_meta span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-inline-start: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    vertical-align: middle;
}

.xcart_blog_story_title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.55;
}

.xcart_blog_story_tile--small .xcart_blog_story_title {
    font-size: 17px;
    line-height: 1.65;
}

.xcart_blog_story_excerpt {
    display: -webkit-box;
    max-width: 90%;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
    line-height: 2;
}

.xcart_blog_archive_content {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
    direction: ltr;
}

.xcart_blog_archive_content > * {
    direction: rtl;
}

.xcart_blog_recommendations {
    position: sticky;
    top: 116px;
    padding: 26px 20px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.xcart_blog_recommendations_head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.xcart_blog_recommendations_icon {
    display: inline-grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 7px;
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    font-size: 14px;
    font-weight: 900;
}

.xcart_blog_recommendations h2,
.xcart_blog_section_head h2 {
    margin: 0;
    border: 0;
    padding: 0;
    color: #0f172a;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.7;
}

.xcart_blog_recommendations_list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.xcart_blog_recommendations_list li + li {
    border-top: 1px solid #edf2f7;
}

.xcart_blog_recommendations_list a {
    position: relative;
    display: grid;
    gap: 7px;
    padding: 10px 0 12px 6px;
    color: #0f172a;
    text-decoration: none;
}

.xcart_blog_recommendations_list a::after {
        content: "\203A";
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    color: #cbd5e1;
    font-size: 26px;
    line-height: 1;
    transform: translateY(-50%);
    right: 94%;
}

.xcart_blog_recommendations_list a:hover strong,
.xcart_blog_recommendations_list a:focus-visible strong {
    color: #087457;
}

.xcart_blog_recommendation_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #94a3b8;
}

.xcart_blog_recommendation_meta small {
    font-size: 11px;
    font-weight: 800;
    line-height: 1.6;
}

.xcart_blog_recommendations_list strong {
    color: #0f172a;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.9;
    transition: color 0.18s ease;
}

.xcart_blog_latest {
    min-width: 0;
}

.xcart_blog_section_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.xcart_blog_latest .xcart_blog_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.xcart_blog_latest .xcart_blog_card {
    border: 0;
    border-radius: 8px;
    box-shadow: none;
}

.xcart_blog_latest .xcart_blog_card:hover {
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.xcart_blog_latest .xcart_blog_card_media {
    border-radius: 8px;
    aspect-ratio: 4 / 5;
}

.xcart_blog_latest .xcart_blog_card_body {
    padding: 15px 4px 0;
}

.xcart_blog_latest .xcart_blog_card_meta {
    gap: 7px;
}

.xcart_blog_latest .xcart_blog_chip {
    min-height: 0;
    padding: 0;
    background: transparent;
    color: #64748b;
    font-size: 11px;
}

.xcart_blog_latest .xcart_blog_meta_text {
    color: #94a3b8;
    font-size: 11px;
}

.xcart_blog_latest .xcart_blog_card_title,
.xcart_blog_latest .xcart_blog_card--grid .xcart_blog_card_title {
    min-height: 0;
    color: #0f172a;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.75;
}

.xcart_blog_latest .xcart_blog_card_excerpt {
    min-height: 0;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    line-height: 2;
    -webkit-line-clamp: 2;
}

.xcart_blog_latest .xcart_blog_card_link {
    display: none;
}

@media (max-width: 1100px) {
    .xcart_blog_top_stories,
    .xcart_blog_archive_content {
        grid-template-columns: 1fr;
        direction: rtl;
    }

    .xcart_blog_top_stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        order: 2;
    }

    .xcart_blog_top_main {
        order: 1;
    }

    .xcart_blog_recommendations {
        position: static;
    }

    .xcart_blog_latest .xcart_blog_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .xcart_blog_page {
        gap: 22px;
        margin-top: 88px;
    }

    .xcart_blog_archive_header {
        gap: 16px;
        padding-top: 10px;
    }

    .xcart_blog_archive_header_row,
    .xcart_blog_discovery_bar {
        display: grid;
        align-items: start;
    }

    .xcart_blog_archive_intro {
        max-width: none;
        text-align: right;
    }

    .xcart_blog_discovery_bar .xcart_blog_category_filters {
        justify-content: flex-start;
    }

    .xcart_blog_top_stack,
    .xcart_blog_latest .xcart_blog_grid {
        grid-template-columns: 1fr;
    }

    .xcart_blog_story_tile--large .xcart_blog_story_tile_link,
    .xcart_blog_story_tile--small .xcart_blog_story_tile_link {
        aspect-ratio: 16 / 10.8;
    }

    .xcart_blog_story_content {
        inset-inline: 18px;
        bottom: 16px;
    }

    .xcart_blog_story_title {
        font-size: 20px;
        line-height: 1.7;
    }

    .xcart_blog_story_tile--small .xcart_blog_story_title {
        font-size: 16px;
    }

    .xcart_blog_story_excerpt {
        display: none;
    }

    .xcart_blog_latest .xcart_blog_card_media {
        aspect-ratio: 16 / 10;
    }
}

/* Blog archive polish */
.xcart_blog_page {
    --xcart-blog-ink: #17212b;
    --xcart-blog-muted: #64727f;
    --xcart-blog-soft: #f6f8f9;
    --xcart-blog-line: rgba(23, 33, 43, 0.1);
    --xcart-blog-green: #10916e;
    --xcart-blog-green-dark: #087457;
    --xcart-blog-blue: #2563eb;
    --xcart-blog-amber: #f59e0b;
    direction: rtl;
    display: grid;
    gap: 26px;
    margin-top: 104px;
    padding-bottom: 70px;
    color: var(--xcart-blog-ink);
}

.xcart_blog_page *,
.xcart_blog_page *::before,
.xcart_blog_page *::after {
    box-sizing: border-box;
}

.xcart_blog_page h1,
.xcart_blog_page h2,
.xcart_blog_page h3,
.xcart_blog_page p,
.xcart_blog_page dl,
.xcart_blog_page dd {
    margin: 0;
}

.xcart_blog_archive_hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
    gap: 28px;
    align-items: end;
    min-height: 260px;
    padding: 36px;
    border: 1px solid var(--xcart-blog-line);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(16, 145, 110, 0.1) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
    box-shadow: 0 22px 54px rgba(23, 33, 43, 0.07);
}

.xcart_blog_archive_hero::after {
    content: "";
    position: absolute;
    inset-inline: 36px;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--xcart-blog-green), var(--xcart-blog-blue), var(--xcart-blog-amber));
}

.xcart_blog_archive_hero_content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.xcart_blog_page .xcart_blog_eyebrow {
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(16, 145, 110, 0.11);
    color: var(--xcart-blog-green-dark);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 800;
}

.xcart_blog_archive_title {
    margin-top: 16px !important;
    max-width: 720px;
    color: var(--xcart-blog-ink);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0;
}

.xcart_blog_archive_desc {
    margin-top: 12px !important;
    max-width: 680px;
    color: var(--xcart-blog-muted);
    font-size: 16px;
    font-weight: 600;
    line-height: 2;
}

.xcart_blog_archive_stats {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.xcart_blog_archive_stats div {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border: 1px solid rgba(23, 33, 43, 0.09);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(10px);
}

.xcart_blog_archive_stats dt {
    color: var(--xcart-blog-muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.7;
}

.xcart_blog_archive_stats dd {
    color: var(--xcart-blog-ink);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.35;
}

.xcart_blog_category_filters {
    display: flex;
    gap: 10px;
    align-items: center;
    overflow-x: auto;
    padding: 2px 0 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(16, 145, 110, 0.32) transparent;
}

.xcart_blog_category_filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(23, 33, 43, 0.1);
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    text-decoration: none !important;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 800;
    transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.xcart_blog_category_filter small {
    display: inline-grid;
    min-width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 999px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
}

.xcart_blog_category_filter:hover,
.xcart_blog_category_filter:focus-visible,
.xcart_blog_category_filter.is-active {
    border-color: rgba(16, 145, 110, 0.32);
    background: #ecf8f4;
    color: var(--xcart-blog-green-dark);
    transform: translateY(-1px);
}

.xcart_blog_category_filter.is-active small {
    background: #ffffff;
    color: var(--xcart-blog-green-dark);
}

.xcart_blog_page .xcart_blog_featured {
    margin: 0;
}

.xcart_blog_page .xcart_blog_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
    margin-top: 4px;
}

.xcart_blog_page .xcart_blog_card {
    height: auto;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(23, 33, 43, 0.09);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(23, 33, 43, 0.06);
    transform: translateY(0);
}

.xcart_blog_page .xcart_blog_card:hover {
    border-color: rgba(16, 145, 110, 0.32);
    box-shadow: 0 20px 44px rgba(23, 33, 43, 0.1);
    transform: translateY(-3px);
}

.xcart_blog_page .xcart_blog_card--featured {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    min-height: 380px;
}

.xcart_blog_page .xcart_blog_card_media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e9f3f0;
}

.xcart_blog_page .xcart_blog_card--featured .xcart_blog_card_media {
    aspect-ratio: auto;
    min-height: 100%;
}

.xcart_blog_page .xcart_blog_card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.xcart_blog_page .xcart_blog_card:hover .xcart_blog_card_img {
    transform: scale(1.035);
}

.xcart_blog_page .xcart_blog_card_fallback {
    min-height: 100%;
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.34) 0%, transparent 45%),
        linear-gradient(145deg, #111827 0%, #12392f 100%);
}

.xcart_blog_page .xcart_blog_card_body {
    height: auto;
    min-width: 0;
    padding: 22px !important;
    gap: 13px !important;
}

.xcart_blog_page .xcart_blog_card--featured .xcart_blog_card_body {
    justify-content: center;
    padding: 32px;
}

.xcart_blog_page .xcart_blog_card_meta {
    gap: 8px;
    color: var(--xcart-blog-muted);
}

.xcart_blog_page .xcart_blog_chip {
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(16, 145, 110, 0.11);
    color: var(--xcart-blog-green-dark);
    font-size: 12px;
    font-weight: 900;
}

.xcart_blog_page .xcart_blog_meta_text {
    color: var(--xcart-blog-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.8;
}

.xcart_blog_page .xcart_blog_card_title {
    color: var(--xcart-blog-ink);
    font-size: 19px;
    font-weight: 900;
    line-height: 1.75;
    letter-spacing: 0;
}

.xcart_blog_page .xcart_blog_card--featured .xcart_blog_card_title {
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.55;
}

.xcart_blog_page .xcart_blog_card_title a {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.xcart_blog_page .xcart_blog_card--grid .xcart_blog_card_title a,
.xcart_blog_page .xcart_blog_card--grid .xcart_blog_card_title {
    display: -webkit-box;
    min-height: 3.5em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.xcart_blog_page .xcart_blog_card_excerpt {
    color: #536170;
    font-size: 13px;
    font-weight: 500;
    line-height: 2;
    overflow: hidden;
}

.xcart_blog_page .xcart_blog_card--grid .xcart_blog_card_excerpt {
    display: -webkit-box;
    min-height: 6em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.xcart_blog_page .xcart_blog_card_link {
    align-self: flex-start;
    min-height: 40px;
    margin-top: 4px;
    padding: 0 14px;
    border-radius: 8px;
    border-color: rgba(16, 145, 110, 0.24);
    background: #f8fbfa;
    color: var(--xcart-blog-green-dark) !important;
    font-size: 13px;
    font-weight: 900;
}

.xcart_blog_page .xcart_blog_card_link:hover,
.xcart_blog_page .xcart_blog_card_link:focus-visible {
    background: var(--xcart-blog-green);
    color: #ffffff !important;
    transform: translateY(-1px);
}

.xcart_blog_page .xcart_blog_pagination {
    margin-top: 6px;
}

.xcart_blog_page .xcart_blog_page_link {
    border-radius: 8px;
}

.xcart_blog_page .xcart_blog_empty {
    border-radius: 10px;
    border-color: var(--xcart-blog-line);
    box-shadow: 0 14px 34px rgba(23, 33, 43, 0.05);
}

@media (max-width: 1100px) {
    .xcart_blog_page .xcart_blog_archive_hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .xcart_blog_page .xcart_blog_archive_stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .xcart_blog_page .xcart_blog_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .xcart_blog_page .xcart_blog_card--featured {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .xcart_blog_page .xcart_blog_card--featured .xcart_blog_card_media {
        aspect-ratio: 16 / 8;
    }
}

@media (max-width: 700px) {
    .xcart_blog_page {
        gap: 18px;
        margin-top: 92px;
        padding-bottom: 46px;
    }

    .xcart_blog_page .xcart_blog_archive_hero {
        padding: 24px 18px 26px;
        border-radius: 10px;
    }

    .xcart_blog_archive_title {
        font-size: 28px;
        line-height: 1.45;
    }

    .xcart_blog_archive_desc {
        font-size: 14px;
        line-height: 2;
    }

    .xcart_blog_page .xcart_blog_archive_stats {
        grid-template-columns: 1fr;
    }

    .xcart_blog_page .xcart_blog_grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .xcart_blog_page .xcart_blog_card--featured .xcart_blog_card_media {
        aspect-ratio: 16 / 10;
    }

    .xcart_blog_page .xcart_blog_card_body,
    .xcart_blog_page .xcart_blog_card--featured .xcart_blog_card_body {
        padding: 18px;
    }

    .xcart_blog_page .xcart_blog_card--featured .xcart_blog_card_title,
    .xcart_blog_page .xcart_blog_card_title {
        font-size: 18px;
        line-height: 1.8;
    }

    .xcart_blog_page .xcart_blog_card--grid .xcart_blog_card_title,
    .xcart_blog_page .xcart_blog_card--grid .xcart_blog_card_title a,
    .xcart_blog_page .xcart_blog_card--grid .xcart_blog_card_excerpt {
        min-height: 0;
    }
}

/* Final archive v2 overrides */
.xcart_blog_page .xcart_blog_archive_header {
    display: grid;
    gap: 28px;
    padding-top: 0px;
}

.xcart_blog_page .xcart_blog_archive_header .xcart_blog_archive_title {
    margin: 0 !important;
    font-size: 25px;
    line-height: 1.5;
}

.xcart_blog_page .xcart_blog_archive_intro {
    margin: 0;
}

.xcart_blog_page .xcart_blog_top_stories {
    display: grid;
    grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
    gap: 24px;
    direction: ltr;
}

.xcart_blog_page .xcart_blog_top_stories > * {
    direction: rtl;
}

.xcart_blog_page .xcart_blog_story_tile {
    border-radius: 8px;
}

.xcart_blog_page .xcart_blog_archive_content {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
    direction: ltr;
}

.xcart_blog_page .xcart_blog_archive_content > * {
    direction: rtl;
}

.xcart_blog_page .xcart_blog_latest .xcart_blog_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 0;
}

.xcart_blog_page .xcart_blog_latest .xcart_blog_card {
    overflow: visible;
    border: 0;
    border-radius: 8px;
    background: white;
    box-shadow: none;
}

.xcart_blog_page .xcart_blog_latest .xcart_blog_card:hover {
    border-color: transparent;
    box-shadow: none;
    transform: translateY(-2px);
}

.xcart_blog_page .xcart_blog_latest .xcart_blog_card_media {
    overflow: hidden;
    aspect-ratio: 6 / 5;
    border-radius: 8px;
    background: #eef2f7;
}




.xcart_blog_page .xcart_blog_latest .xcart_blog_card--grid .xcart_blog_card_excerpt {
    min-height: 0;
    -webkit-line-clamp: 2;
}

.xcart_blog_page .xcart_blog_latest .xcart_blog_card_link {
    display: none;
}

@media (max-width: 1100px) {
    .xcart_blog_page .xcart_blog_top_stories,
    .xcart_blog_page .xcart_blog_archive_content {
        grid-template-columns: 1fr;
        direction: rtl;
    }

    .xcart_blog_page .xcart_blog_top_stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        order: 2;
    }

    .xcart_blog_page .xcart_blog_top_main {
        order: 1;
    }

    .xcart_blog_page .xcart_blog_latest .xcart_blog_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .xcart_blog_page .xcart_blog_archive_header {
        gap: 16px;
        padding-top: 10px;
    }

    .xcart_blog_page .xcart_blog_archive_header .xcart_blog_archive_title {
        font-size: 23px;
    }

    .xcart_blog_page .xcart_blog_top_stack,
    .xcart_blog_page .xcart_blog_latest .xcart_blog_grid {
        grid-template-columns: 1fr;
    }

    .xcart_blog_page .xcart_blog_latest .xcart_blog_card_media {
        aspect-ratio: 16 / 10;
    }
}
