.post-wrapper {
    display: flex;
    gap: 16px;
}

.single-post .blog-comments-section {
	display: none;
}

.single-post figcaption.wp-element-caption {
    font-size: 16px;
    text-align: left;
    font-style: italic;
}

.archive-title span {
    text-transform: capitalize;
}

.single-post .pet-friendly-btn {
    display: none;
}

.single-post .the-post-content .wp-block-image img {
	border-radius: 20px;
}

.single-post .post-wrapper {
    padding: 0px 0px 50px 0px;
    gap: 70px;
}

/* Single post: narrow left sidebar (TOC + categories) + main column */
.single-post .post-wrapper--single {
    align-items: flex-start;
    gap: 48px;
    padding-top: 16px;
}

.single-post .post-wrapper--single .sp-content {
    flex: 1;
    min-width: 0;
    max-width: none;
}

.single-post .post-wrapper--single .left-bar--single {
    flex: 0 0 300px;
    max-width: 300px;
    width: 100%;
    position: sticky;
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 100px);
    align-self: flex-start;
}

.post-sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-sidebar-widget {
    background: #E8EFF6;
    border-radius: 16px;
    padding: 22px 0px;
}

.post-sidebar-widget__title {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    color: #000000;
    padding: 0 30px;
}

.post-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.post-sidebar-widget li a {
    padding: 3px 30px;
}

.post-toc-list a {
    display: block;
    padding: 3px 30px 3px;
    position: relative;
    color: #757575;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.post-toc-list a:hover {
    color: #000;
}

.post-toc-list a.is-active {
    color: #000;
}

.post-toc-list a.is-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #e53935;
}

.post-toc-item--sub a {
    padding-left: 28px;
    font-size: 13px;
    color: #444;
}

.post-sidebar-categories {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-sidebar-categories a {
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.post-sidebar-categories a:hover {
    color: #000;
}

.post-breadcrumbs {
    font-size: 12px;
    font-weight: 500;
    color: #969696;
    margin: 0 0 18px;
    line-height: 1.5;
}

.post-breadcrumbs a {
    color: #969696;
    text-decoration: none;
}

.post-breadcrumbs a:hover {
    color: #D74120;
    text-decoration: underline;
}

.post-breadcrumbs__current {
    color: #969696;
}

.post-breadcrumbs__sep {
    margin: 0 6px;
    opacity: 0.65;
}

.post-header--single .post-title {
    padding-bottom: 12px;
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.12;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
}

.post-header--single .post-summery {
    padding-bottom: 0;
    margin-top: 8px;
}

.post-lead {
    color: #616161;
    font-size: 16px;
    line-height: 1.65;
    max-width: 800px;
    font-weight: 500;
}

.post-category-pills {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.post-category-pills li {
    margin: 0;
}

.post-category-pill {
    display: inline-block;
    padding: 8px 18px;
    background: #083648;
    color: #fff !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-decoration: none !important;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.post-category-pill:hover {
    background: #083648;
    transform: translateY(-1px);
}

.single-post .post-wrapper--single .post-info {
    border-color: #e8e8e8;
    padding: 22px 0;
    margin-top: 12px;
    margin-bottom: 4px;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.single-post .post-wrapper--single .author {
    border-radius: 999px;
    border-width: 2px;
    border-color: #D74120;
}

.single-post .post-wrapper--single .slider-section .slider,
.single-post .post-wrapper--single .slider-section .slider-img {
    border-radius: 16px;
    overflow: hidden;
}

.single-post .post-wrapper--single .slider-section .slider-img img {
    border-radius: 16px;
}

.post-header .post-title {
    padding-bottom: 24px;
}

.post-header .post-summery {
    padding-bottom: 34px;
}

.single-post .sp-content {
    min-width: 850px;
    max-width: 1060px;
}

.single-post .sp-content .post-info {
    border-top: 1px solid #E7E7E7;
    border-bottom: 1px solid #E7E7E7;
    padding: 27px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-info .wrapper {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.post-info .wrapper span {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    text-transform: uppercase;
    min-width: 100%;
}

.post-info .post-cat:hover img{
    filter: invert(35%) sepia(14%) saturate(5270%) hue-rotate(197deg) brightness(111%) contrast(85%);
}

.post-info .post-cat a{
    transition: all 0.25s ease-in-out;
}

.post-info .post-cat a:hover{
    color: #4076e2;
}

.single-post .author {
    border-radius: 50px;
    border: 2px solid #000;
    background: #FFF;
    padding: 6px 15px 6px 6px;
    gap: 15px;
    max-width: 220px;
    width: 100%;
    max-width: max-content;
}

.sp-content .author-info a,
.single-post .author a {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    text-transform: uppercase;
}

.sp-content .author-info .author-desc img{
    width: 85px;
    height: auto;
    border: 1px solid rgba(0,0,0,0.3);
}

.sp-content .author-info a:hover,
.single-post .author a:hover {
    text-decoration: underline;
}

.single-post .sp-content p {
    color: #6B6B6B;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
}

.share-buttons {
    gap: 10px;
}

.share-buttons a {
    border: 2px solid #D74120;
    border-radius: 50px;
    width: 38.5px;
    height: 38.5px;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-buttons a:hover {
    background-color: #D74120;
}

.share-buttons a img {
    transition: filter 0.3s ease-in-out;
}

.share-buttons a:hover img {
    filter: brightness(0) invert(1);
}

.share-buttons a:hover svg,
.share-buttons a:hover svg path {
    fill: #fff;
}

.share-buttons a svg,
.share-buttons a svg path {
    fill: #D74120;
}

.single-post .share-wrapper .share-counts {
    color: #000;
    line-height: 16.8px;
    text-transform: capitalize;
    text-align: end;
    padding-top: 10px;
}

/*Slider*/

.single-post .post-img-slider {
    padding: 40px 0 55px;
}

.single-post .slider-buttons::before {
    display: none;
}

.single-post .slider-wrapper .slider-buttons {
    position: absolute;
    top: auto;
    bottom: 0;
    transform: translateY(-50%);
    right: 30px;
    left: 30px;
    width: auto;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.single-post .the-post-content .wp-block-varoom-image-slider.post-img-slider .slider-wrapper .slider-buttons {
    z-index: 3;
}

.single-post .slider-section .slider {
    height: 575px;
}

.single-post .slider .slider-img {
    height: 575px;
}

.single-post .slider:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.00) 100%);
    height: 77px;
}

.single-post .slider h2 {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
    line-height: 16.8px
}

.single-post .post-img-slider .varoom-slider-expand {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.45);
    cursor: pointer;
    transition: background 0.2s ease;
}

.single-post .post-img-slider .varoom-slider-expand:hover {
    background: rgba(0, 0, 0, 0.65);
}

.single-post .post-img-slider .varoom-slider-expand img {
    display: block;
    width: 20px;
    height: 20px;
}

.varoom-slider-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
}

.varoom-slider-lightbox[hidden] {
    display: none !important;
}

.varoom-slider-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
}

.varoom-slider-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 40px 24px;
    box-sizing: border-box;
}

.varoom-slider-lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.varoom-slider-lightbox__close img {
    display: block;
    filter: brightness(0) invert(1);
}

.varoom-slider-lightbox__media {
    position: relative;
    max-width: min(1200px, 100%);
    max-height: calc(100vh - 120px);
}

.varoom-slider-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 120px);
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 12px;
}

.varoom-slider-lightbox__caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    margin: 0;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 16.8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.varoom-slider-lightbox__caption[hidden] {
    display: none;
}

.varoom-slider-lightbox__nav {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 24px;
}

.varoom-slider-lightbox__nav-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.85);
}

.varoom-slider-lightbox__prev,
.varoom-slider-lightbox__next {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.varoom-slider-lightbox__prev img,
.varoom-slider-lightbox__next img {
    display: block;
}

body.varoom-slider-lightbox-open {
    overflow: hidden;
}

.single-post h3 {
    padding: 40px 0 20px;
}

.single-post .the-post-content ul {
    list-style: inherit;
    padding-left: 2rem;
    line-height: 1.6;
}

.single-post .the-post-content a{
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #4076e2;
}

html:has(.single-post) {
    scroll-padding-top: var(--varoom-scroll-padding-top, 148px);
}

.single-post .the-post-content h2,
.single-post .the-post-content h3 {
    scroll-margin-top: var(--varoom-scroll-padding-top, 148px);
}

.single-post .the-post-content h3{
    padding: unset;
}

.single-post .the-post-content .content-text-title{
    margin-bottom: 10px;
}

.single-post .li-area:has(ol) {
    background: #F2F5F6;
    padding: 50px;
    margin-top: 50px;
}

.single-post .li-area ol {
    padding-left: 15px;
    margin: 0;
}

.single-post .li-area ol > li {
    color: #8E8E8E;
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.14px;
}

.single-post .li-area ul {
    padding-top: 25px;
}

.single-post .li-area ul li a {
    color: #349BD6;
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.14px;
    text-decoration-line: underline;
}

.single-post .quote {
    padding: 70px 0;
    display: flex;
    align-items: center;
    gap: 34px;
}

.post-faq {
    background: #F2F5F6;
    margin-bottom: 60px;
}

.post-faq .title {
    padding-bottom: 25px;
}

.single-post .post-faq .content-container {
    padding: 50px;
}

.single-post .post-faq .content-wrapper {
    display: flex;
    gap: 25px;
    flex-direction: column;
}

.post-faq .content-wrapper .qa-box {
    width: 100%;
}

.post-faq .qa-box .qn {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
}

.sp-content .post-images {
    padding-bottom: 50px;
}

.sp-content .post-images .image-box {
    max-width: 520px;
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.sp-content .post-images .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-content .info-card-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.sp-content .info-card-wrapper .info-card {
    width: calc(50% - 10px);
    padding: 30px;
    background: #F2F5F6;
}

.info-card-wrapper .info-card .title {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 15px;
}

.sp-content .author-info:not(.comment-content) {
    border-top: 1px solid #E7E7E7;
    border-bottom: 1px solid #E7E7E7;
    padding: 38px 0;
    margin-top: 53px;
    margin-bottom: 50px;
}

.sp-content .author-info .author-img {
    width: 80px;
    height: 80px;
}

.sp-content .author-info p {
    max-width: 613px;
    width: 100%;
}

/* Related Stories (single post) — dark section + white cards */
.single-post .related-posts.related-posts--stories {
    margin-top: 0;
    padding-bottom: 120px;
}

.related-posts--stories .related-posts__inner {
    max-width: 1580px;
    background: #083648;
    border-radius: 30px;
    padding: 70px 80px 60px;
}

.related-posts__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 24px;
    margin-bottom: 20px;
}

.related-posts__title {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -0.02em;
}

.related-posts__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

/* Match home Trending toolbar dropdown + All Filters (scoped to Related Stories) */
.related-posts--stories .trending-stories__actions {
    flex: 0 1 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px 14px;
}

.related-posts--stories .trending-stories__filter-wrap.trending-stories__dropdown {
    position: relative;
    display: inline-flex;
    max-width: 100%;
    min-width: 0;
}

.related-posts--stories .trending-stories__dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 168px;
    max-width: 100%;
    padding: 10px 14px 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    /* background-color: rgba(255, 255, 255, 0.08); */
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    line-height: 1.25;
    color: #f1f5f9;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    text-align: left;
}

.related-posts--stories .trending-stories__dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.related-posts--stories .trending-stories__dropdown-value {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.related-posts--stories .trending-stories__dropdown-chevron {
    display: flex;
    flex-shrink: 0;
    color: #cbd5e1;
    transition: transform 0.2s ease;
    display: none;
}

.related-posts--stories .trending-stories__dropdown.is-open .trending-stories__dropdown-chevron {
    transform: rotate(180deg);
}

.related-posts--stories .trending-stories__dropdown-toggle:focus {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 2px;
}

.related-posts--stories .trending-stories__dropdown-toggle:focus:not(:focus-visible) {
    outline: none;
}

.related-posts--stories .trending-stories__dropdown-panel {
    position: absolute;
    z-index: 40;
    top: calc(100% + 8px);
    right: 0;
    min-width: 100%;
    width: max(100%, 220px);
    max-width: min(320px, calc(100vw - 32px));
    padding: 8px;
    background: #083648;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    max-height: min(320px, 50vh);
    overflow-y: auto;
}

.related-posts--stories .trending-stories__filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.related-posts--stories .trending-stories__filter-item {
    margin: 0;
    padding: 0;
}

.related-posts--stories .trending-stories__dropdown-panel .trending-stories__filter-btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    background-color: transparent;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    line-height: 1.25;
    color: #e2e8f0;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.related-posts--stories .trending-stories__dropdown-panel .trending-stories__filter-btn:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.related-posts--stories .trending-stories__dropdown-panel .trending-stories__filter-btn.is-active,
.related-posts--stories .trending-stories__dropdown-panel .trending-stories__filter-btn[aria-selected="true"] {
    background-color: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.related-posts--stories .trending-stories__dropdown-panel .trending-stories__filter-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.35);
    outline-offset: 0;
}

.related-posts--stories .trending-stories__dropdown-panel .trending-stories__filter-btn:focus:not(:focus-visible) {
    outline: none;
}

.related-posts--stories .trending-stories__all-filters {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    /* background: rgba(255, 255, 255, 0.06); */
    color: #e2e8f0;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.related-posts--stories .trending-stories__all-filters:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.related-posts--stories .trending-stories__all-filters-icon {
    display: flex;
    color: #cbd5e1;
}

.related-posts__rule {
    border: none;
}

.related-posts__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 20px;
    margin-bottom: 36px;
}

.related-story-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.related-story-card__media-link {
    display: block;
    text-decoration: none;
}

.related-story-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8eaef;
}

.related-story-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.related-story-card__img--placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 120px;
    background: linear-gradient(135deg, #dde2eb 0%, #eef1f6 100%);
}

.related-story-card__body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.related-posts__grid .related-story-card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
    padding: 0;
}

.related-story-card__title a {
    color: inherit;
    text-decoration: none;
}

.related-story-card__title a:hover {
    color: #d74120;
}

.related-story-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
}

.related-story-card__author-pill {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #3A5F3E;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #3A5F3E;
    line-height: 1.3;
}

.related-story-card__meta-line {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    line-height: 1.4;
}

.related-story-card__excerpt {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #797979;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-story-card__actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    padding-top: 4px;
}

.related-story-card__read-more {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 52px;
    background: #D74120;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.15s ease;
}

.related-story-card__read-more:hover {
    background: #c43414;
    color: #fff !important;
    transform: translateY(-1px);
}

.related-posts__footer {
    display: flex;
    justify-content: flex-end;
}

.related-posts__show-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 52px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.related-posts__show-all:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.related-posts__show-all-icon {
    font-size: 16px;
    line-height: 1;
}

.single-post .tag-wrapper{
    padding-top: 45px;
}

.single-post .tag-wrapper li{
    display: inline-block;
    margin-right: 21px;
    margin-bottom: 7px;
}

.single-post .tag-wrapper a{
    color: #000;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.12px;
    text-transform: uppercase;
    border-bottom: 2px solid #000;
    transition: all 0.25s ease-in-out;
}

.single-post .tag-wrapper a:hover{
    color: #4076e2;
    border-color: #4076e2;
}

/* Single post footer: tag pills + author box + share column */
.single-post .post-single-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #d8d8d8;
}

.single-post .post-single-footer .blog-footer {
    margin-bottom: 28px;
}

.single-post .post-tags-heading {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b6b6b;
}

.single-post .tag-wrapper--pills {
    padding-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    list-style: none;
    margin: 0;
}

.single-post .tag-wrapper--pills li {
    display: inline-block;
    margin: 0;
}

.single-post .tag-wrapper--pills .tag-pill {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #c9c9c9;
    background: #fff;
    color: #666 !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none !important;
    line-height: 1.3;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.single-post .tag-wrapper--pills .tag-pill:hover {
    border-color: #083648;
    color: #ffffff !important;
    background: #083648;
}

.single-post .tag-wrapper--pills .tag-pill--featured {
    background: #083648;
    border-color: #083648;
    color: #fff !important;
}

.single-post .tag-wrapper--pills .tag-pill--featured:hover {
    background: #083648;
    border-color: #083648;
    color: #fff !important;
}

.post-footer-end {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px 40px;
}

.author-bio-box {
    flex: 1 1 320px;
    min-width: 0;
    max-width: 100%;
    border: 2px solid #1a2744;
    border-radius: 16px;
    padding: 28px 32px;
    background: #fff;
}

.author-bio-box__inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.author-bio-box__avatar {
    width: 96px;
    height: 96px;
    min-width: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(26, 39, 68, 0.15);
}

.author-bio-box__name {
    display: inline-block;
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1a2744 !important;
    text-decoration: none !important;
}

.author-bio-box__name:hover {
    text-decoration: underline !important;
    color: #4076e2 !important;
}

.author-bio-box__desc,
.author-bio-box__desc p {
    margin: 0;
    color: #6b6b6b;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
}

.author-bio-box__desc p + p {
    margin-top: 10px;
}

.author-bio-box__desc a {
    color: #1a2744;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.author-bio-box__desc a:hover {
    color: #4076e2;
}

.post-footer-end .share-wrapper--footer {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 200px;
}

.single-post .share-wrapper--footer .share-counts--footer {
    margin: 0 0 0 auto;
    padding: 0 0 14px;
    border-bottom: 1px solid #d8d8d8;
    width: 100%;
    text-align: right;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #9a9a9a;
    text-transform: uppercase;
    line-height: 1.4;
}

.share-wrapper--footer .share-buttons {
    margin-top: 14px;
    gap: 10px;
}

.share-wrapper--footer:not(.share-wrapper--footer-has-count) .share-buttons {
    padding-top: 14px;
    border-top: 1px solid #d8d8d8;
    margin-top: 0;
}

.share-wrapper--footer.share-wrapper--footer-has-count .share-buttons {
    border-top: none;
    margin-top: 14px;
}

.share-wrapper--footer .share-buttons a {
    border-width: 2px;
    border-color: #083648;
    background: #fff;
    color: #083648;
}

.share-wrapper--footer .share-buttons a svg path {
    fill: #083648;
}

.share-wrapper--footer .share-buttons a:hover {
    background: #083648;
}

.share-wrapper--footer .share-buttons a:hover img {
    filter: brightness(0) invert(1);
}

.share-wrapper--footer .share-buttons a:hover svg,
.share-wrapper--footer .share-buttons a:hover svg path {
    fill: #fff;
    color: #fff;
}

.share-wrapper--footer .share-buttons a.copyBtn img {
    filter: brightness(0) invert(1);
}

.share-wrapper--footer .share-buttons a.copyBtn:hover {
    background: #243352;
    border-color: #243352;
}

.post-wrapper .left-bar {
    position: sticky;
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 90px);
    height: 100%;
    width: 100%;
}

.left-bar .sm-post-wrapper .sm-post-card img,
.single-post .sm-post-wrapper .sm-post-card img {
    max-width: 98px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.left-bar .sm-post-wrapper .sm-post-card {
    border-top: 1px solid #e7e7e7;
    padding: 40px 0;
    width: 100%;
    max-width: 370px;
}

.left-bar .sm-post-card .post-title {
    max-width: 266px;
    width: 100%;
}

.left-bar .sm-post-wrapper .sm-post-card:last-child {
    border-bottom: 1px solid #e7e7e7;
}

.single-post .post-category{
    width: fit-content;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

/* PAGE STYLES */
.page-wrapper .post-wrapper{
    gap: 80px;
}

.single-post .sm-post-wrapper .post-category {
    border-bottom: 2px solid #ABABAB;
}

.page-wrapper .left-part{
    min-width: 1060px;
    max-width: 1060px;
}

.page-wrapper .left-part .sub-title{
    color: #8E8E8E;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.14px;
}

.post-wrapper .left-part h2{
    padding-bottom: 16px;
}

.post-wrapper .card-wrapper{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 38px;
}

.page-heading-info p {
    color: #8E8E8E;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.14px;
    padding-bottom: 13px;
}

.card-wrapper .about-card{
    width: calc(50% - 10px);
    padding: 50px;
    background-color: #F2F5F6;
}

.about-card h4{
    padding-bottom: 14px;
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
}

.about-card p{
    color: #8E8E8E;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.16px;
}

.about-card.img-card{
    padding: 0;
}

.about-card.img-card img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-card.sp-card{
    background-color: #D74120;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-card.sp-card h3{
    color: #ffffff;
}

.single-post .wp-block-table .has-fixed-layout tbody tr, .single-post .wp-block-table .has-fixed-layout thead tr {
    border-color: #E8EFF6 !important;
}

.single-post .wp-block-table  table thead tr {
    background: #D4DAE1;
    border-radius: 12px;
    text-align: left;
}

.single-post ul.wp-block-list {
    background: #E8EFF6;
    padding: 60px;
    border-radius: 10px;
    margin-bottom: 60px !important;
}

.single-post .wp-block-table .has-fixed-layout {
    margin-bottom: 40px;
}

.single-post ul.wp-block-list li {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.single-post .wp-block-table table thead tr:first-child th:first-child {
    border-top-left-radius: 10px;
}
.single-post .wp-block-table table thead tr:first-child th:last-child {
    border-top-right-radius: 10px;
}

.single-post .wp-block-table td, .wp-block-table th {
    border: 0px solid;
    padding: 20px;
    border-right: 1px solid #C0C9D3;
    border-bottom: 1px solid #fff;
}

.single-post .wp-block-table tr{
    background: #E8EFF6;
}

.single-post .wp-block-table table tr td:first-child,
.single-post .wp-block-table tr th:first-child {
    width: 55%;
}

.single-post .wp-block-table thead {
    border-bottom: 0;
}

.single-post .wp-block-table table thead tr th:last-child,
.single-post .wp-block-table table tbody tr td:last-child {
    border-right: 0px;
}

.single-post .wp-block-table .has-fixed-layout tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
.single-post .wp-block-table .has-fixed-layout tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

@media only screen and (max-width: 1575px) {
    .page-wrapper .left-bar {
        display: none;
    }

    .page-wrapper .left-part {
        max-width: 100%;
        min-width: 100%;
    }
}

@media only screen and (max-width: 1575px) and (min-width: 1281px) {
	.single-post .post-wrapper--single .sp-content {
		min-width: 0;
		max-width: none;
	}
	.single-post .sp-content {
		min-width: 840px;
		max-width: 840px;
	}
	.single-post .post-wrapper {
		gap: 40px;
	}
	.left-bar .sm-post-wrapper .sm-post-card{
		gap: 20px;
	}
	.sm-post-card .post-title {
		font-size: 16px;
		line-height: normal; 
	}
	.left-bar .sm-post-card .post-title, .left-bar .sm-post-wrapper .sm-post-card {
		max-width: 100%;
	}
}

@media only screen and (max-width: 1280px) {
    .single-post .left-bar:not(.left-bar--single) {
        display: none;
    }

    .single-post .sp-content {
        max-width: 100%;
        min-width: 100%;
    }

    .single-post .post-wrapper--single .left-bar--single {
        flex: 1 1 100%;
        max-width: 100%;
        position: static;
        top: auto;
    }

    .single-post .post-wrapper--single {
        flex-wrap: wrap;
    }
	
}

@media only screen and (max-width: 1199px) {

    .post-info .left-part {
/*         flex-direction: column; */
    }

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

@media only screen and (max-width: 991px) {
    .related-posts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 768px) {
    .post-footer-end {
        flex-direction: column;
    }

    .post-footer-end .share-wrapper--footer {
        align-items: center;
        width: 100%;
        min-width: 0;
    }

    .single-post .share-wrapper--footer .share-counts--footer {
        text-align: center;
    }

/*     .single-post .sp-content .post-info {
        flex-direction: column;
        gap: 40px;
    } */

    .post-info .share-wrapper {
        display: flex;
        flex-direction: column;
        width: fit-content;
    }

    .single-post .share-wrapper .share-counts {
        text-align: start;
    }

    .single-post .quote img {
        display: none;
    }

    .sp-content .info-card-wrapper {
        flex-direction: column;
    }

    .sp-content .info-card-wrapper .info-card {
        width: 100%;
    }

    .sp-content .author-info {
        flex-direction: column;
        align-items: center;
    }

    .sp-content .author-info .author-desc {
        flex-direction: column;
        text-align: center;
    }

    .single-post .share-wrapper .share-counts {
        text-align: center;
    }
}

@media only screen and (max-width: 640px) {

    .single-post .main-wrapper .post-wrapper{
		padding-bottom: 0;
	}

    .single-post .content-container{
	    padding-left: 20px;
	    padding-right: 20px;
	}

    .single-post .slider .slider-img,
    .single-post .slider-section .slider {
        height: 100%;
        aspect-ratio: 1;
    }

    .single-post .slider .slider-img img {
        padding-bottom: unset;
    }

    .post-info .left-part .info {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .left-part .info .wrapper img {
        min-width: 15px;
    }

    .single-post .related-posts.related-posts--stories {
        padding: 40px 0 36px;
    }

    .related-posts__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .related-posts__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .related-posts--stories .trending-stories__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .related-posts__footer {
        justify-content: center;
    }

    .single-post .li-area:has(ol) {
		padding: 40px;
	}

    .single-post .post-faq .content-container{
		padding: 40px;
	}

    .single-post .sp-content .post-images{
	    gap: 8px;
    }

    .sp-content .author-info:not(.comment-content){
		margin-bottom: 0;
	}

    .comments-area .comment-respond{
		margin-bottom: 0;
	}
	.single-post .sp-content .post-info{
		gap: 20px;
	}

	.author-bio-box {
		padding: 22px 20px;
	}

	.author-bio-box__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.author-bio-box__body {
		width: 100%;
	}

	.author-bio-box__desc {
		text-align: left;
	}

	.related-posts--stories .trending-stories__actions {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.related-posts--stories .trending-stories__filter-wrap.trending-stories__dropdown {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}

	.related-posts--stories .trending-stories__dropdown-toggle {
		width: 100%;
		min-width: 0;
	}

	.related-posts--stories .trending-stories__dropdown-panel {
		right: 0;
		left: 0;
		width: auto;
		max-width: none;
	}

	.related-posts--stories .trending-stories__all-filters {
		width: 100%;
		justify-content: center;
	}
}

@media only screen and (max-width: 480px) {
    .post-wrapper .post-card {
        min-height: 285px;
    }
}