/* Sen font loaded via theme (enqueued in functions.php with display=swap) */
body {
    font-family: 'Sen', sans-serif;
}
@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1230px;
    }
}

/* SSN Header */
.ssn-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #fff;
    box-shadow: 0 1px 0 rgba(43, 43, 47, 0.08);
}

.ssn-nav {
    padding: 7px 0;
    min-height: 60px;
}

.ssn-logo {
    width: 140px;
    margin-right: 2rem;
}

.ssn-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ssn-logo:hover {
    color: #2B2B2F;
}

.ssn-nav .navbar-nav li {
    display: inline-block;
    margin-right: 35px;
    margin-bottom: 0;
}


.ssn-nav .navbar-nav a {
    font-size: 14px;
    font-weight: 700;
    color: #2B2B2F;
    padding: 8px 0;
    margin: 0;
    transition: all 0.3s ease;
}

.ssn-nav .navbar-nav a:hover {
    color: #5E60CE;
    text-decoration: none;
}

.ssn-nav .navbar-nav .active a {
    color: #5E60CE;
}

.headerBtn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ssn-header-cta {
    font-size: 16px;
    font-weight: 700;
    background: #5E60CE;
    color: #fff;
    border-radius: 8px;
    padding: 0 20px;
    box-shadow: 0px 2px 4px 0px #5E60CE29;
    border: 1px solid #5E60CE;
    text-decoration: none;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.ssn-header-cta.outlineBtn {
    background: transparent;
    color: #5E60CE;
}

.ssn-header-cta:hover {
    background: #4d4fbd;
    color: #fff;
    text-decoration: none;
}

.ssn-offcanvas-close {
    display: none;
}

.searchHolder {
    position: relative;
    min-width: 360px;
}

.searchHolder .form-control {
    border-color: #E6E7E8;
    color: #2B2B2F;
    font-size: 12px;
    padding: 0 35px 0 15px;
}

.searchHolder .form-control::placeholder {
    color: #A5A5A5;
}

.searchHolder .form-control:focus {
    border-color: #5E60CE;
    box-shadow: none;
}

.searchHolder .searchButton {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 32px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 10px;
}

.searchHolder .searchButton button {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.searchHolder .searchButton button:hover {
    transform: rotate(-10deg);
}

.blogHeaderTitleWrapper {
    padding: 80px 0 80px;
    background-color: #F6F6F6;
}

.blogHeaderTitleWrapper .blogHeaderTitleText h1 {
    font-size: 50px;
    font-weight: 600;
    color: #2B2B2F;
    line-height: 1.2;
    margin-bottom: 20px;
}

.blogHeaderTitleWrapper .blogHeaderTitleDescription p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #2B2B2F;
}

.featuredPostWrapper {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.featuredPostWrapper .featuredPic {
    height: 100%;
    position: relative;
}

.featuredPostWrapper .featuredPic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featuredPostWrapper .featuredPic::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 29.82%, #000000 100%);

}

.featuredPostWrapper .featuredContent::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 70%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    pointer-events: none;
    -webkit-mask: linear-gradient(#070808 50%, transparent 65%);
    mask-image: linear-gradient(to top, rgb(7, 8, 8) 0%, rgb(18, 21, 22) 40%, rgba(18, 21, 22, 0.4) 85%);
    -webkit-filter: blur(15px);
    filter: blur(15px);
    z-index: -1;
}


.featuredPostWrapper .featuredPic img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.featuredPostWrapper .featuredContent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 40px 0 60px;
    z-index: 3;
}

.featuredContent .authorImage {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.featuredContent .authorImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featuredContent .authorName p {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 3px;
    margin-left: 10px;
    margin-bottom: 0;
}

.featuredTitle {
    margin: 20px 0;
}

.featuredTitle h2 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.featuredTitle a:hover {
    text-decoration: none;

}

.featuredTitle a:hover h2 {
    color: #5E60CE;
}

.featuredContent .metaData ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.featuredContent .metaData li {
    display: inline-block;
    list-style: none;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
}

.featuredContent .metaData li:first-child {
    padding-right: 10px;
    border-right: 1px solid #fff;
    margin-right: 6px;
}

.featuredContent .actionButton {
    margin-top: 25px;
}

.featuredContent .actionButton a {
    min-width: 150px;
    line-height: 44px;
    font-weight: 700;
    font-size: 14px;
    background: #5e60ce;
    text-decoration: none;
    color: #fff;
    padding: 0 16px;
    border-radius: 4px;
    overflow: visible;
    display: inline-block;
    text-align: center;
}

.postListingWrapper {
    padding: 100px 0;
}

/* Search results: tighter spacing so results are visible without excessive scroll */
.blogHeaderTitleWrapper.search-results-header {
    padding: 32px 0 24px;
}

.postListingWrapper.search-results-list {
    padding: 24px 0 60px;
}

.postListingWrapper .sectionHeading {
    text-align: center;
    margin-bottom: 40px;
}

.postListingWrapper .sectionHeading h2 {
    font-size: 40px;
    font-weight: 700;
    color: #2B2B2F;
    line-height: 1.2;
    margin-bottom: 10px;
}

.postListingWrapper .sectionHeading p {
    font-size: 20px;
    font-weight: 400;
    color: #5F5F65;
}

.postListing [class*="col-"] {
    margin-bottom: 25px;
}


.postItem {
    background-color: #F5F5FB;
    border-radius: 20px;
    padding: 20px 16px 24px;
}

.postItem .postThumbnail {
    position: relative;
    aspect-ratio: 352/220;
    border-radius: 20px;
    overflow: hidden;
}

.postItem .postThumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 1.5s ease-in-out;
}

.postItem:hover .postThumbnail img {
    transform: scale(1.08) rotate(-1deg);
}

.postContent .readTime figure {
    margin-bottom: 0;
    line-height: 1;
}

.postContent {
    margin-top: 30px;
}

.postContent .readTime img {
    min-width: 16px;
}

.postContent .readTime span {
    font-size: 12px;
    font-weight: 400;
    color: #36454F;
    line-height: 1;
    display: inline-block;
    margin-left: 5px;
    position: relative;
    top: 2px;

}

.postContent .postTitle h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1C181F;
    line-height: 1.5;
    margin: 20px 0;
    transition: all 0.3s ease;
}


.postContent .postTitle a:hover {
    text-decoration: none;

}

.postContent .postTitle a:hover h3 {
    color: #5E60CE;
}

.postContent .postDescription p {
    font-size: 14px;
    font-weight: 400;
    color: #2B2B2F;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.postContent .authorInfo {
    margin-top: 25px;
}

.postContent .authorInfo .authorImage {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    top: -4px;
}

.postContent .authorInfo .authorImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.postContent .authorInfo .authorName {
    margin-left: 10px;
}

.postContent .authorInfo .authorName p {
    font-size: 12px;
    font-weight: 500;
    color: #36454F;
    line-height: 1;
    margin: 0;
}

.postContent .authorInfo .authorName span {
    font-size: 12px;
    font-weight: 500;
    color: #36454F;
    line-height: 1;
    margin: 0;
    opacity: .5;
}

/* blog details page */
.blogDetailsWrapper {
    padding: 80px 0;
}

.blogBackBtn {
    margin-left: 14.50%;
    margin-bottom: 60px;
}

.blogBackBtn a {
    font-size: 11px;
    text-transform: uppercase;
    color: #5E60CE;
    text-decoration: none;
    letter-spacing: 2.31px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blogDetailsSidebar {
    position: sticky;
    top: 50px;
}

.blogDetailsSidebar .shareWidget h3 {
    font-size: 14px;
    font-weight: 700;
    color: #D34599;
    text-align: center;
    margin: 0 0 20px;
}

.blogDetailsSidebar .shareWidget .shareLinks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.blogDetailsSidebar .shareWidget .shareLinks a {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blogDetailsSidebar .shareWidget .shareLinks a:hover {
    transform: translateY(-2px) scale(1.1);
}

.blogDetailsContent {
    padding-left: 70px;
}


.blogDetailsContent .publishingInfo ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.blogDetailsContent .publishingInfo li {
    display: inline-block;
    list-style: none;
    font-size: 14px;
    font-weight: 500;
    color: #9799A5;
    line-height: 1;
}

.blogDetailsContent .publishingInfo li:first-child {
    padding-right: 10px;
    border-right: 1px solid #9799A5;
    margin-right: 6px;
}

.blogDetailsContent .postTitle h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #2B2B2F;
    margin: 20px 0;
}


.blogDetailsContent .autharInfo .authorImage {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.blogDetailsContent .autharInfo .authorImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogDetailsContent .autharInfo .authorName p {
    font-size: 14px;
    font-weight: 500;
    color: #5F5F65;
    letter-spacing: 3px;
    margin-left: 10px;
    margin-bottom: 0;
}

.blogDetailsContent .postImage {
    margin: 80px 0 40px;
    height: 600px;
    min-height: 600px;
}

.blogDetailsContent .postImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogDetailsContent .postContent h2,
.blogDetailsContent .postContent h3,
.blogDetailsContent .postContent h4 {
    color: #2B2B2F;
    margin-bottom: 22px;
    line-height: 1.4;
}

.blogDetailsContent .postContent h2 {
    font-size: 36px;
    font-weight: 700;
}

.blogDetailsContent .postContent h3 {
    font-size: 28px;
    font-weight: 600;
}

.blogDetailsContent .postContent h4 {
    font-size: 20px;
    font-weight: 600;
}

.blogDetailsContent .postContent p {
    font-size: 16px;
    font-weight: 400;
    color: #434A4C;
    line-height: 1.62;
    margin-bottom: 25px;
}

.ssn-footer {
    background-color: #F5F5FB;
    padding: 30px 0;
}

.footerRightCol {
    padding-left: 30px;
    margin-left: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-left: 1px solid #CECEE6;
}

.footerRightCol .quickLinks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerRightCol .quickLinks ul li {
    list-style: none;
    display: inline-flex;
    padding-right: 8px;
    margin-right: 8px;
    border-right: 1px solid #6C6C6C;
    line-height: 1;
}

.footerRightCol .quickLinks ul li:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
}

.footerRightCol .quickLinks ul li a {
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    color: #6C6C6C;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footerRightCol .quickLinks ul li a:hover {
    color: #5E60CE;
    text-decoration: none;
}

.copyRightText p {
    font-size: 12px;
    font-weight: 700;
    color: #B4B2B5;
    margin: 0;
}
.errorPageWrapper {
    padding: 80px 0;
  }
  .errorPageWrapper .errorPic {
    max-width: 80%;
    margin: 0 auto 30px;
  }
  .errorPageWrapper .errorPic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .errorPageWrapper .errorButton {
    text-align: center;
  }
  .errorPageWrapper .errorButton .ssn-header-cta {
    width: 100%;
    max-width: 160px;
    height: 48px;
    margin: 0 auto;
  }
@media (max-width: 1199.91px) {
    .blogDetailsContent {
        padding-left: 54px;
    }

    .ssn-nav .navbar-collapse.ssn-offcanvas {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 280px;
        max-width: 85vw;
        background: #fff;
        padding: 0;
        z-index: 1030;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.12);
        align-items: stretch;
        margin: 0;
        border-radius: 0;
    }

    .ssn-nav .navbar-collapse.ssn-offcanvas.show {
        transform: translateX(0);
    }

    .ssn-nav .ssn-offcanvas-inner {
        padding: 24px;
        padding-top: 72px;
        overflow-y: auto;
    }

    .ssn-offcanvas-close {
        position: absolute;
        top: 10px;
        right: 20px;
        padding: 0;
        font-size: 38px;
        line-height: 1;
        color: #2B2B2F;
        background: transparent;
        border: none;
        cursor: pointer;
        opacity: 0.7;
        border-radius: 8px;
        display: flex;
    }

    .ssn-offcanvas-close img {
        width: 35px;
    }

    .ssn-offcanvas-close:hover {
        opacity: 1;
        color: #2B2B2F;
    }

    .ssn-nav-overlay {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: rgba(43, 43, 47, 0.4);
        z-index: 1025;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .ssn-nav .navbar-collapse.ssn-offcanvas.show~.ssn-nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    body.ssn-menu-open {
        overflow: hidden;
    }

    .ssn-nav .nav-link {
        padding: 14px 0;
        margin: 0;
        border-bottom: 1px solid rgba(43, 43, 47, 0.08);
    }

    .ssn-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }


    .ssn-nav {
        justify-content: center;
    }

    .ssn-nav .navbar-toggler {
        margin-left: auto;
        padding: 0;
        border: 0;
    }

    .navHolder {
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left;
    }

    .navbar-nav {
        margin: 0 !important;
        width: 100%;
        text-align: left;
    }

    .ssn-nav .navbar-nav li {
        display: block;
        margin-right: 0;
        margin-bottom: 7px;
        width: 100%;
    }

    .headerBtn {
        flex-direction: column;
        width: 100%;
        margin-top: 30px;
        gap: 12px;
    }

    .ssn-header-cta {
        width: 100%;
    }
}


@media (max-width: 991.91px) {
    .blogDetailsContent {
        padding-left: 0;
    }

    .blogBackBtn {
        margin-left: 16.8%;
    }

    .blogDetailsContent .postImage {
        height: 400px;
        min-height: 400px;
    }


}

@media (max-width: 767.91px) {
    .blogHeaderTitleWrapper .blogHeaderTitleText h1 {
        font-size: 36px;
    }

    .featuredTitle h2,
    .postListingWrapper .sectionHeading h2 {
        font-size: 28px;
    }

    .blogBackBtn {
        margin-left: 0;
        margin-bottom: 40px;
    }

    .blogDetailsWrapper .row {
        flex-direction: column-reverse;
    }

    .blogDetailsContent .postTitle h1 {
        font-size: 34px;
    }

    .blogDetailsContent .postImage {
        height: 300px;
        min-height: 300px;
        margin: 40px 0;
    }

    .blogDetailsContent .postContent h2 {
        font-size: 28px;
    }

    .blogDetailsContent .postContent h3 {
        font-size: 23px;
    }

    .blogDetailsContent .postContent h4 {
        font-size: 18px;
    }

    .blogDetailsSidebar .shareWidget {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .blogDetailsSidebar .shareWidget h3 {
        margin-bottom: 0;
    }

    .blogDetailsSidebar .shareWidget .shareLinks {
        flex-direction: row;
    }

    .ssn-nav {
        justify-content: space-between;
    }

    .ssn-logo {
        width: 100px;
        margin-right: 1rem;
    }

    .searchHolder {
        min-width: auto;
        flex-grow: 1;
        margin-right: 15px;
    }

    .ssn-nav .navbar-collapse.ssn-offcanvas {
        width: 100%;
        max-width: 100vw;
    }

    .footerData {
        flex-direction: column;
    }

    .footerRightCol {
        padding-left: 0;
        margin-left: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        border-left: 0;
        border-top: 1px solid #CECEE6;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .copyRightText {
        margin-top: 15px;
    }

    .footerRightCol .quickLinks ul li {
        padding-right: 5px;
        margin-right: 5px;
    }
}