
    .loader {
        text-align: center; 
        padding: 20px;
    }
    .loading-img {
        width: 40px;
    }
    .back-to-top {
        position: fixed; 
        bottom: 20px; 
        right: 20px; 
        display: none;
    }
    .listing-breadcrumb {
        height: 48px;
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 12px;
        color: #777;
    }

    .listing-breadcrumb strong {
        color: #222;
        font-weight: 500;
    }

    .listing-banner {
        background: #f3f6fc;
        padding: 16px 0 21px;
    }

    .listing-hero {
        display: flex;
        align-items: center;
        gap: 45px;
        margin: 0 auto;
    }


    .listing-hero-image {
        width: 362px;
        min-width: 362px;
        height: 185px;
        border-radius: 8px;
        overflow: hidden;
    }

    .listing-hero-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .listing-hero-content {
        flex: 1;
    }

    .listing-hero-label {
        font-size: 12px;
        line-height: 1.4;
        font-weight: 500;
        color: #111;
        margin-bottom: 17px;
    }

    .listing-hero-content h1 {
        margin: 0 0 14px;
        font-size: 26px;
        line-height: 1.35;
        font-weight: 700;
        color: #080808;
    }

    .listing-hero-content h1 span {
        display: block;
        color: #1455c5;
    }

    .listing-hero-content p {
        margin: 0;
       
        font-size: 14px;
        line-height: 1.45;
        
    }
    .gradient-bg {
        background: #2A66B3;
        border-radius: 5px;
    }
    .white-btn {
        display: inline-block;
        padding: 10px 20px;
        border-radius: 6px;
        background-color: #ffffff;
        color: #0F297A;
        text-align: center;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
    }
    .category-sidebar-title {
        margin: 0 0 12px;
        color: #241b8f;
        font-size: 18px;
        font-weight: 500;
    }

    .category-sidebar-box {
        width: 100%;
        background: #e8f2ff;
        border-radius: 4px;
        padding: 15px;
        overflow: hidden;
    }

    .category-sidebar-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .category-sidebar-list li {
        border-bottom: 1px solid #c8c8c8;
    }

    .category-sidebar-list li:last-child {
        border-bottom: 0;
    }

    .category-sidebar-list li a {
        display: block;
        padding: 15px 8px;
        color: #111;
        font-size: 14px;
        line-height: 1.3;
        text-decoration: none;
    }

    .category-sidebar-list li a:hover {
        color: #1455c5;
    }

    .category-sidebar-list .category-sidebar-active a {
        color: #1455c5;
        font-weight: 600;
    }
    .category-sidebar-contact a {
        display: flex;
        align-items: center;
        gap: 15px;
        /* min-height: 76px; */
        padding: 12px 8px;
        color: #111;
        font-size: 14px;
        text-decoration: none;
    }

    .category-sidebar-contact a:last-child {
        border-bottom: 0;
    }

    .category-sidebar-contact .activity-icon {
        width: 25px;
        height: 25px;
        object-fit: contain;
        flex-shrink: 0;
    }

    /* Card */
    .report-listing-card {
        width: 100%;
        background: #fff;
        border: 1px solid #e6e6e6;
        border-radius: 10px;
        padding:18px;
        margin-bottom: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.06);
    }
    .report-listing-card h2{
        line-height:0.8;
    }
    /* Top */
    .report-listing-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* margin-bottom: 8px; */
    }

    .report-listing-date {
        font-size: 14px;
        /* color: #777; */
    }

    /* Status */
    .report-listing-status {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 5px 14px;
        border: 1px solid #b9e2d0;
        border-radius: 20px;
        background: #edf8f3;
        color: #22965f;
        font-size: 13px;
        font-weight: 600;
    }

    .report-listing-status span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #28a66a;
        display: inline-block;
    }

    /* Title */
    .report-listing-title {
        margin: 0 0 16px;
        font-size: 21px;
        line-height: 1.4;
        font-weight: 600;
        color: #0a0a0a;
        text-decoration:none;
    }

    /* Meta */
    .report-listing-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 17px;
    }

    .report-listing-meta span {
        display: inline-block;
        padding: 6px 13px;
        border: 1px solid #e8e8e8;
        border-radius: 4px;
        background: #f8f9fb;
        color: #0755d9;
        font-size: 12px;
    }

    /* Description */
    .report-listing-description {
        margin: 0;
        max-width: 850px;
        color: #222;
        font-size: 14px;
        line-height: 1.5;
    }


    .report-listing-link {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: #0755d9;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
    }

    .report-listing-link:hover {
        color: #003fa8;
    }

    .report-listing-link span {
        font-size: 25px;
        line-height: 12px;
    }

@media (max-width: 767.98px) {
    .listing-hero-image {
        display: none !important;
    }
}