﻿ body {
     font-family:'Noto Sans Devanagari',sans-serif;
     background-color: #f4f6f9;
     color: #222;
     font-size: 16px;
 }

 a {
     text-decoration: none;
 }

 img {
     max-width: 100%;
     height: auto;
 }

 .utility-bar {
     background: #153780;
     font-size: 0.812rem;
     padding: 5px 0;
     color: #fff;
 }

 .utility-bar a {
     color: #fff;
     margin-right: 12px;
     text-decoration: none;
 }

 .main-header {
     padding: 10px 0;
     border-bottom: 1px solid #eee;
 }

 .logo img {
     height: 50px;
 }

 .header-actions a {
     margin-left: 10px;
     font-size: 0.812rem;
 }

 .mobile-brand {
     color: #fff;
     font-size: 1.34rem;
     font-weight: 700;
     text-decoration: none;
 }

 .mobile-brand:hover {
     color: #fff;
 }

 .navbar-nav {
     margin-left: 0;
 }

 @media(min-width:992px) {
     .navbar-nav;

         {
         justify-content: flex-start;
         width: 100%;
     }
 }

 .navbar-news {
     background: #c40000;
 }

 .navbar-news .nav-link {
     color: #fff !important;
     font-weight: 600;
     font-size: 1.3rem;
 }

 .navbar-news .nav-link:hover {
     color: #ffd700 !important;
 }

 .navbar-toggler {
     border: none;
     box-shadow: none !important;
 }

 .navbar-toggler-icon {
     filter: brightness(0) invert(1);
 }

 @media(max-width:991px) {
     .navbar-collapse{
         background: #111;
         padding: 15px;
         border-radius: 10px;
         margin-top: 10px;
     }

     .navbar-nav .nav-link {
         padding: 12px 0;
         border-bottom: 1px solid rgba(255, 255, 255, .08);
     }
 }

 .navbar .nav-link.active {
     background: #fff;
     color: #c40000 !important;
     border-radius: 4px;
     font-weight: 600;
 }

 .breaking-clean {
     background: #fff3cd;
     font-size: .86rem;
     padding: 8px 0;
     border-bottom: 1px solid #eee;
 }

 .breaking-news-link {
     color: #fff;
	 font-weight:600
     text-decoration: none;
     margin-right: 30px;
     display: inline-block;
     white-space: nowrap;
	 font-size: 1.2rem;
 }

 .breaking-news-link:hover {
     color: #ffc107;
 }

 .footer {
     background: #111;
     color: #ccc;
     font-size: 0.86rem;
 }

 .footer h5,
 .footer h6 {
     color: #fff;
     font-weight: 600;
 }

 .footer a {
     color: #ccc;
     display: block;
     margin-bottom: 6px;
 }

 .footer a:hover {
     color: #fff;
 }

 .footer hr {
     border-color: #444;
 }

 .footer .input-group input {
     border-radius: 20px 0 0 20px;
 }

 .footer .input-group button {
     border-radius: 0 20px 20px 0;
 }

 @media (max-width:768px) {
     .navbar-nav {
         text-align: center;
     }

     .search-box {
         margin-top: 10px;
     }
 }

/* Hero image containers */
.hero-main,
.hero-small {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: #e5e7eb;
}

/* Main image - 3:2 ratio */
.hero-main {
    aspect-ratio: 3 / 2;
}

/* Small image - 3:2 ratio */
.hero-small {
    aspect-ratio: 3 / 2;
}

/* Images */
.hero-main img,
.hero-small img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform .4s ease;
}

/* Hover */
.hero-main:hover img,
.hero-small:hover img {
    transform: scale(1.04);
}

/* Mobile */
@media (max-width: 768px) {

    .hero-main,
    .hero-small {
        aspect-ratio: 3 / 2;
    }

}

 .hero-overlay {
     position: absolute;
     inset: 0;
     display: flex;
     align-items: flex-end;
     padding: 15px;
     color: #fff;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4), transparent);
 }

 .hero-category {
     display: inline-block;
     background: #c40000;
     font-size: .8rem;
     padding: 3px 8px;
     border-radius: 3px;
     font-weight: 600;
     margin-bottom: 6px;
 }

 .hero-title {
     margin: 0;
     font-weight: 700;
     line-height: 1.3;
 }

 .hero-main .hero-title {
     font-size: 1.38rem;
 }

 .hero-small .hero-title {
     font-size: 0.87rem;
 }

 .hero-content {
     max-width: 95%;
 }

 @media (max-width:768px) {
     .hero-main img {
         height: 250px;
     }

     .hero-small img {
         height: 140px;
     }

     .hero-main .hero-title {
         font-size: 1.2rem;
     }
 }

 .breaking-bar {
     background: #c40000;
     color: #fff;
     font-size: .88rem;
     overflow: hidden;
 }

 .breaking-wrap {
     display: flex;
     align-items: center;
 }

 .breaking-label {
     background: #000;
     padding: 6px 12px;
     font-weight: 600;
     white-space: nowrap;
	font-size:1rem;
 }

 .breaking-news {
     position: relative;
     overflow: hidden;
     width: 100%;
 }

 .breaking-track {
     display: inline-block;
     white-space: nowrap;
     padding-left: 100%;
     animation: scrollTicker 20s linear infinite;
 }

 @keyframes scrollTicker {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-100%);
     }
 }

 .breaking-news:hover .breaking-track {
     animation-play-state: paused;
 }

 @media (max-width:768px) {
     .breaking-label {
         font-size: 0.75rem;
         padding: 5px 8px;
     }
 }

 .category-section {
     margin-top: 40px;
 }

 .category-title {
     font-weight: 700;
     border-left: 5px solid #c40000;
     padding-left: 10px;
     margin-bottom: 20px;
 }

 .news-card {
     display: flex;
     gap: 22px;
     padding: 28px 0;
     border-bottom: 1px solid #e9e9e9;
     position: relative;
 }

 .news-card:last-child {
     border-bottom: none;
     padding-bottom: 0;
 }

 .news-card:first-child {
     padding-top: 0;
 }

 .news-card::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: 0;
     width: 100%;
     height: 1px;
     background: linear-gradient(to right, transparent, #e5e5e5, transparent);
 }

 .news-card:last-child::after {
     display: none;
 }

 @media(max-width:768px) {
     .news-card;

         {
         flex-direction: column;
         gap: 16px;
         padding: 22px 0;
     }
 }

 .news-thumb {
     width: 120px;
     min-width: 120px;
     height: 80px;
     overflow: hidden;
     border-radius: 16px;
     position: relative;
     background: #f5f5f5;
 }

 .news-thumb a {
     display: block;
     width: 100%;
     height: 100%;
 }

 .news-thumb img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: .4s ease;
 }

 .news-card:hover .news-thumb img {
     transform: scale(1.06);
 }

 @media(max-width:768px) {
     .news-thumb{
         width: 100%;
         min-width: 100%;
         height: 60px;
     }
 }

 .news-title {
     font-weight: 600;
     font-size: 0.88rem;
     margin: 0;
 }

 .news-desc {
     font-size: 1rem;
     color: #666;
 }

 .news-meta {
     font-size: 0.75rem;
     color: #999;
 }

 .news-grid img {
     width: 100%;
     height: 160px;
     object-fit: cover;
     border-radius: 6px;
 }

 .news-feature img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     border-radius: 8px;
 }

 .overlay-box {
     position: relative;
 }

 .overlay-box img {
     width: 100%;
     height: 200px;
     object-fit: cover;
 }

 .overlay-content {
     position: absolute;
     bottom: 0;
     padding: 10px;
     color: #fff;
     width: 100%;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
 }

 .section-space {
     margin-top: 40px;
 }

 .cat-red {
     border-left: 5px solid #c40000;
 }

 .cat-blue {
     border-left: 5px solid #007bff;
 }

 .cat-green {
     border-left: 5px solid #28a745;
 }

 .cat-purple {
     border-left: 5px solid #6f42c1;
 }

 .news-box {
     background: #fff;
     border-radius: 10px;
     padding: 15px;
     margin-bottom: 20px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
 }

 .cat-red {
     color: #d32f2f;
     border-left: 4px solid #d32f2f;
     font-weight: 700;
     padding-left: 8px;
 }

 .cat-blue {
     color: #1976d2;
     border-left: 4px solid #1976d2;
     font-weight: 700;
     padding-left: 8px;
 }

 .cat-green {
     color: #2e7d32;
     border-left: 4px solid #2e7d32;
     font-weight: 700;
     padding-left: 8px;
 }

 .cat-default {
     color: #333;
     border-left: 4px solid #999;
     font-weight: 700;
     padding-left: 8px;
 }

 .news-box h5 {
     transition: 0.3s;
 }

 .news-box h5:hover {
     opacity: 0.8;
 }

 .news-lg img {
     width: 100%;
     height: 240px;
     object-fit: cover;
     border-radius: 6px;
 }

 .news-lg .title {
     font-size: 1.12rem;
     font-weight: 700;
     margin-top: 8px;
 }

 .news-sm {
     display: flex;
     gap: 10px;
     margin-bottom: 12px;
 }

 .news-sm img {
     width: 90px;
     height: 65px;
     object-fit: cover;
     border-radius: 5px;
 }

 .title {
     margin: 0;
     font-size: 0.88rem;
     font-weight: 600;
 }

 .news-title-link {
     color: #111;
     text-decoration: none;
     font-size: 1rem;
     font-weight: 700;
     line-height: 1.6;
     display: block;
     transition: .3s ease;
 }

 .news-title-link:hover {
     color: #d60000;
 }

 .desc {
     font-size: 1rem;
     color: #666;
 }

 .meta {
     font-size: 0.75rem;
     color: #999;
 }

 .sidebar-box {
     background: #fff;
     border-radius: 12px;
     padding: 18px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
 }

 .sidebar-title {
     font-size: 1.12rem;
     font-weight: 700;
     margin-bottom: 20px;
     border-bottom: 2px solid #f1f1f1;
     padding-bottom: 10px;
 }

 .popular-news-item {
     display: flex;
     gap: 12px;
     margin-bottom: 18px;
     padding-bottom: 18px;
     border-bottom: 1px solid #f3f3f3;
 }

 .popular-news-item:last-child {
     margin-bottom: 0;
     padding-bottom: 0;
     border-bottom: none;
 }

 .popular-news-image {
     width: 90px;
     min-width: 90px;
     height: 70px;
     overflow: hidden;
     border-radius: 10px;
     display: block;
 }

 .popular-news-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: .3s ease;
 }

 .popular-news-image:hover img {
     transform: scale(1.05);
 }

 .popular-news-content {
     flex: 1;
 }

 .popular-news-desc {
     font-size: 1rem;
     color: #666;
     line-height: 1.6;
     margin-top: 6px;
     margin-bottom: 0;
 }

 .popular-news-date {
     display: block;
     font-size: 0.75rem;
     color: #888;
     margin-bottom: 6px;
 }

 .popular-news-title {
     font-size: 1rem;
     line-height: 1.5;
     font-weight: 700;
 }

 .video-news-item {
     margin-bottom: 20px;
     padding-bottom: 20px;
     border-bottom: 1px solid #f1f1f1;
 }

 .video-news-item:last-child {
     margin-bottom: 0;
     padding-bottom: 0;
     border-bottom: none;
 }

 .video-thumb-link {
     position: relative;
     display: block;
     border-radius: 12px;
     overflow: hidden;
     margin-bottom: 12px;
 }

 .video-thumb {
     width: 100%;
     height: 220px;
     object-fit: cover;
     transition: .3s ease;
 }

 .video-thumb-link:hover .video-thumb {
     transform: scale(1.04);
 }

 .video-play-btn {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 55px;
     height: 55px;
     background: rgba(225, 6, 0, .9);
     color: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.12rem;
 }

 .video-title {
     display: block;
     font-size: 1.2rem;
     font-weight: 700;
     line-height: 1.6;
     margin-bottom: 8px;
 }

 .video-desc {
     font-size: 1rem;
     color: #666;
     line-height: 1.6;
     margin-top: 1rem;
     margin-bottom: 1rem;
 }

 .video-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 0.75rem;
     color: #888;
 }

 .video-channel {
     font-weight: 600;
 }

 .popular li {
     border-bottom: 1px solid #eee;
     padding: 8px 0;
     font-size: 0.88rem;
 }

 .ad img {
     width: 100%;
     border-radius: 8px;
 }

 @media(max-width:768px) {
     .news-lg img;

         {
         height: 200px;
     }
 }
.sidebar-sticky{
    position: sticky;
    top: 90px; /* Navbar height */
    z-index: 100;
}
 .live-section {
     background: #fff;
     border-left: 5px solid #ff3b3b;
     padding: 15px;
     border-radius: 8px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     margin-top: 20px;
     margin-bottom: 20px;
 }

 .live-title {
     font-weight: 700;
     color: #ff3b3b;
     margin-bottom: 10px;
 }

 .live-item {
     border-bottom: 1px dashed #ddd;
     padding: 8px 0;
     font-size: 0.88rem;
 }

 .live-time {
     color: #999;
     font-size: 0.75rem;
     margin-right: 8px;
 }

 .live-dot {
     width: 8px;
     height: 8px;
     background: red;
     border-radius: 50%;
     display: inline-block;
     animation: blink 1s infinite;
 }

 @keyframes blink {
     0% {
         opacity: 1;
     }

     50% {
         opacity: 0.3;
     }

     100% {
         opacity: 1;
     }
 }

 .news-detail img {
     width: 100%;
     border-radius: 8px;
     margin: 15px 0;
 }

 .news-detail {
     box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 10px;
    margin-bottom: 20px;
    background: rgb(255, 255, 255);
    padding: 15px;
    border-radius: 10px;
     animation: fadeIn 0.4s ease-in-out;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 img.lazy {
     opacity: 0;
     transition: 0.3s;
 }

 img.lazy.loaded {
     opacity: 1;
 }

 .news-title-lg {
     font-size: 1.62rem;
     font-weight: 700;
 }

 .news-meta {
     font-size: .81rem;
     color: #777;
 }

 .news-content p {
     font-size: 1rem;
     line-height: 1.7;
     margin-bottom: 15px;
 }

 .share-box a {
     display: inline-block;
     margin-right: 8px;
     padding: 6px 10px;
     border-radius: 4px;
     color: #fff;
     font-size: .81rem;
 }

 .fb {
     background: #3b5998;
 }

 .tw {
     background: #1da1f2;
 }

 .wa {
     background: #25d366;
 }

 .related img {
     width: 100%;
     height: 150px;
     object-fit: cover;
     border-radius: 6px;
 }

 .badge-cat {
     background: #c40000;
 }

 .share-sticky {
     position: fixed;
     left: 10px;
     top: 40%;
 }

 .trending-card {
     background: #fff;
     border-radius: 18px;
     padding: 20px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
 }

 .trending-header {
     font-size: 1.38rem;
     font-weight: 700;
     color: #111;
     margin-bottom: 18px;
     border-bottom: 2px solid #f1f1f1;
     padding-bottom: 12px;
 }

 .trending-item {
     display: flex;
     align-items: flex-start;
     gap: 14px;
     margin-bottom: 18px;
     text-decoration: none;
     transition: .3s;
 }

 .trending-item:last-child {
     margin-bottom: 0;
 }

 .trending-item:hover {
     transform: translateX(4px);
 }

 .trending-thumb {
     width: 80px;
     min-width: 80px;
     height: 60px;
     overflow: hidden;
     border-radius: 12px;
 }

 .trending-thumb img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: .4s;
 }

 .trending-item:hover img {
     transform: scale(1.08);
 }

 .trending-content {
     flex: 1;
     display: flex;
     align-items: flex-start;
 }

 .trending-title {
     font-size: .9rem;
     font-weight: 600;
     line-height: 1.5;
     color: #111;
     transition: .3s;
     margin-top: 2px;
 }

 .trending-item:hover .trending-title {
     color: #d60000;
 }

 @media(max-width:768px) {
     .trending-thumb;

         {
         width: 80px;
         min-width: 80px;
         height: 60px;
     }

     .trending-title {
         font-size: 1rem;
     }
 }

 .cat-header {
     background: linear-gradient(90deg, #c40000, #ff4d4d);
     color: #fff;
     padding: 15px;
     border-radius: 8px;
 }

 .feature-news {
     background: #fff;
     border-radius: 22px;
     overflow: hidden;
     box-shadow: 0 4px 25px rgba(0, 0, 0, .08);
     margin-bottom: 25px;
 }

 .feature-thumb {
     position: relative;
     height: 420px;
     overflow: hidden;
 }

 .feature-thumb img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: .5s;
 }

 .feature-news:hover img {
     transform: scale(1.05);
 }

 .badge-cat {
     position: absolute;
     left: 20px;
     bottom: 20px;
     background: #d60000;
     color: #fff;
     padding: 8px 16px;
     border-radius: 30px;
     font-size: .81rem;
     font-weight: 600;
 }

 .feature-content {
     padding: 28px;
 }

 .feature-title {
     margin: 0 0 16px;
     line-height: 1.5;
 }

 .feature-title a {
     color: #111;
     text-decoration: none;
     font-size: 2.12rem;
     font-weight: 700;
 }

 .feature-title a:hover {
     color: #d60000;
 }

 .feature-desc {
     font-size: 1.06rem;
     line-height: 1.9;
     color: #555;
 }

 .grid-news-card {
     background: #fff;
     border-radius: 18px;
     overflow: hidden;
     box-shadow: 0 3px 18px rgba(0, 0, 0, .06);
     height: 100%;
     transition: .3s;
 }

 .grid-news-card:hover {
     transform: translateY(-4px);
 }

 .grid-thumb {
     height: 220px;
     overflow: hidden;
 }

 .grid-thumb img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: .4s;
 }

 .grid-news-card:hover img {
     transform: scale(1.06);
 }

 .grid-content {
     padding: 18px;
 }

 .grid-category {
     font-size: .81rem;
     color: #d60000;
     font-weight: 700;
     margin-bottom: 10px;
 }

 .grid-title {
     margin: 0;
     line-height: 1.6;
 }

 .grid-title a {
     text-decoration: none;
     color: #111;
    font-size:  1.25rem
     font-weight: 700;
 }

 .grid-title a:hover {
     color: #d60000;
 }

 .badge-cat {
     background: #c40000;
 }

 .section-space {
 box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 10px;
    margin-bottom: 20px;
    background: rgb(255, 255, 255);
    padding: 15px;
    border-radius: 10px;
     margin-top: 60px;
 }

 .row-gap {
     row-gap: 20px;
 }

 .about-hero {
     background: linear-gradient(120deg, #c40000, #ff6a00);
     color: #fff;
     padding: 70px 20px;
     border-radius: 12px;
     text-align: center;
 }

 .card-box {
     background: #fff;
     padding: 20px;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .stat-box {
     background: #f8f9fa;
     padding: 20px;
     border-radius: 10px;
     text-align: center;
 }

 .team-card {
     text-align: center;
     background: #fff;
     padding: 15px;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .team-card img {
     width: 100%;
     height: 180px;
     object-fit: cover;
     border-radius: 8px;
 }

 .cta-box {
     background: #c40000;
     color: #fff;
     padding: 30px;
     border-radius: 10px;
     text-align: center;
 }

 .fade-in {
     opacity: 0;
     transform: translateY(15px);
     transition: all 0.6s ease;
 }

 .fade-in.show {
     opacity: 1;
     transform: translateY(0);
 }

 .card-hover {
     transition: 0.3s;
 }

 .card-hover:hover {
     transform: translateY(-5px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
 }

 .img-hover {
     overflow: hidden;
     border-radius: 8px;
 }

 .img-hover img {
     transition: 0.4s;
 }

 .img-hover:hover img {
     transform: scale(1.05);
 }

 .author-hero {
     background: linear-gradient(120deg, #c40000, #ff6a00);
     color: #fff;
     padding: 40px 20px;
     border-radius: 12px;
 }

 .author-profile img {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     object-fit: cover;
     border: 4px solid #fff;
 }

 .author-name {
     font-size: 1.38rem;
     font-weight: 700;
 }

 .author-bio {
     font-size: 0.88rem;
     opacity: 0.9;
 }

 .author-stats {
     display: flex;
     gap: 20px;
     margin-top: 10px;
     font-size: .81rem;
 }

 .author-social a {
     margin-right: 10px;
     color: #fff;
     font-size: 0.88rem;
 }

 .news-card-author {
     display: flex;
     gap: 10px;
     padding: 10px;
     border-bottom: 1px solid #eee;
 }

 .news-card-author img {
     width: 100px;
     height: 70px;
     object-fit: cover;
     border-radius: 6px;
 }

 .sidebar-box {
     background: #fff;
     padding: 15px;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     margin-bottom: 20px;
 }

 .follow-btn {
     background: #fff;
     color: #c40000;
     border-radius: 20px;
     padding: 5px 15px;
     font-size: .81rem;
 }

 .page-header {
     background: #f8f9fa;
     padding: 20px;
     border-radius: 10px;
     text-align: center;
 }

 .author-card {
     background: #fff;
     padding: 15px;
     border-radius: 10px;
     text-align: center;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     transition: 0.3s;
 }

 .author-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }

 .author-card img {
     width: 90px;
     height: 90px;
     border-radius: 50%;
     object-fit: cover;
     margin-bottom: 10px;
 }

 .author-name {
     font-weight: 600;
     font-size: 1rem;
 }

 .author-role {
     font-size: .81rem;
     color: #777;
 }

 .author-meta {
     font-size: 0.75rem;
     margin-top: 5px;
 }

 .follow-btn {
     margin-top: 10px;
     font-size: 0.75rem;
     padding: 4px 12px;
     border-radius: 20px;
     border: 1px solid #c40000;
     color: #c40000;
     background: #fff;
 }

 .follow-btn:hover {
     background: #c40000;
     color: #fff;
 }

 .contact-hero {
     background: linear-gradient(120deg, #c40000, #ff6a00);
     color: #fff;
     padding: 50px 20px;
     border-radius: 12px;
     text-align: center;
 }

 .contact-box {
     background: #fff;
     padding: 20px;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .form-control {
     border-radius: 6px;
     font-size: 0.88rem;
 }

 .contact-info-item {
     margin-bottom: 15px;
     font-size: 0.88rem;
 }

 .map iframe {
     width: 100%;
     height: 300px;
     border-radius: 10px;
     border: 0;
 }

 .btn-contact {
     background: #c40000;
     color: #fff;
     border: none;
 }

 .btn-contact:hover {
     background: #a30000;
 }

 .fade-in {
     opacity: 0;
     transform: translateY(15px);
     transition: 0.5s;
 }

 .fade-in.show {
     opacity: 1;
     transform: translateY(0);
 }

 .career-hero {
     background: linear-gradient(120deg, #c40000, #ff6a00);
     color: #fff;
     padding: 60px 20px;
     border-radius: 12px;
     text-align: center;
 }

 .section-space {
     margin-top: 60px;
 }

 .career-card {
     background: #fff;
     padding: 20px;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     transition: 0.3s;
 }

 .career-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
 }

 .job-title {
     font-weight: 600;
     font-size: 1rem;
 }

 .job-meta {
     font-size: .81rem;
     color: #777;
 }

 .apply-btn {
     background: #c40000;
     color: #fff;
     border: none;
     padding: 6px 14px;
     border-radius: 20px;
     font-size: .81rem;
 }

 .apply-btn:hover {
     background: #a30000;
 }

 .benefit-box {
     background: #f8f9fa;
     padding: 20px;
     border-radius: 10px;
     text-align: center;
 }

 .fade-in {
     opacity: 0;
     transform: translateY(15px);
     transition: 0.5s;
 }

 .fade-in.show {
     opacity: 1;
     transform: translateY(0);
 }

 .form-box {
     background: #fff;
     padding: 25px;
     border-radius: 12px;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
 }

 .form-label {
     font-size: .81rem;
     font-weight: 600;
 }

 .form-control,
 .form-select {
     border-radius: 6px;
     font-size: 0.88rem;
 }

 .file-box {
     border: 2px dashed #ddd;
     padding: 20px;
     text-align: center;
     border-radius: 8px;
     cursor: pointer;
 }

 .file-box:hover {
     border-color: #c40000;
 }

 .btn-submit {
     background: #c40000;
     color: #fff;
     border: none;
 }

 .btn-submit:hover {
     background: #a30000;
 }

 .success-msg {
     display: none;
     color: green;
     font-size: 0.88rem;
     margin-top: 10px;
 }

 .apply-hero {
     background: linear-gradient(120deg, #c40000, #ff6a00);
     color: #fff;
     padding: 50px 20px;
     border-radius: 12px;
 }

 .job-box {
     background: #fff;
     padding: 20px;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .job-tag {
     background: #f1f1f1;
     padding: 4px 10px;
     border-radius: 20px;
     font-size: 0.75rem;
     margin-right: 5px;
 }

 .benefit-box {
     background: #f8f9fa;
     padding: 15px;
     border-radius: 10px;
     text-align: center;
 }

 .form-box {
     background: #fff;
     padding: 20px;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .btn-apply {
     background: #c40000;
     color: #fff;
 }

 .btn-apply:hover {
     background: #a30000;
 }

.epaper-hero {
     background: linear-gradient(135deg, #ff416c, #ff4b2b);
     color: #fff;
     padding: 30px;
     border-radius: 12px;
 }

 .filter-box {
     background: #fff;
     padding: 20px;
     border-radius: 12px;
 }

  /*epaper-card {
     background: #fff;
     border-radius: 14px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: 0.3s;
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .epaper-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 }

 .epaper-img-wrap {
     position: relative;
     overflow: hidden;
 }

 .epaper-img-wrap img {
     width: 100%;
     height: 320px;
     object-fit: cover;
     transition: 0.3s;
 }

 .epaper-card:hover img {
     transform: scale(1.05);
 }

 .pdf-badge {
     position: absolute;
     bottom: 10px;
     right: 10px;
     background: rgba(0, 0, 0, 0.6);
     color: #fff;
     padding: 5px 8px;
     border-radius: 6px;
     font-size: 0.88rem;
 }

 .epaper-tag {
     position: absolute;
     top: 10px;
     left: 10px;
     background: red;
     color: #fff;
     padding: 4px 10px;
     border-radius: 20px;
     font-size: 0.75rem;
 }

 .epaper-content {
     padding: 12px;
     display: flex;
     flex-direction: column;
     flex-grow: 1;
 }

 .epaper-title {
     font-weight: 600;
     font-size: 0.88rem;
     margin-bottom: 6px;
     height: 40px;
     overflow: hidden;
 }

 .epaper-date {
     font-size: 0.75rem;
     color: #666;
     margin-bottom: 10px;
 }

 .epaper-actions {
     margin-top: auto;
     display: flex;
     justify-content: space-between;
 }

 .btn-read {
     background: #000;
     color: #fff;
     padding: 6px 10px;
     border-radius: 6px;
     font-size: 0.75rem;
     text-decoration: none;
 }

 .btn-download {
     background: #ff4b2b;
     color: #fff;
     padding: 6px 10px;
     border-radius: 6px;
     font-size: 0.75rem;
     text-decoration: none;
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.1);
     }

     100% {
         transform: scale(1);
     }
 }

 .epaper-overlay {
     position: absolute;
     bottom: 0;
     width: 100%;
     background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
     color: #fff;
     padding: 15px;
 }

 .recent-btn {
     border: 1px solid #ddd;
     padding: 6px 12px;
     border-radius: 6px;
     margin-right: 5px;
 }*/

 .page-hero {
     background: linear-gradient(120deg, #c40000, #ff6a00);
     color: #fff;
     padding: 50px 20px;
     border-radius: 12px;
     text-align: center;
 }

 .client-card {
     background: #fff;
     padding: 20px;
     border-radius: 12px;
     text-align: center;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     transition: 0.3s;
     height: 100%;
 }

 .client-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
 }

 .client-logo {
     height: 80px;
     object-fit: contain;
     margin-bottom: 10px;
 }

 .client-name {
     font-weight: 600;
     font-size: 1rem;
 }

 .client-type {
     font-size: 0.75rem;
     color: #777;
 }

 .client-tag {
     display: inline-block;
     background: #f1f1f1;
     font-size: .69rem;
     padding: 3px 8px;
     border-radius: 20px;
     margin-top: 5px;
 }

 .row-gap {
     row-gap: 25px;
 }

 .viewer-header {
     background: #111;
     color: #fff;
     padding: 10px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .viewer-meta {
     background: #fff;
     padding: 10px;
     border-bottom: 1px solid #ddd;
 }

 .pdf-container {
     height: 80vh;
     overflow: auto;
     background: #333;
     text-align: center;
 }

 canvas {
     margin: 10px auto;
     display: block;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
 }

 .controls button {
     margin-right: 5px;
 }

 .pdf-container {
     overflow: auto;
     text-align: center;
 }

 canvas {
     transition: transform 0.2s ease;
 }

 .video-hero-section {
     background: linear-gradient(135deg, #0d6efd, #003f88);
     color: #fff;
     padding: 40px 30px;
     border-radius: 12px;
 }

 .video-hero-title {
     font-size: 2.5rem;
     font-weight: 700;
 }

 .video-hero-subtitle {
     opacity: .9;
     margin-top: 8px;
     font-size: 1.1rem;
 }

 .search-icon {
     position: absolute;
     right: 15px;
     top: 50%;
     transform: translateY(-50%);
     color: #777;
 }

 .featured-video-wrap {
     background: #fff;
     border-radius: 14px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
 }

 .featured-video-box iframe {
     width: 100%;
     height: 500px;
     border: 0;
 }

 .featured-video-content {
     padding: 25px;
 }

 .featured-video-title {
     font-size: 1.75rem;
     font-weight: 700;
     margin-bottom: 15px;
 }

 .featured-desc {
     color: #555;
     line-height: 1.7;
 }

 .video-meta {
     font-size: .81rem;
     color: #777;
     margin-bottom: 8px;
 }

 .section-head {
     margin-bottom: 20px;
 }

 .section-head h3 {
     font-weight: 700;
 }

 .shorts-slider {
     display: flex;
     gap: 15px;
     overflow-x: auto;
     padding-bottom: 10px;
 }

 .short-card {
     min-width: 180px;
     position: relative;
 }

 .short-thumb {
     width: 100%;
     height: 320px;
     object-fit: cover;
     border-radius: 12px;
 }

 .short-overlay {
     position: absolute;
     inset: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(0, 0, 0, 0.25);
     color: #fff;
     font-size: 2.56rem;
     border-radius: 12px;
 }

 .video-news-card {
     background: #fff;
     border-radius: 12px;
     overflow: hidden;
     transition: .3s;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
     height: 100%;
 }

 .video-news-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
 }

 .video-thumb-wrap {
     position: relative;
     overflow: hidden;
 }

 .video-thumb-news {
     width: 100%;
     height: 220px;
     object-fit: cover;
     transition: .3s;
 }

 .video-news-card:hover .video-thumb-news {
     transform: scale(1.05);
 }

 .play-button {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: rgba(255, 0, 0, .9);
     color: #fff;
     text-align: center;
     line-height: 60px;
     font-size: 1.5rem;
     text-decoration: none;
 }

 .live-badge {
     position: absolute;
     top: 10px;
     left: 10px;
     background: red;
     color: #fff;
     padding: 4px 10px;
     border-radius: 20px;
     font-size: 0.75rem;
 }

 .video-card-content {
     padding: 15px;
 }

 .video-news-title {
     font-size: 1rem;
     font-weight: 600;
     line-height: 1.5;
     height: 48px;
     overflow: hidden;
     margin-bottom: 10px;
 }

 .video-news-meta {
     font-size: 0.75rem;
     color: #777;
     margin-bottom: 5px;
 }

 @media(max-width:768px) {
     .video-hero-title;

         {
         font-size: 2rem;
     }

     .featured-video-box iframe {
         height: 260px;
     }

     .featured-video-content {
         padding: 15px;
     }

     .featured-video-title {
        font-size:  1.25rem
     }

     .short-card {
         min-width: 140px;
     }

     .short-thumb {
         height: 240px;
     }

     .video-thumb-news {
         height: 200px;
     }
 }

 .client-card-premium {
     position: relative;
     background: #fff;
     border-radius: 18px;
     overflow: hidden;
     padding: 25px 20px;
     text-align: center;
     transition: .35s;
     box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
     height: 100%;
     border: 1px solid #f1f1f1;
 }

 .client-card-premium:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
 }

 .client-badge {
     position: absolute;
     top: 12px;
     right: 12px;
     background: #0d6efd;
     color: #fff;
     font-size: 0.75rem;
     padding: 5px 12px;
     border-radius: 30px;
     font-weight: 600;
 }

 .client-logo-wrap {
     width: 120px;
     height: 120px;
     margin: auto;
     margin-bottom: 20px;
     border-radius: 50%;
     background: #f8f9fa;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     border: 4px solid #fff;
     box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
 }

 .client-logo-premium {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .client-title {
    font-size:  1.25rem
     font-weight: 700;
     margin-bottom: 10px;
     color: #111;
 }

 .client-desc {
     font-size: 0.88rem;
     color: #666;
     line-height: 1.7;
     margin-bottom: 12px;
     height: 68px;
     overflow: hidden;
 }

 .client-info {
     font-size: .81rem;
     color: #777;
     margin-bottom: 8px;
     line-height: 1.6;
     word-break: break-word;
 }

 @media(max-width:768px) {
     .client-logo-wrap;

         {
         width: 90px;
         height: 90px;
     }

     .client-title {
         font-size: 1.12rem;
     }

     .client-desc {
         height: auto;
     }
 }

 .help-hero {
     background: linear-gradient(135deg, #0d6efd, #003b99);
     border-radius: 20px;
     padding: 40px;
     color: #fff;
 }

 .help-title {
     font-size:  2.4rem;
     font-weight: 800;
     margin-bottom: 10px;
 }

 .help-subtitle {
     font-size: 1.06rem;
     opacity: .9;
 }

 .help-total {
     background: rgba(255, 255, 255, .15);
     padding: 15px 25px;
     border-radius: 15px;
     display: inline-block;
     font-size: 1.12rem;
     font-weight: 700;
 }

 .help-card {
     position: relative;
     background: #fff;
     border-radius: 20px;
     padding: 25px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
     transition: .35s;
     overflow: hidden;
     border: 1px solid #f1f1f1;
     height: 100%;
 }

 .help-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
 }

 .help-badge {
     position: absolute;
     top: 15px;
     right: 15px;
     background: #0d6efd;
     color: #fff;
     padding: 5px 14px;
     border-radius: 30px;
     font-size: 0.75rem;
     font-weight: 600;
 }

 .emergency-badge {
     display: inline-block;
     margin-bottom: 15px;
     background: #dc3545;
     color: #fff;
     padding: 5px 14px;
     border-radius: 30px;
     font-size: 0.75rem;
     font-weight: 700;
 }

 .help-top {
     display: flex;
     gap: 15px;
     align-items: center;
     margin-bottom: 20px;
 }

 .help-logo-wrap {
     width: 75px;
     height: 75px;
     border-radius: 18px;
     overflow: hidden;
     background: #f5f5f5;
     flex-shrink: 0;
     border: 1px solid #eee;
 }

 .help-logo {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .help-category {
     color: #0d6efd;
     font-size: .81rem;
     font-weight: 700;
     margin-bottom: 5px;
 }

 .help-name {
     font-size: 1.38rem;
     font-weight: 700;
     line-height: 1.3;
     color: #111;
 }

 .help-desc {
     color: #666;
     line-height: 1.8;
     margin-bottom: 20px;
     font-size: 0.88rem;
 }

 .help-info-group {
     margin-bottom: 20px;
 }

 .help-info {
     font-size: 0.88rem;
     color: #444;
     margin-bottom: 8px;
     line-height: 1.7;
     word-break: break-word;
 }

 .help-actions {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
 }

 @media(max-width:768px) {
     .help-hero;

         {
         padding: 25px;
     }

     .help-title {
         font-size: 1.75rem;
     }

     .help-name {
         font-size: 1.12rem;
     }

     .help-card {
         padding: 20px;
     }
 }

 .terms-hero {
     background: #111;
     padding: 70px 0;
     color: #fff;
     position: relative;
     overflow: hidden;
 }

 .terms-hero::before {
     content: "";
     position: absolute;
     top: -80px;
     right: -80px;
     width: 260px;
     height: 260px;
     background: rgba(255, 255, 255, .05);
     border-radius: 50%;
 }

 .terms-hero::after {
     content: "";
     position: absolute;
     bottom: -100px;
     left: -100px;
     width: 320px;
     height: 320px;
     background: rgba(255, 255, 255, .04);
     border-radius: 50%;
 }

 .terms-breadcrumb {
     font-size: 0.88rem;
     color: #cfcfcf;
     margin-bottom: 18px;
 }

 .terms-breadcrumb a {
     color: #fff;
     text-decoration: none;
 }

 .terms-title {
     font-size:  3.25rem;
     font-weight: 800;
     margin-bottom: 18px;
     position: relative;
     z-index: 2;
 }

 .terms-subtitle {
     font-size: 1.12rem;
     line-height: 1.9;
     color: #d9d9d9;
     max-width: 850px;
     position: relative;
     z-index: 2;
 }

 .terms-wrapper {
     background: #f7f8fa;
     padding: 60px 0;
 }

 .terms-card {
     background: #fff;
     border-radius: 24px;
     padding: 45px;
     box-shadow: 0 6px 30px rgba(0, 0, 0, .06);
 }

 .terms-section {
     margin-bottom: 45px;
     padding-bottom: 35px;
     border-bottom: 1px solid #ececec;
 }

 .terms-section:last-child {
     border-bottom: none;
     margin-bottom: 0;
     padding-bottom: 0;
 }

 .terms-section h2 {
    font-size: 1.875em
     font-weight: 700;
     color: #111;
     margin-bottom: 22px;
 }

 .terms-section p {
     font-size: 1rem;
     color: #555;
     line-height: 2;
     margin-bottom: 18px;
 }

 .terms-section ul {
     padding-left: 20px;
 }

 .terms-section ul li {
     font-size: 1rem;
     color: #444;
     line-height: 1.9;
     margin-bottom: 12px;
 }

 .terms-note {
     background: #f4f7ff;
     border-left: 5px solid #0d6efd;
     padding: 22px;
     border-radius: 16px;
     margin-top: 25px;
 }

 .terms-note p {
     margin: 0;
     color: #222;
     font-weight: 500;
 }

 @media(max-width:768px) {
     .terms-hero;

         {
         padding: 55px 0;
     }

     .terms-title {
         font-size: 2.25rem;
     }

     .terms-subtitle {
         font-size: 1rem;
     }

     .terms-card {
         padding: 28px;
     }

     .terms-section h2 {
         font-size: 1.56rem;
     }
 }

 .policy-hero {
     background: #111;
     padding: 70px 0;
     color: #fff;
     position: relative;
     overflow: hidden;
 }

 .policy-hero::before {
     content: "";
     position: absolute;
     top: -80px;
     right: -80px;
     width: 260px;
     height: 260px;
     background: rgba(255, 255, 255, .05);
     border-radius: 50%;
 }

 .policy-hero::after {
     content: "";
     position: absolute;
     bottom: -100px;
     left: -100px;
     width: 320px;
     height: 320px;
     background: rgba(255, 255, 255, .04);
     border-radius: 50%;
 }

 .policy-breadcrumb {
     font-size: 0.88rem;
     color: #cfcfcf;
     margin-bottom: 18px;
 }

 .policy-breadcrumb a {
     color: #fff;
     text-decoration: none;
 }

 .policy-title {
     font-size:  3.25rem;
     font-weight: 800;
     margin-bottom: 18px;
 }

 .policy-subtitle {
     font-size: 1.12rem;
     line-height: 1.9;
     color: #d9d9d9;
     max-width: 850px;
 }

 .policy-wrapper {
     background: #f7f8fa;
     padding: 60px 0;
 }

 .policy-card {
     background: #fff;
     border-radius: 24px;
     padding: 45px;
     box-shadow: 0 6px 30px rgba(0, 0, 0, .06);
 }

 .policy-section {
     margin-bottom: 45px;
     padding-bottom: 35px;
     border-bottom: 1px solid #ececec;
 }

 .policy-section:last-child {
     border: none;
     margin-bottom: 0;
     padding-bottom: 0;
 }

 .policy-section h2 {
    font-size: 1.875em
     font-weight: 700;
     color: #111;
     margin-bottom: 22px;
 }

 .policy-section p {
     font-size: 1rem;
     color: #555;
     line-height: 2;
     margin-bottom: 18px;
 }

 .policy-section ul {
     padding-left: 20px;
 }

 .policy-section ul li {
     font-size: 1rem;
     color: #444;
     line-height: 1.9;
     margin-bottom: 12px;
 }

 .policy-note {
     background: #f4f7ff;
     border-left: 5px solid #0d6efd;
     padding: 22px;
     border-radius: 16px;
     margin-top: 25px;
 }

 .policy-note p {
     margin: 0;
     color: #222;
     font-weight: 500;
 }

 @media(max-width:768px) {
     .policy-title;

         {
         font-size: 2.25rem;
     }

     .policy-card {
         padding: 28px;
     }
 }

 .cartoon-card {
     background: #fff;
     border-radius: 15px;
     overflow: hidden;
     transition: .3s;
     box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
 }

 .cartoon-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
 }

 .cartoon-img {
     height: 250px;
     width: 100%;
     object-fit: cover;
 }

 .cartoon-title {
     font-size: 2em;
     font-weight: 700;
     margin-bottom: 15px;
 }

 .cartoon-meta {
     color: #666;
     font-size: 0.88rem;
 }

 .cartoon-image {
     max-width: 100%;
     max-height: 900px;
 }

 .cartoon-content {
     font-size: 1.12rem;
     line-height: 1.8;
 }

 .gk-title {
     font-size: 1.12rem;
     font-weight: 600;
     line-height: 1.5;
     min-height: 54px;
 }

 .gk-title a {
     color: #222;
     text-decoration: none;
 }

 .gk-title a:hover {
     color: #dc3545;
 }

 .row-gap {
     row-gap: 15px;
 }

 .video-play-btn {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 70px;
     height: 70px;
     border-radius: 50%;
     background: rgba(255, 0, 0, .9);
     color: #fff;
    font-size: 1.875em
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
 }

 .video-play-btn:hover {
     transform: translate(-50%, -50%) scale(1.1);
 }

 .video-player-box {
     overflow: hidden;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
     background: #fff;
 }

 .video-player-box iframe {
     display: block;
 }

 

/* ==========================================================
   SATHI SANDESH E-PAPER
   PDF FIRST PAGE PREVIEW
   ========================================================== */

.ss-paper-card {
    padding: 12px;
    position: relative;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 6px 20px rgba(15, 23, 42, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.ss-paper-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 32px rgba(15, 23, 42, 0.13);
}


/* ==========================================================
   PREVIEW
   ========================================================== */

.ss-paper-preview {
    position: relative;

    width: 100%;
    height: 400px;

    /* padding: 12px;

   background: #eef1f5;*/

    overflow: hidden;
}


/* ==========================================================
   PDF LINK
   ========================================================== */

.ss-paper-image-link {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    text-decoration: none !important;

    overflow: hidden;

    border-radius: 7px;
}


/* ==========================================================
   PDF CONTAINER
   ========================================================== */

.ss-paper-pdf-container {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    overflow: hidden;
}


/* ==========================================================
   PDF CANVAS
   ========================================================== */

.ss-paper-pdf-canvas {
    display: block;

    max-width: 100%;
    height: auto;

    margin: 0 auto;

    background: #ffffff;

    visibility: hidden;
}


/* ==========================================================
   LOADING
   ========================================================== */

.ss-paper-pdf-loading {
    position: absolute;

    inset: 0;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 8px;

    background: #f8fafc;

    color: #64748b;

    font-size: 12px;
}

.ss-paper-loading-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: #ffffff;

    color: #dc2626;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.08);
}


/* ==========================================================
   ERROR
   ========================================================== */

.ss-paper-pdf-error {
    position: absolute;

    inset: 0;

    z-index: 6;

    display: none;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 8px;

    background: #f8fafc;

    color: #64748b;

    font-size: 12px;
}

.ss-paper-error-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background: #fef2f2;

    color: #dc2626;

    border-radius: 50%;

    font-size: 17px;
}


/* ==========================================================
   HOVER OVERLAY
   ========================================================== */

.ss-paper-hover-none {
    position: absolute;

    inset: 0;

    z-index: 10;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 9px;

    background:
        rgba(15, 23, 42, 0.64);

    color: #ffffff;

    opacity: 0;

    transition:
        opacity 0.25s ease;
}

.ss-paper-image-link:hover .ss-paper-hover {
    opacity: 1;
}


.ss-paper-hover-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    background: #ffffff;

    color: #dc2626;

    border-radius: 50%;

    font-size: 17px;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.18);
}


.ss-paper-hover-text {
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;
}


/* ==========================================================
   TODAY
   ========================================================== */

.ss-paper-today {
    position: absolute;

    left: 20px;
    bottom: 20px;

    z-index: 20;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 6px 10px;

    background: #dc2626;

    color: #ffffff;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 700;

    line-height: 1;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.15);
}


/* ==========================================================
   BODY
   ========================================================== */

.ss-paper-body {
    display: block;

    padding: 14px 15px 15px;

    background: #ffffff;
}


/* ==========================================================
   DATE
   ========================================================== */

.ss-paper-date {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 12px;

    color: #64748b;

    font-size: 13px;
    font-weight: 500;
}


.ss-paper-date-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    flex-shrink: 0;

    background: #fef2f2;

    color: #dc2626;

    border-radius: 7px;
}


/* ==========================================================
   READ BUTTON
   ========================================================== */

.ss-paper-button {
    display: flex !important;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    padding: 10px 13px;

    box-sizing: border-box;

    background: #111827 !important;

    color: #ffffff !important;

    border: 0 !important;

    border-radius: 8px;

    text-decoration: none !important;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.ss-paper-button:hover {
    background: #dc2626 !important;

    color: #ffffff !important;

    text-decoration: none !important;

    transform: translateY(-1px);
}


.ss-paper-button span {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: inherit;
}


.ss-paper-arrow {
    color: inherit;

    transition:
        transform 0.2s ease;
}


.ss-paper-button:hover .ss-paper-arrow {
    transform: translateX(3px);
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1199.98px) {

    .ss-paper-preview {
        height: 380px;
    }

}


@media (max-width: 991.98px) {

    .ss-paper-preview {
        height: 400px;
    }

}


@media (max-width: 767.98px) {

    .ss-paper-preview {
        height: 430px;
    }

}


@media (max-width: 575.98px) {

    .ss-paper-preview {
        height: 460px;

        padding: 10px;
    }

    .ss-paper-body {
        padding: 13px;
    }

}

/* =========================================================
   SIDEBAR ADVERTISEMENT
   ========================================================= */

.ss-sidebar-ad {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   CAROUSEL
   ========================================================= */

#sidebarAdCarousel {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #f8fafc;

    border-radius: 10px;

    box-shadow:
        0 4px 18px rgba(15, 23, 42, .08);
}


/* =========================================================
   AD ITEM
   ========================================================= */

#sidebarAdCarousel .carousel-item {
    width: 100%;

    aspect-ratio: 400 / 600;
    overflow: hidden;
}


/* =========================================================
   IMAGE
   ========================================================= */

.ss-ad-link {
    display: block;

    width: 100%;
    height: 100%;

    text-decoration: none;
}


.ss-ad-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    border-radius: 10px;

    transition:
        transform .4s ease;
}


.ss-ad-link:hover .ss-ad-image {
    transform: scale(1.02);
}


/* =========================================================
   CONTROLS
   ========================================================= */

#sidebarAdCarousel .carousel-control-prev,
#sidebarAdCarousel .carousel-control-next {
    width: 36px;

    opacity: 0;

    transition:
        opacity .2s ease;
}


#sidebarAdCarousel:hover .carousel-control-prev,
#sidebarAdCarousel:hover .carousel-control-next {
    opacity: 1;
}


#sidebarAdCarousel .carousel-control-prev-icon,
#sidebarAdCarousel .carousel-control-next-icon {
    width: 28px;
    height: 28px;

    padding: 6px;

    background-color: rgba(0, 0, 0, .65);

    border-radius: 50%;

    background-size: 55%;
}


/* =========================================================
   INDICATORS
   ========================================================= */

#sidebarAdCarousel .carousel-indicators {
    margin-bottom: 8px;

    gap: 4px;
}


#sidebarAdCarousel .carousel-indicators button {
    width: 7px;
    height: 7px;

    margin: 0;

    border: 0;

    border-radius: 50%;

    opacity: .65;
}


#sidebarAdCarousel .carousel-indicators button.active {
    opacity: 1;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    #sidebarAdCarousel .carousel-item {
        height: 220px;
    }

}


@media (max-width: 480px) {

    #sidebarAdCarousel .carousel-item {
        height: 200px;
    }

}