

    /* newsroom */
    /* =========================================
   SavvyHRMS Newsroom
    ========================================= */

    .savvy-newsroom {
        max-width: 1200px;
        margin: 0 auto;
        padding: 70px 20px 0px;
    }


    /* =========================================
   Header
    ========================================= */

    .savvy-newsroom-header {
        max-width: 860px;
        margin: 0 auto 50px;
        text-align: center;
        margin-bottom: 0px;
         background-image: url('/wp-content/uploads/2026/08/img.webp');
        background-repeat: no-repeat;
        background-position: top center;
        background-size: 100%;
        opacity: 1;
    }

    .savvy-newsroom-label {
        display: inline-block;
        margin-bottom: 12px;
        padding: 6px 14px;
        border-radius: 30px;
        background: #eef2ff;
        color: #515cff;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: capitalize;
    }

    .savvy-newsroom-title {
        margin: 0 0 15px;
        color: #141414;
        font-size: 85px;
        line-height: 1.15;
        font-weight: 700;
    }

    .savvy-newsroom-description {
        max-width: 680px;
        margin: 0 auto;
        color: #141414;
        font-size: 17px;
        line-height: 1.7;
    }


    /* =========================================
   Grid
    ========================================= */

    .savvy-newsroom-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
    }





.news-latest-card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-bottom: 3rem;
        position: relative;
        padding-top: 12rem;
        padding-bottom: 3rem;
    }

    .news-latest-card:after {
        content: "";
        position: absolute;
        left: -10%;
        right: -10%;
        width: 120%;
        height: 100%;
        z-index: -1;
        background-image: url('https://savvyhrms.com/wp-content/uploads/2026/07/Shape.png');
        background-repeat: no-repeat;
        background-position: top center;
        background-size: 100%;
        opacity: 1;
    }


    .news-latest-card div {
        margin: auto;
    }

    .news-latest-card div h2 {
        font-size: 32px;
        font-weight: 700;
        line-height: 32px;
        margin-bottom: 1rem;
    }

    .news-latest-card div p {
        font-size: 16px;
        color: #141414;
        line-height: 24px;
        margin-bottom: 1.1rem;
    }

    .news-latest-card div a {
        background: #515cff;
        color: #fff;
        padding: 6px 15px;
        border-radius: 6px;
    }
    /* =========================================
   Card
    ========================================= */

    .savvy-newsroom-card {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        margin: 0;
        padding: 0;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
        transition:
            transform 0.25s ease,
            box-shadow 0.25s ease,
            border-color 0.25s ease;
    }

    .savvy-newsroom-card:hover {
        transform: translateY(-6px);
        border-color: #d7dcff;
        box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
    }


    /* =========================================
   Image
    ========================================= */

    .savvy-newsroom-image {
        position: relative;
        display: block;
        height: 210px;
        overflow: hidden;
        background: #f3f4f6;
    }

    .savvy-newsroom-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .savvy-newsroom-card:hover .savvy-newsroom-image img {
        transform: scale(1.05);
    }


    /* Placeholder */

    .savvy-newsroom-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg,
                #eef2ff,
                #e0e7ff);
    }

    .savvy-newsroom-placeholder span {
        color: #4f46e5;
        font-size: 42px;
        font-weight: 800;
    }


    /* =========================================
   Content
    ========================================= */

    .savvy-newsroom-content {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 24px;
    }


    /* =========================================
   Meta
    ========================================= */

    .savvy-newsroom-meta {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
        font-size: 12px;
    }

    .savvy-newsroom-category {
        padding: 5px 10px;
        border-radius: 20px;
        background: #eef2ff;
        color: #4f46e5;
        font-weight: 600;
    }

    /* External / "As seen in" badge - visually distinct from category */
    .savvy-newsroom-source-external {
        padding: 5px 10px;
        border-radius: 20px;
        background: #fff7ed;
        color: #c2410c;
        font-weight: 600;
    }

    .savvy-newsroom-date {
        color: #9ca3af;
    }


    /* =========================================
   Title
    ========================================= */

    .savvy-newsroom-card-title {
        margin: 0 0 12px;
        font-size: 21px;
        line-height: 1.4;
        font-weight: 700;
    }

    .savvy-newsroom-card-title a {
        color: #111827;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .savvy-newsroom-card-title a:hover {
        color: #4f46e5;
    }


    /* =========================================
   Excerpt
    ========================================= */

    .savvy-newsroom-excerpt {
        margin-bottom: 20px;
        color: #6b7280;
        font-size: 14px;
        line-height: 1.7;

        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }


    /* =========================================
   Read More
    ========================================= */

    .savvy-newsroom-read-more {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        margin-top: auto;
        color: #4f46e5;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
    }

    .savvy-newsroom-read-more span {
        font-size: 18px;
        transition: transform 0.2s ease;
    }

    .savvy-newsroom-read-more:hover span {
        transform: translateX(4px);
    }


    /* =========================================
   Pagination
    ========================================= */

    .savvy-newsroom-pagination {
        margin-top: 50px;
        text-align: center;
    }

    .savvy-newsroom-pagination .nav-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .savvy-newsroom-pagination .page-numbers {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: #fff;
        color: #374151;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .savvy-newsroom-pagination .page-numbers:hover,
    .savvy-newsroom-pagination .page-numbers.current {
        border-color: #4f46e5;
        background: #4f46e5;
        color: #fff;
    }


    /* =========================================
   Empty State
    ========================================= */

    .savvy-newsroom-empty {
        max-width: 650px;
        margin: 60px auto;
        padding: 50px 30px;
        text-align: center;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        background: #fff;
    }

    .savvy-newsroom-empty h2 {
        margin: 0 0 10px;
        color: #111827;
        font-size: 26px;
    }

    .savvy-newsroom-empty p {
        margin: 0;
        color: #6b7280;
        line-height: 1.7;
    }


    /* =========================================
   Tablet
    ========================================= */

    @media (max-width: 991px) {

        .savvy-newsroom {
            padding-top: 55px;
            padding-bottom: 60px;
        }

        .savvy-newsroom-title {
            font-size: 38px;
        }

        .savvy-newsroom-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 22px;
        }

    }


    /* =========================================
   Mobile
    ========================================= */

    @media (max-width: 640px) {

        .savvy-newsroom {
            padding: 45px 16px 50px;
        }

        .savvy-newsroom-header {
            margin-bottom: 35px;
        }

        .savvy-newsroom-title {
            font-size: 32px;
        }

        .savvy-newsroom-description {
            font-size: 15px;
            line-height: 1.6;
        }

        .savvy-newsroom-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .savvy-newsroom-image {
            height: 200px;
        }

        .savvy-newsroom-content {
            padding: 20px;
        }

        .savvy-newsroom-card-title {
            font-size: 19px;
        }

    }


    /* newsroom */
    
    /* =========================================
   SavvyHRMS Newsroom Single
========================================= */

.savvy-newsroom-single {
    background: #ffffff;
    padding: 55px 20px 80px;
}

.savvy-newsroom-article {
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   Header
========================================= */

.savvy-newsroom-single-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}


/* Breadcrumb */

.savvy-newsroom-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    color: #9ca3af;
    font-size: 13px;
}

.savvy-newsroom-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.savvy-newsroom-breadcrumb a:hover {
    color: #4f46e5;
}


/* Category */

.savvy-newsroom-single-category {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: 30px;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
}


/* Title */

.savvy-newsroom-single-title, .savvy-newsroom-single-content .newsroom-content h1  {
    max-width: 900px;
    margin: 0 auto 18px;
    color: #111827;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 750;
}


/* Meta */

.savvy-newsroom-single-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #6b7280;
    font-size: 14px;
}

.savvy-newsroom-single-meta strong {
    color: #374151;
}

.savvy-meta-divider {
    color: #d1d5db;
}


/* =========================================
   Featured Image
========================================= */

.savvy-newsroom-featured-image {
    width: 100%;
    max-height: 560px;
    margin-bottom: 55px;
    overflow: hidden;
    border-radius: 18px;
    background: #f3f4f6;
}

.savvy-newsroom-featured-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: cover;
}


/* =========================================
   Layout
========================================= */

.savvy-newsroom-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 55px;
    align-items: start;
}


/* =========================================
   Article Content
========================================= */

.savvy-newsroom-single-content {
    max-width: 760px;
    color: #374151;
    font-size: 17px;
    line-height: 1.85;
}

.savvy-newsroom-single-content > *:first-child {
    margin-top: 0;
}

.savvy-newsroom-single-content h2 {
    margin-top: 42px;
    margin-bottom: 16px;
    color: #111827;
    font-size: 30px;
    line-height: 1.3;
}

.savvy-newsroom-single-content h3 {
    margin-top: 32px;
    margin-bottom: 14px;
    color: #111827;
    font-size: 24px;
}

.savvy-newsroom-single-content p {
    margin-bottom: 22px;
}

.savvy-newsroom-single-content ul,
.savvy-newsroom-single-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.savvy-newsroom-single-content li {
    margin-bottom: 8px;
}

.savvy-newsroom-single-content a {
    color: #4f46e5;
    text-decoration: underline;
}

.savvy-newsroom-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.savvy-newsroom-single-content blockquote {
    margin: 30px 0;
    padding: 20px 25px;
    border-left: 4px solid #4f46e5;
    border-radius: 0 8px 8px 0;
    background: #f8faff;
    color: #374151;
}


/* =========================================
   Sidebar
========================================= */

.savvy-newsroom-sidebar {
    position: sticky;
    top: 30px;
}

.savvy-newsroom-sidebar-card {
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(15, 23, 42, .05);
}

.savvy-newsroom-sidebar-card h3 {
    margin: 0 0 20px;
    color: #111827;
    font-size: 20px;
}


/* =========================================
   Related Posts
========================================= */

.savvy-related-posts {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.savvy-related-post {
    display: flex;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
}

.savvy-related-post:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.savvy-related-image {
    flex: 0 0 72px;
    width: 72px;
    height: 65px;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f4f6;
}

.savvy-related-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.savvy-related-content {
    min-width: 0;
}

.savvy-related-content h4 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 6px;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.savvy-related-post:hover h4 {
    color: #4f46e5;
}

.savvy-related-content span {
    color: #9ca3af;
    font-size: 11px;
}

.savvy-no-related {
    margin: 0;
    color: #9ca3af;
    font-size: 13px;
}


/* =========================================
   CTA
========================================= */

.savvy-newsroom-cta {
    margin-top: 25px;
    padding: 25px;
    border-radius: 14px;
    background: linear-gradient(
        145deg,
        #eef2ff,
        #f8faff
    );
}

.savvy-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
    border-radius: 10px;
    background: #4f46e5;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.savvy-newsroom-cta h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 19px;
}

.savvy-newsroom-cta p {
    margin: 0 0 18px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.6;
}

.savvy-newsroom-cta a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #4f46e5;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.savvy-newsroom-cta a span {
    transition: transform .2s ease;
}

.savvy-newsroom-cta a:hover span {
    transform: translateX(4px);
}


/* =========================================
   Mobile
========================================= */

@media (max-width: 900px) {

    .savvy-newsroom-single-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .savvy-newsroom-sidebar {
        position: static;
    }

    .savvy-newsroom-single-content {
        max-width: none;
    }

}


@media (max-width: 640px) {

    .savvy-newsroom-single {
        padding: 35px 16px 55px;
    }

    .savvy-newsroom-single-header {
        margin-bottom: 30px;
    }

    .savvy-newsroom-single-title {
        font-size: 32px;
    }

    .savvy-newsroom-single-meta {
        flex-wrap: wrap;
        font-size: 13px;
    }

    .savvy-newsroom-featured-image {
        margin-bottom: 35px;
        border-radius: 12px;
    }

    .savvy-newsroom-single-content {
        font-size: 16px;
        line-height: 1.75;
    }

    .savvy-newsroom-single-content h2 {
        font-size: 25px;
    }

    .savvy-newsroom-single-content h3 {
        font-size: 21px;
    }

}
.client_logo{
    background-color: #515cff;
    padding: 4em 0;
    margin: 4em 0;
    position: relative;

}
.client_logo::before{
    content: '';
    top: 0;
    bottom: 0;
    left: -10%;
    right: -10%;
    background-color: #151cff;
    z-index: 0;
    position: absolute;
}
.client_logo h2 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}
.client_logo p {
    font-size: 16px;
    color: #fff;
}
.newsroom-cta{
    display: grid;
    grid-template-columns: repeat(2 ,2fr);
    gap: 1rem;
}
.newsroom-cta .newsroom-cta-content{
    margin: auto 0px;
}
.newsroom-cta .newsroom-cta-content h2{
 font-size: 46px;
 margin-bottom: 1rem;
}
.newsroom-cta .newsroom-cta-content p{
    font-size: 16px;
    margin-top: 1rem;
    color: #141414;
}
.newsroom-cta .newsroom-cta-content .newsroom-cta-button{
    padding: 8px 15px;
    background-color: #ff001d;
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
}