/* Minification failed. Returning unminified contents.
(872,69): run-time error CSS1062: Expected semicolon or closing curly-brace, found '/'
(2675,1): run-time error CSS1019: Unexpected token, found '}'
(3378,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(3379,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(3392,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(3393,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(3845,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(3846,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
 */
@font-face {
  font-family: 'fontello';
  src: url('/assets/fontello/font/fontello.woff2') format('woff2'),
       url('/assets/fontello/font/fontello.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-search:before { content: '\e800'; }  
.icon-mail:before { content: '\e801'; }
.icon-camera:before { content: '\e803'; }
.icon-eye:before { content: '\e806'; } 
.icon-pencil-alt:before { content: '\e809'; }
.icon-clock:before { content: '\e80a'; } 
.icon-search-1:before { content: '\e80c'; }
.icon-calendar-outlilne:before { content: '\e80d'; } 
.icon-link:before { content: '\e80e'; } 
.icon-phone-1:before { content: '\e80f'; } 
.icon-calendar:before { content: '\e811'; }
.icon-reply-1:before { content: '\e814'; } 
.icon-heart:before { content: '\e815'; } 
.icon-location:before { content: '\e81b'; }
.icon-bell:before { content: '\e820'; } 
.icon-users-outline:before { content: '\e821'; }
.icon-heart-1:before { content: '\e823'; } 
.icon-comment:before { content: '\e824'; }
.icon-doc-1:before { content: '\e828'; } 
.icon-heart-2:before { content: '\e829'; } 
.icon-heart-empty-1:before { content: '\e82a'; } 
.icon-heart-broken:before { content: '\f028'; } 
.icon-linkedin:before { content: '\f05c'; } 
.icon-user:before { content: '\f061'; } 
.icon-twitter:before { content: '\f099'; }
.icon-rss:before { content: '\f09e'; } 
.icon-docs:before { content: '\f0c5'; } 
.icon-gplus-squared:before { content: '\f0d4'; } 
.icon-comment-empty:before { content: '\f0e5'; } 
.icon-chat-empty:before { content: '\f0e6'; } 
.icon-reply:before { content: '\f112'; } 
.icon-instagram:before { content: '\f16d'; }
.icon-paper-plane-empty:before { content: '\f1d9'; }
.icon-share:before { content: '\f1e0'; } 
.icon-copyright:before { content: '\f1f9'; }
.icon-whatsapp:before { content: '\f232'; } 
.icon-commenting-o:before { content: '\f27b'; } 
.icon-facebook-squared:before { content: '\f308'; }

@font-face {
    font-family: 'IRANSansWeb';
    src: url("/fonts/IRANSansWeb.woff2") format('woff2'), url("/fonts/IRANSansWeb.woff") format('woff');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IRANSansWeb', Arial, sans-serif;
    direction: rtl;
    text-align: right;
}


.h1-index {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.header-normal {
    width: 100%;
    background-color: black;
    color: white;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-container {
    width: 85%;
    margin: 0 auto;
}

.header-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0px;
    align-items: center;
}

.lang-menu {
    display: flex;
    gap: 10px;
}

.lang-link {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
}

    .lang-link:hover {
        text-decoration: underline;
    }

.social-icons {
    direction: ltr;
    display: flex;
    gap: 10px;
}

    .social-icons a {
        color: white;
        text-decoration: none;
    }

    .social-icons i, .search-icon i, .search-button i, .telegram-button i {
        font-size: 1.2em;
        vertical-align: middle;
    }

.telegram-button i {
    font-size: 1em;
}

.current-date {
    color: white;
    font-size: 0.9em;
    display: none;
}

.logo-row {
    justify-content: center;
    padding: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 2.5em;
    width: auto;
    margin: 10px;
}

.logo-img-sticky {
    height: 1.2em;
    width: auto;
    padding: 0px 5px;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
}

.nav-row {
    position: relative;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav li a, .sub-menu li a {
    color: white;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

    nav li a:hover, .sub-menu li a:hover {
        color: white;
        text-decoration: none;
    }

    nav li a:after, .sub-menu li a:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        bottom: -2px;
        left: 0;
        background-color: white;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.3s ease;
    }

    nav li a:hover:after, .sub-menu li a:hover:after {
        transform: scaleX(1);
    }


@media (max-width: 767px) {
    .hide-on-mobile {
        display: none !important;
    }
}

.has-submenu {
    position: relative;
}

.sub-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #000000;
    padding: 5px;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    min-width: 150px;
    z-index: 9999;
}

.has-submenu:hover .sub-menu {
    display: block;
    max-height: 200px;
}

.sub-menu li {
    margin: 3px 0;
}

.submenu-toggle {
    font-size: 0.9em;
    display: inline-block;
    width: 15px;
    text-align: center;
    margin-left: 2px;
}

.mobile-menu .submenu-toggle {
    margin-left: 0;
    margin-right: 2px;
}

.search-icon {
    font-size: 1.2em;
    cursor: pointer;
    padding: 5px;
}

.search-bar {
    display: none;
    width: 100%;
    padding: 10px;
    background-color: #000000;
    align-items: center;
}

    .search-bar input {
        width: 90%;
        padding: 5px;
        border-radius: 5px;
        border: 1px solid #60a5fa;
    }

.search-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    padding: 5px;
}

.separator {
    border-top: 1px solid #ffffff;
    width: 100%;
}

.header-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: black;
    color: white;
    padding: 5px 0px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: opacity 0.3s ease, transform 0.5s ease-out;
    z-index: 1000;
}

    .header-sticky.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header-sticky .header-row {
        display: flex;
        justify-content: space-between;
        padding: 5px 20px;
        align-items: center;
        flex-direction: row-reverse;
    }

.left-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1px;
}

.right-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.border-separator {
    width: 1px;
    height: 30px;
    background-color: white;
}

.nav-toggle {
    font-size: 1.5em;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: black;
}

    .mobile-menu ul {
        list-style: none;
        padding: 10px;
    }

        .mobile-menu ul li a, .mobile-menu .sub-menu li a {
            color: white;
            text-decoration: none;
            display: block;
            padding: 5px 0;
        }

            .mobile-menu ul li a:hover, .mobile-menu .sub-menu li a:hover {
                color: white;
                text-decoration: none;
            }

    .mobile-menu .sub-menu {
        display: none;
        list-style: none;
        padding: 10px 20px;
        background-color: black;
    }

        .mobile-menu .sub-menu.active {
            display: block;
            max-height: 200px;
        }

        .mobile-menu .has-submenu > a {
    justify-content: flex-end; /* چون راست‌چین هستیم، متن سمت چپ و + سمت راست */
    gap: 10px;
}
main {
    min-height: 1000px;
    background-color: #f0f0f0;
    padding: 20px;
}

footer {
    width: 100%;
    background-color: black;
    color: white;
    border-top: 5px solid #60a5fa;
}

.footer-container {
    width: 90%;
    padding: 0 10px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.footer-row-1 {
    justify-content: center;
}

.site-name {
    font-size: 1.5em;
    font-weight: bold;
}

.footer-row-2 {
    justify-content: space-between;
}

.footer-column {
    width: 22%;
    padding: 0 5px;
}

@media (min-width: 768px) {
    .footer-column {
        border-right: 1px solid white;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 15px 0;
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        padding: 0 10px;
    }

    .footer-column {
        margin: 10px 0;
        width: 100%;
    }

    .links, .contact {
        flex: 1;
        display: inline-block;
        vertical-align: top;
        width: 50%;
    }

    .social {
        width: 100%;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }

        .social-icons a {
            margin: 0 5px;
        }
}

.footer-column:first-child {
    border-left: none;
}

.footer-column h3 {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.0em;
    border-bottom: 1px solid white;
    padding: 5px 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin: 5px 0;
}

.footer-column a {
    color: white;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.8em;
}

.footer-column span {
    border-top: 1px solid white;
}

.footer-column a:hover {
    color: white;
}

.footer-column a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.footer-column a:hover:after {
    transform: scaleX(1);
}

.telegram-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #60a5fa;
    border: none;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 1em;
    cursor: pointer;
    margin-top: 10px;
}

    .telegram-button:hover {
        background-color: #3b82f6;
    }

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.input-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #60a5fa;
    background-color: #fff;
    color: #333;
}

.subscribe-button {
    padding: 10px 15px;
    background-color: #60a5fa;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

    .subscribe-button:hover {
        background-color: #3b82f6;
    }

.error-message {
    display: none;
    color: #ffffff;
    font-size: 0.8em;
    margin-top: 5px;
    text-align: right;
    width: 100%;
}

    .error-message.active {
        display: block;
    }

.footer-row-3 {
    justify-content: center;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .header-normal .search-icon, .header-normal .social-icons, .header-normal .lang-menu {
        display: none;
    }

    .header-normal .current-date {
        display: block;
    }

    .header-sticky .left-group .social-icons {
        display: none;
    }

    .footer-row-2 {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 80%;
        margin-bottom: 20px;
        border-left: none;
    }

        .footer-column:last-child {
            border-bottom: none;
        }
}

.color0, .color2, .color12, .color13, .color14, .color15, .color16, .color17, .color18, .color19, .color20, .color22, .color32, .color33, .color34, .color35, .color36, .color37, .color38,
.color39, .color40, .color42, .color52, .color53, .color54, .color55, .color56, .color57, .color58, .color59, .color60, .color62, .color72, .color73, .color74, .color75, .color76, .color77,
.color78, .color79, .color80, .color82, .color92, .color93, .color94, .color95, .color96, .color97, .color98, .color99 {
    background-color: #ededed;
}

.color1, .color21, .color41, .color61 {
    background-color: #dcdbdc;
}



.color3, .color23, .color43, .color63, .color83 {
    background-color: #efe7d7;
}

.color4, .color24, .color44, .color64, .color84 {
    background-color: #d3f0d2;
}

.color5, .color25, .color45, .color65, .color85 {
    background-color: #f7daef;
}

.color6, .color26, .color46, .color66, .color86 {
    background-color: #cff0df;
}

.color7, .color27, .color47, .color67, .color87 {
    background-color: #f7dce3;
}

.color8, .color28, .color48, .color68, .color88 {
    background-color: #dcefc1;
}

.color9, .color29, .color49, .color69 {
    background-color: #cef9ff;
}

.color10, .color30, .color50, .color70, .color90 {
    background-color: #6f9eca;
}

.color11, .color31, .color51, .color71, .color91 {
    background-color: #f0e1f7;
}

.color89 {
    background-color: #ffffff;
}

.color_layout0, .color_layout8, .color_layout17, .color_layout18, .color_layout19, .color_layout20, .color_layout28, .color_layout37, .color_layout38, .color_layout39, .color_layout40, .color_layout48
.color_layout57, .color_layout58, .color_layout59, .color_layout60, .color_layout68, .color_layout77, .color_layout78, .color_layout79, .color_layout80, .color_layout88, .color_layout97, .color_layout98, .color_layout99 {
    background-image: linear-gradient(210deg, rgba(255, 0, 0, 0), rgba(179, 255, 169, 1));
}

.color_layout1, .color_layout21, .color_layout41, .color_layout61, .color_layout81 {
    background-image: linear-gradient(150deg, rgba(255, 0, 0, 0), rgba(139, 135, 135, 1));
}

.color_layout2, .color_layout22, .color_layout42, .color_layout62, .color_layout82 {
}

.color_layout3, .color_layout23, .color_layout43, .color_layout63, .color_layout83 {
    background-image: linear-gradient(200deg, rgba(255, 0, 0, 0), rgba(38, 255, 75, 1));
}

.color_layout4, .color_layout24, .color_layout44, .color_layout64, .color_layout84 {
    background-image: linear-gradient(200deg, rgba(255, 0, 0, 0), rgba(67, 83, 191, 0.92));
}

.color_layout5, .color_layout25, .color_layout45, .color_layout65, .color_layout85 {
    background-image: linear-gradient(180deg, rgba(255, 0, 0, 0), rgba(251, 58, 218, 0.93));
}

.color_layout6, .color_layout26, .color_layout46, .color_layout66, .color_layout86 {
    background-image: linear-gradient(210deg, rgba(255, 0, 0, 0), rgba(120, 245, 118, 1));
}

.color_layout7, .color_layout27, .color_layout47, .color_layout67, .color_layout7 {
    background-image: linear-gradient(210deg, rgba(255, 0, 0, 0), rgba(235, 139, 139, 1));
}

.color_layout9 {
    background-image: linear-gradient(20deg, rgba(149, 102, 102, 0.18), rgb(235, 235, 235));
}

.color_layout10, .color_layout30, .color_layout50, .color_layout70, .color_layout90 {
    background-image: linear-gradient(210deg, rgba(255, 0, 0, 0), rgba(118, 223, 255, 1));
}

.color_layout11, .color_layout31, .color_layout51, .color_layout71, .color_layout91 {
    background-image: linear-gradient(210deg, rgba(255, 0, 0, 0), rgba(235, 208, 12, 1));
}

.color_layout12, .color_layout32, .color_layout52, .color_layout72, .color_layout92 {
    background-image: linear-gradient(37deg, rgba(255, 0, 0, 0), rgba(219, 219, 219, 1));
}

.color_layout13, .color_layout33, .color_layout53, .color_layout73, .color_layout93 {
    background-image: linear-gradient(11deg, rgba(255, 0, 0, 0), rgba(160, 299, 255, 1));
}

.color_layout14, .color_layout34, .color_layout54, .color_layout74, .color_layout94 {
    background-image: linear-gradient(329deg, rgba(255, 0, 0, 0), rgba(247, 125, 221, 0.64));
}

.color_layout15, .color_layout35, .color_layout55, .color_layout75, .color_layout95 {
    background-image: linear-gradient(357deg, rgba(255, 0, 0, 0), rgba(174, 169, 255, 1));
}

.color_layout16, .color_layout36, .color_layout56, .color_layout76, .color_layout96 {
    background-image: linear-gradient(227deg, rgba(255, 0, 0, 0), rgba(255, 247, 224, 1));
}

.color_layout29 {
    background-image: linear-gradient(15deg, rgba(255, 193, 193, 0.5), rgba(249, 208, 208, 1));
}

.color_layout49 {
    background-image: linear-gradient(0deg, white 0%, rgb(219,197,233) 100%);
}

.color_layout69 {
    background-image: linear-gradient(20deg, rgba(247, 111, 111, 0.15), rgba(245, 200, 221, 1));
}

.color_layout89 {
    background-image: linear-gradient(179deg, rgba(255, 143, 143, 0.18), rgba(243, 164, 164, 0.14));
}

.bg-primary_ShotX {
    background-color: #040404 !important;
}

.content {
    height: 70vh;
}


* {
    margin: 0px;
    padding: 0px;
}

img, picture {
    max-width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 500px) {
}

@media (min-width: 501px) {
}

.news-header {
    background-color: transparent;
    height: 65%;
    overflow: hidden;
}

.figure-news-chin {
    margin-bottom: 0px;
}

.news-card h2 {
    margin: 0;
    font-size: 1.5em;
    text-align: center !important;
}

.news-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
    line-height: 1.5em;
    font-size: 1em;
    margin: 0;
    max-height: 3em;
}

.news-card time {
    font-size: 0.9em;
    color: #555;
    display: block;
    margin-top: auto;
    text-align: left;
    padding-left: 10px
}

.news-chin .card-link {
    position: absolute;
    z-index: 1;
}

#wrapper .container-fluid {
    max-width: 95%;
    display: block;
}

.news-card {
    width: 300px;
    height: 304px;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
    margin: 0px 0px 10px 10px;
    border: 1px solid #ccc;
    background: #fff;
    float: left;
}

#W-NewsCart {
    width: 612px;
    height: 304px;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
    margin: 0px 0px 10px 10px;
}

.responsive-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    /*aspect-ratio: 756 / 504; /* حفظ نسبت تصویر اصلی (سئو + UX) */*/
}

/*.responsive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    overflow: hidden;
}*/

.image {
    width: 100%;
}

    .image img {
        width: 300px;
        height: 157px;
    }

    .image figure {
        margin: 0px
    }

    .image figcaption {
        display: none;
    }

.news-card img:hover {
    filter: brightness(50%);
}

.news-item {
    width: 300px;
    height: 200px;
    text-align: center;
}

    .news-item time {
        font-size: 10px;
        color: black;
        padding-top: 5px;
        color: #797979;
    }

    .news-item i {
        float: left;
        margin-left: 5px;
        color: #797979
    }

.show-date {
    margin-top: -10px;
    height: 10%;
}

#icon {
    display: flex;
    height: 16px;
    float: right;
}

.source-name {
    width: 200px;
    height: 16px;
    float: right;
    font-size: 12px;
    text-align: right;
    padding: 0 2px 0 0;
    color: black;
}

.news {
    height: 92px;
    display: inline-block;
}

    .news h2 {
        font-size: 1rem;
        color: black !important;
        text-align: right;
        padding: 2px 5px;
    }

    .news p {
        font-size: 11px;
        color: rgba(63, 68, 63, 0.60);
        padding: 0px 5px
    }




#Footer {
    text-align: center;
    width: 300px;
}

.footer {
    width: 132px;
    height: 25px;
    display: inline-block;
}

.card {
    transition: box-shadow .3s;
    width: 300px;
    height: 500px;
    margin: 50px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #fff;
    float: left;
}

    .card:hover {
        box-shadow: 0 0 11px rgba(33, 33, 33, .2);
    }


.box {
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #fff;
    float: left;
}

    .box:hover {
        box-shadow: -5px 5px 11px rgba(33, 33, 33, .2);
    }

.smallicon {
    width: 16px !important;
    height: 16px !important;
}

.gn-slider {
    width: 612px;
    height: 304px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    margin: 0px 0px 10px 10px;
}

.gn-slider__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

    .gn-slider__wrapper:before {
        content: "";
        position: absolute;
        height: 80%;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: linear-gradient(to top, black, rgba(0, 0, 0, 0));
        opacity: 0.8;
    }

.gn-slider__wrapper--img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.gn-slider__wrapper__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 30px 5px 30px;
    color: white;
}

    .gn-slider__wrapper__content h2 {
        font-family: IRANSansWeb, Arial !important;
    }

.gn-slider__wrapper__content--title {
    font-size: 1.7em;
    margin-top: 10px;
    margin-bottom: 10px;
}

.gn-slider__wrapper__content__details {
    display: flex;
    flex-direction: row;
    float: left;
    margin-left: 15px;
}

.gn-slider__wrapper__content__details--texts {
    margin-left: 5px;
}

    .gn-slider__wrapper__content__details--texts span {
        text-transform: uppercase;
        font-size: 0.8em;
        line-height: 2;
    }

    .gn-slider__wrapper__content__details--texts p {
        font-size: 12px;
    }

.gn-slider__footer {
    width: 100%;
    height: 80px;
    background-color: white;
    padding: 1em;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
}

.gn-slider__footer__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 33.3333%;
}

    .gn-slider__footer__item img {
        margin-right: 0.5em;
    }

.tag {
    text-transform: uppercase;
    padding: 0.2rem 0.4rem;
    background-color: white;
    font-size: 0.9rem;
    color: black;
}

.source {
    text-align: right;
    font-size: 12px;
    color: whites;
    margin-right: 3px;
    padding-top: 3px;
}

.source-icon {
    width: 16px;
    height: 16px;
    float: right;
}

.source-source {
    width: 200px;
    height: 16px;
    float: right;
    padding: 0px 5px 0px 5px;
    font-size: 16px
}

.clear {
    clear: both;
}

@media screen and (max-width: 652px) {
    .gn-slider {
        width: 300px;
        height: 304px;
        background-color: white;
        border-radius: 15px;
        overflow: hidden;
        margin: 0px 0px 10px 10px;
    }
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    justify-content: center;
}

.col-md-1, .col-md-3, .col-md-8 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

.d-flex {
    display: flex !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.d-none {
    display: none !important;
}

@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

    .input-group > .form-control {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        min-width: 0;
        margin-bottom: 0;
    }

    .input-group > .btn {
        position: relative;
        flex: 0 0 auto;
    }

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .form-control:focus {
        color: #495057;
        background-color: #fff;
        border-color: #80bdff;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #0069d9;
        border-color: #0062cc;
    }

@media (min-width: 769px) {
    .row.equal-height-row {
        margin: 30px 0;
    }
}

.d-block {
    display: block !important;
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
}

section {
    justify-content: center;
    align-items: center;
    min-height: 20vh;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}



.icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}
.source-ico {
    margin-left: 5px;
    margin-right: 4px;
    font-size: 1.2em!important;
    opacity:0.5;
}
.bg-akharinkhabar {
    background: url('/icon-source/css-sprites.png') -10px -10px;
}
.bg-akharin-khodro {
    background: url('/icon-source/css-sprites.png') -10px -46px;
}
.bg-al-ain {
    background: url('/icon-source/css-sprites.png') -10px -82px;
}
.bg-aljazeera {
    background: url('/icon-source/css-sprites.png') -10px -118px;
}
.bg-al-mayadin {
    background: url('/icon-source/css-sprites.png') -10px -154px;
}
.bg-ana {
    background: url('/icon-source/css-sprites.png') -10px -190px;
}
.bg-androidauthority {
    background: url('/icon-source/css-sprites.png') -10px -226px;
}
.bg-arzdigital {
    background: url('/icon-source/css-sprites.png') -10px -262px;
}
.bg-arzical {
    background: url('/icon-source/css-sprites.png') -10px -298px;
}
.bg-asr-iran {
    background: url('/icon-source/css-sprites.png') -10px -334px;
}
.bg-associated-press {
    background: url('/icon-source/css-sprites.png') -10px -370px;
}
.bg-automobilefarsi {
    background: url('/icon-source/css-sprites.png') -10px -406px;
}
.bg-bbc {
    background: url('/icon-source/css-sprites.png') -10px -442px;
}
.bg-bloomberg {
    background: url('/icon-source/css-sprites.png') -10px -478px;
}
.bg-citna {
    background: url('/icon-source/css-sprites.png') -10px -514px;
}
.bg-click {
    background: url('/icon-source/css-sprites.png') -10px -550px;
}
.bg-cyberpolice {
    background: url('/icon-source/css-sprites.png') -10px -586px;
}
.bg-dailymail {
    background: url('/icon-source/css-sprites.png') -10px -622px;
}
.bg-default {
    background: url('/icon-source/css-sprites.png') -10px -658px;
}
.bg-digiato {
    background: url('/icon-source/css-sprites.png') -10px -694px;
}
.bg-digiro {
    background: url('/icon-source/css-sprites.png') -10px -730px;
}
.bg-donya-e-eghtesad {
    background: url('/icon-source/css-sprites.png') -10px -766px;
}
.bg-engadget {
    background: url('/icon-source/css-sprites.png') -10px -802px;
}
.bg-eram-news {
    background: url('/icon-source/css-sprites.png') -10px -838px;
}
.bg-ettelaat {
    background: url('/icon-source/css-sprites.png') -10px -874px;
}
.bg-euronews {
    background: url('/icon-source/css-sprites.png') -10px -910px;
}
.bg-faradid {
    background: url('/icon-source/css-sprites.png') -10px -946px;
}
.bg-fararu {
    background: url('/icon-source/css-sprites.png') -10px -982px;
}
.bg-fardaee-eghtesad {
    background: url('/icon-source/css-sprites.png') -10px -1018px;
}
.bg-farnet {
    background: url('/icon-source/css-sprites.png') -10px -1054px;
}
.bg-farsnews {
    background: url('/icon-source/css-sprites.png') -10px -1090px;
}
.bg-forbres {
    background: url('/icon-source/css-sprites.png') -10px -1126px;
}
.bg-gamefa {
    background: url('/icon-source/css-sprites.png') -10px -1162px;
}
.bg-gamenews {
    background: url('/icon-source/css-sprites.png') -10px -1198px;
}
.bg-gizmax {
    background: url('/icon-source/css-sprites.png') -10px -1234px;
}
.bg-gizmochina {
    background: url('/icon-source/css-sprites.png')  -10px -1270px;
}
.bg-gsm {
    background: url('/icon-source/css-sprites.png') -10px -1306px;
}
.bg-gsmarena {
    background: url('/icon-source/css-sprites.png') -10px -1342px;
}
.bg-hamshahari {
    background: url('/icon-source/css-sprites.png') -10px -1378px;
}
.bg-huawei {
    background: url('/icon-source/css-sprites.png') -10px -1414px;
}
.bg-imna {
    width: 16px; height: 16px;
    background: url('/icon-source/css-sprites.png') -10px -1450px;
}
.bg-independent {
    background: url('/icon-source/css-sprites.png') -10px -1486px;
}
.bg-interesting-engineering {
    background: url('/icon-source/css-sprites.png') -10px -1522px;
}
.bg-intitr {
    background: url('/icon-source/css-sprites.png') -10px -1558px;
}
.bg-irna {
    background: url('/icon-source/css-sprites.png') -10px -1594px;
}
.bg-isna {
    background: url('/icon-source/css-sprites.png') -10px -1630px;
}
.bg-it-iran {
    background: url('/icon-source/css-sprites.png') -10px -1666px;
}
.bg-itjoo {
    background: url('/icon-source/css-sprites.png') -10px -1702px;
}
.bg-itna {
    background: url('/icon-source/css-sprites.png') -10px -1738px;
}
.bg-itresan {
    background: url('/icon-source/css-sprites.png') -10px -1774px;
}
.bg-jam-e-jam {
    background: url('/icon-source/css-sprites.png') -10px -1810px;
}
.bg-khabaronline {
    background: url('/icon-source/css-sprites.png') -10px -1810px;
}
.bg-khodro-bank {
    background: url('/icon-source/css-sprites.png') -10px -1882px;
}
.bg-megerta {
    background: url('/icon-source/css-sprites.png') -10px -1918px;
}
.bg-mehr-agency {
    background: url('/icon-source/css-sprites.png') -10px -1954px;
}
.bg-mobile {
    background: url('/icon-source/css-sprites.png') -10px -1990px;
}
.bg-mobo-news {
    background: url('/icon-source/css-sprites.png') -10px -2026px;
}
.bg-nabzefanavari {
    background: url('/icon-source/css-sprites.png') -10px -2062px;
}
.bg-newatlas {
    background: url('/icon-source/css-sprites.png') -10px -2098px;
}
.bg-notebookcheck {
    background: url('/icon-source/css-sprites.png') -10px -2134px;
}
.bg-pedal {
    background: url('/icon-source/css-sprites.png') -10px -2170px;
}
.bg-rahnamato {
    background: url('/icon-source/css-sprites.png') -10px -2206px;
}
.bg-register {
    background: url('/icon-source/css-sprites.png') -10px -2242px;
}
.bg-reportage {
    background: url('/icon-source/css-sprites.png') -10px -2278px;
}
.bg-reuters {
    background: url('/icon-source/css-sprites.png') -10px -2314px;
}
.bg-rooziato {
    background: url('/icon-source/css-sprites.png') -10px -2350px;
}
.bg-shahrsakhtafzar {
    background: url('/icon-source/css-sprites.png') -10px -2386px;
}
.bg-shotx {
    background: url('/icon-source/css-sprites.png') -10px -2422px;
}
.bg-skynews {
    background: url('/icon-source/css-sprites.png') -10px -2458px;
}
.bg-slash-gear {
    background: url('/icon-source/css-sprites.png') -10px -2494px;
}
.bg-soraya {
    background: url('/icon-source/css-sprites.png') -10px -2530px;
}
.bg-space {
    background: url('/icon-source/css-sprites.png') -10px -2566px;
}
.bg-switch {
    background: url('/icon-source/css-sprites.png') -10px -2602px;
}
.bg-takna {
    background: url('/icon-source/css-sprites.png') -10px -2638px;
}
.bg-taknok {
    background: url('/icon-source/css-sprites.png') -10px -2674px;
}
.bg-tasnimnews {
    background: url('/icon-source/css-sprites.png') -10px -2710px;
}
.bg-techfars {
    background: url('/icon-source/css-sprites.png') -10px -2746px;
}
.bg-technolife {
    background: url('/icon-source/css-sprites.png') -10px -2782px;
}
.bg-telegraph {
    background: url('/icon-source/css-sprites.png') -10px -2818px;
}
.bg-theguardian {
    background: url('/icon-source/css-sprites.png') -10px -2854px;
}
.bg-theverge {
    background: url('/icon-source/css-sprites.png') -10px -2890px;
}
.bg-toranji {
    background: url('/icon-source/css-sprites.png') -10px -2926px;
}
.bg-w2cell {
    background: url('/icon-source/css-sprites.png') -10px -2962px;
}
.bg-wikipedia {
    background: url('/icon-source/css-sprites.png') -10px -2998px;
}
.bg-yjc {
    background: url('/icon-source/css-sprites.png') -10px -3034px;
}
.bg-zoomg {
    background: url('/icon-source/css-sprites.png') -10px -3070px;
}
.bg-zoomit {
    background: url('/icon-source/css-sprites.png') -10px -3106px;
}

/* اسکرول نرم برای کل صفحه */
html {
    scroll-behavior: smooth;
}

:target {
    scroll-margin-top: 120px; /* ۸۰ پیکسل هدر + ۲۰ پیکسل فاصله اضافی */
}

body {
    font-family: 'IRANSansWeb', Arial, sans-serif;
    padding-bottom: 50px;
}

@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

.news-card-read {
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-img-container {
    width: 100%;
    aspect-ratio: 360 / 252; /* نسبت تصویر */
    /*overflow: hidden;*/
    position: relative;
    margin: 0;
    padding: 0;
}

picture, img {
    width: 100%;
    display: block;
    object-fit: cover; /* تصویر کل فضا را پر می‌کند */
}

.news-img {
    width: 100%;
    max-width: 100%;
    max-height: 300px;
    aspect-ratio: 2 / 1;
    object-fit: cover;
}

.news-lead {
    font-size: 0.8rem;
    color: #979191;
    margin-bottom: 1rem;
    font-weight: 500;
}

.news-meta-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
    direction: rtl;
}

    .news-meta-group a {
        text-decoration: none;
        color: #666;
    }

.news-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}

    .news-meta .meta-item {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
    }

.meta-item-wrapper {
    width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .meta-item-wrapper .icon-clock {
        margin-left: 5px;
        font-size: 1.2em !important;
        color: #ce7e7e;
    }

    .meta-item-wrapper .icon-pencil-alt {
        margin-left: 5px;
        font-size: 1.2em;
        color: #879c84;
    }

    .meta-item-wrapper .icon-doc-1 {
        margin-left: 5px;
        font-size: 1.2em;
        color: #a4a6a7;
    }

    .meta-item-wrapper .icon-calendar-outlilne {
        margin-left: 5px;
        font-size: 1.2em;
        color: #9694cc;
    }

@media screen and (max-width: 600px) {
    .news-meta-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .news-meta {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
    }

        .news-meta .meta-item {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
        }
}

.news-caption {
    font-size: 0.8rem;
    color: #666;
    background-color: #d3d3d3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 3px 3px;
}

.news-content {
    font-size: 15px;
    color: #312828;
    margin-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
    text-align: justify;
    padding: 5px;
}

    .news-content a {
        text-decoration: none;
    }

    .news-content section {
        min-height: 10vh;
    }

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 1rem;
    list-style: none;
    padding-right: 0;
    margin-right: 0;
}

    .news-tags li {
        background-color: #e9ecef;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

        .news-tags li:hover {
            background-color: #d3d3d3;
        }

    .news-tags a {
        font-size: 0.6rem;
        color: #000000;
        text-decoration: none;
        padding: 0.125rem 0.25rem;
        display: block;
    }

.news-source {
    font-size: 0.9rem;
    color: #666;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    border-top: 1px solid #e9ecef;
    /*padding-bottom: 0.5rem;*/
}

    .news-source a {
        color: #000000;
        text-decoration: none;
    }

    .news-source i {
        color: #000000;
        font-size: 0.9rem;
    }

    .news-source h3 {
        
        font-size: 12px;
    }

.news-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.5rem;
}

    .news-actions .comments-group {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #007bff;
    }

        .news-actions .comments-group i {
            margin-left: 0.5rem;
        }

        .news-actions .comments-group .action-text {
            margin-left: 0.5rem;
        }

        .news-actions .comments-group .separator {
            margin: 0 0.5rem;
            color: #666;
        }

        .news-actions .comments-group .comment-invite {
            font-size: 0.9rem;
            color: #007bff;
        }

    .news-actions .actions-group {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .news-actions i {
        color: #007bff;
    }

    .news-actions .actions-group i {
        margin-right: 0.5rem;
        margin-left: 0;
    }

    .news-actions .action-text {
        display: inline;
    }

    .news-actions .actions-group .action-text {
        display: none;
    }

    .news-actions .actions-group span:hover .action-text {
        display: inline;
    }

    .news-actions .separator {
        color: #666;
        margin: 0 0.5rem;
    }

.copy-article {
    border-bottom: 1px solid #e9ecef;
    font-size: 0.8rem;
    text-align: right;
    padding: 5px 0px;
}

    .copy-article span {
        padding: 15px 5px;
    }


.news-social {
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 15px;
    margin-bottom: 1rem;
}

    .news-social .share-text {
        color: #000000;
        justify-content: center;
    }

    .news-social .social-icons {
        display: flex;
        gap: 0.3rem;
        align-items: center;
    }

    .news-social i {
        color: #007bff;
        font-size: 1rem;
    }

.icon-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 13rem 1rem 1rem 1rem;
    border-radius: 10px;
    position: sticky !important;
    top: 20px;
    height: fit-content;
}

    .icon-bar i {
        font-size: 1.3rem;
        color: #1472eb;
    }

    .icon-bar span {
        font-size: 0.7rem;
        color: #333;
        text-align: center;
    }

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
}

    .icon-item i,
    .icon-item span {
        display: block;
    }

    .icon-item a {
        text-decoration: none;
    }

.progress-bar-container {
    width: 2px;
    height: 100px;
    background-color: #e9ecef;
    border-radius: 1px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 0;
    background-color: #007bff;
    transition: height 0.2s ease;
}

.sidebar-card {
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.sidebar-item {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.mobile-tabs {
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.tab-header {
    display: flex;
    background: #f8f9fa;
}

.tab-button {
    flex: 1;
    padding: 10px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    border-bottom: 3px solid transparent;
}

    .tab-button.active {
        border-bottom: 3px solid #007bff;
        color: #007bff;
    }

.tab-content {
    display: none;
    padding: 10px;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .news-list li {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
    }

        .news-list li:last-child {
            border-bottom: none;
        }

    .news-list .news-image {
        flex: 0 0 30%;
        margin-left: 10px;
    }

li figure {
    width: 80px;
    height: auto;
    object-fit: cover;
}

li figcaption {
    display: none;
}

.news-list .news-title {
    flex: 0 0 70%;
}

.news-list h2 {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
}

.news-list a {
    text-decoration: none;
    display: block;
}

    .news-list a:hover h2 {
        color: #007bff;
    }

@media (min-width: 768px) {
    .mobile-tabs {
        display: none !important;
    }
}

.news-column {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 0px !important;
}

.sidebar-column {
    flex: 0 0 25%;
    max-width: 25%;
}

.icon-column {
    flex: 0 0 8.33%;
    max-width: 8.33%;
}

.sidebar-card-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.breadcrumb {
    font-size: 0.8rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "";
    padding: 0 0.5rem;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #007bff;
}

.breadcrumb-item.active {
    color: #666;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

    .notification.show {
        opacity: 1;
    }

.mobile-sticky-bar {
    display: none;
}

@media (max-width: 767px) {
    .equal-height-row {
        display: block;
    }

    .news-column, .sidebar-column, .icon-column {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .icon-bar {
        display: none;
    }

    .progress-bar-container {
        display: none;
    }

    .sidebar-card-container {
        margin-top: 1rem;
        height: auto;
    }

    .news-meta-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .news-meta {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
    }

        .news-meta .meta-item {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
        }

            .news-meta .meta-item:last-child {
                padding-left: 0;
            }

    .news-actions, .news-social {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding-top: 10px;
    }

        .news-actions .actions-group {
            display: none;
        }

        .news-actions .separator {
            display: none;
        }

        .news-actions .comments-group .action-text {
            display: inline;
        }

        .news-actions .comments-group i {
            display: none;
        }

        .news-actions .comments-group .separator {
            display: none;
        }

        .news-actions .comments-group .comment-invite {
            display: none;
        }

        .news-actions i, .news-social i {
            display: inline-block;
            font-size: 1.2rem;
            margin-left: 0;
            margin-right: 0;
            color: #007bff;
        }

        .news-social .share-text {
            display: flex;
        }

    .news-img-container {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        padding: 0px;
    }

    .notification {
        top: 10px;
        right: 10px;
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .mobile-sticky-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .mobile-progress-bar-container {
        width: 100%;
        height: 5px;
        background-color: #000;
        overflow: hidden;
    }

    .mobile-progress-bar {
        width: 0;
        height: 100%;
        background-color: #fe1817;
        transition: width 0.2s ease;
    }

    .mobile-action-bar {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #000;
        padding-bottom: 2px;
    }

    .mobile-action-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #fff;
        text-decoration: none;
        font-size: 0.7rem;
    }

        .mobile-action-item i {
            color: #fff;
            font-size: 1rem;
        }

        .mobile-action-item span {
            color: #fff;
        }
}

.news-card-left {
    width: 30%;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.news-header-tab {
    display: flex;
    align-items: center;
    padding: 15px 10px 15px 15px;
    background: linear-gradient(to left, #f8f8f8, #49505724);
    position: relative;
}

    .news-header-tab h2 {
        margin: 0;
        padding-right: 10px;
        font-size: 18px;
        color: #333;
        position: relative;
        font-weight: bold;
    }

        .news-header-tab h2::after {
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 36px;
            background-color: #e74c3c;
            border-radius: 3px 0 0 3px;
        }


.news-content p {
    font-size: 15px;
    margin: 10px 0;
}

.sidebar-column {
    display: block;
}

@media (max-width: 767.98px) {
    .sidebar-column {
        display: none !important;
    }
}

.news-card-left {
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.news-header-tab {
    background: #f8f9fa;
    padding: 6px;
    border-bottom: 2px solid #ccc;
}

    .news-header-tab h2 {
        font-size: 18px;
        margin: 0;
        color: #333;
    }

.news-content-left {
    padding: 3px;
    min-width: 0;
}

.news-item-left {
    display: flex;
    align-items: center;
    padding: 3px;
    border-radius: 5px;
    margin: 3px 0;
    position: relative;
    transition: background-color 0.3s ease;
    flex-wrap: nowrap;
    width: 100%;
}

    .news-item-left:hover {
        background-color: #f0f0f0;
    }

    .news-item-left figure {
        width: 80px;
        height: auto;
        margin-right: 10px;
    }

    .news-item-left figcaption {
        display: none;
    }

.news-image {
    position: relative;
}

    .news-image img {
        width: 80px;
        height: auto;
        margin-right: 10px;
    }

    .news-image::before {
        content: '';
        position: absolute;
        top: 0;
        width: 3px;
        height: 100%;
        background-color: #dc3545;
        transform: scaleY(0);
        transform-origin: center;
        transition: transform 0.3s ease;
    }

.news-item-left:hover .news-image::before {
    transform: scaleY(1);
}

.news-title {
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

    .news-title a {
        color: #333;
        text-decoration: none;
    }

        .news-title a:hover {
            color: #007bff;
        }


.news-item:hover .news-image::before {
    width: 2px;
    height: 100%;
    top: 0;
    transform: none;
}

.news-image img {
    width: 100%;
    height: 60px;
    object-fit: cover;
}

.news-title {
    width: 100%;
    line-height: 1.5;
    padding-bottom: 15px;
}

    .news-title h1 {
        width: 100%;
        font-size: 1.2rem;
        color: #444;
        line-height: 1.5;
        padding: 1000px 0;
    }

    .news-title h2 {
        width: 100%;
        font-size: 1rem;
        color: #444;
        line-height: 1.5;
        font-weight: 200;
    }

    .news-title h2 {
        font-size: 14px;
        font-weight: 400;
        color: #333;
        margin: 5px 0;
        padding-right: 3px;
    }

nav[aria-label="breadcrumb"] {
    display: block;
    width: 100%;
}

.custom-breadcrumb {
    background-color: #f8f9fa;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 0.8em;
    min-width: 100%;
    width: auto;
}

    .custom-breadcrumb ol {
        display: flex;
        flex-wrap: nowrap;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .custom-breadcrumb li {
        margin-left: 10px;
        display: flex;
        align-items: center;
    }

        .custom-breadcrumb li::before {
            content: '◉';
            color: #000;
            margin-left: 8px;
            font-size: 0.8em;
        }

        .custom-breadcrumb li:first-child::before {
            content: none;
        }

    .custom-breadcrumb a {
        color: #333;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .custom-breadcrumb a:hover {
            color: #007bff;
        }

    .custom-breadcrumb .active {
        color: #555;
        font-weight: 500;
    }

.p-3 {
    padding: 0px 15px;
}

.mobile-tabs {
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.tab-header {
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background: #f8f9fa;
}

.tab-heading {
    flex: 1 1 50%;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 0;
    margin: 0;
    background: #e5e5e5;
    text-align: center;
    cursor: pointer;
    color: #333;
    transition: background 0.3s, color 0.3s;
    border: none;
    border-radius: 8px 8px 0 0;
    box-sizing: border-box;
}

    .tab-heading.active {
        background: #007bff;
        color: white;
        border-bottom: 3px solid #0056b3;
    }

    .tab-heading:hover:not(.active) {
        background: #d5d5d5;
    }

    .tab-heading:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.3);
    }

.tab-content {
    box-sizing: border-box;
    display: none;
}

    .tab-content.active {
        display: block;
    }

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .news-list li {
        display: flex;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

        .news-list li:last-child {
            border-bottom: none;
        }

.news-image img {
    width: 80px;
    height: auto;
    margin-right: 10px;
}

.news-title a {
    color: #333;
    text-decoration: none;
}

    .news-title a:hover {
        color: #007bff;
    }

@media (min-width: 768px) {
    .mobile-tabs {
        display: none !important;
    }
}

.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

}

table {
    width: 100%;
    border-collapse: collapse;
}



th, td {
    padding: 12px;
    text-align: right;
    border: 1px solid #ddd;
    white-space: nowrap;
}

th {
    background-color: #f4f4f4;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

th, td {
    width: auto;
}

td {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
}


@media screen and (max-width: 600px) {
    th, td {
        padding: 8px;
        font-size: 14px;
    }
}

.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.invite-to-comment {
    display: flex;
    grid-gap: 10px;
    text-align: center;
    color: black;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

    .invite-to-comment a {
        color: black;
        text-decoration: none;
    }

    .invite-to-comment i {
        font-size: 2rem;
        color: #007bff
    }

    .invite-to-comment span {
        font-size: 0.9rem;
    }

.invite-space {
    width: 50%;
    padding-bottom: 20px;
}

.lasted-news {
    margin: 0 auto;
    text-align: center;
}

    .lasted-news .row {
        margin: 0 auto;
        align-items: center;
        width: 80%;
    }

/*فهرست مطالب*/
.table-of-contents {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); /* انیمیشن نرم مثل متریال */
    overflow: hidden;
    max-height: 70px; /* ارتفاع بسته */
    background: #f8f9fa;
    /*border-radius: 16px;*/
    padding: 16px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

    .table-of-contents.collapsed {
        max-height: 70px;
    }

    .table-of-contents:not(.collapsed) {
        max-height: 2000px; /* یا بیشتر اگر خبر خیلی بلنده */
    }

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    border-bottom: 1px solid #dee2e6;
}

.toc-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.toc-toggle {
    transition: transform 0.35s ease;
    font-size: 20px;
    cursor: pointer;
}

.table-of-contents:not(.collapsed) .toc-toggle {
    transform: rotate(180deg); /* فلش برمی‌گرده بالا */
}

.internal-links {
    margin-top: 12px;
    padding-right: 8px;
}

    .internal-links.expanded {
        max-height: 500px;
    }

    .internal-links li {
        margin-bottom: 8px;
        padding-bottom: 8px;
        border-bottom: 1px dashed #dee2e6;
    }

        .internal-links li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

    .internal-links a {
        display: block;
        padding: 8px 12px;
        text-decoration: none;
        color: #495057;
        transition: all 0.3s ease;
        border-radius: 4px;
    }

        .internal-links a:hover {
            background-color: #e9ecef;
            color: #0056b3;
            padding-right: 20px;
        }

        .internal-links a.active {
            background-color: #e3f2fd;
            color: #1976d2;
            font-weight: 600;
            border-right: 3px solid #1976d2;
        }

/*کپی لینک های انکر داخلی H*/
.heading-wrapper {
    position: relative;
    display: inline-block;
    padding-left: 70px;
    margin-left: -70px;
    margin-bottom: 16px;
}

.clean-heading {
    display: inline;
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.section-content {
    margin-bottom: 24px;
    color: #444;
}

/* --- انکر # --- */
news-content {
    font-size: 18px;
    text-align: justify;
}



/* ==== دکمه دقیقاً در انتهای متن (موبایل: مثل کاراکتر | دسکتاپ: کمی فاصله) ==== */
.al-clean-heading {
    display: block;
    margin: 25px 0 5px;
    line-height: 1.6;
    position: relative;
}

    .al-clean-heading h2 {
        display: inline;
        font-size: 28px;
        color: #1a1a1a;
        line-height: 1.6;
        background: transparent;
    }

/* دکمه در انتهای متن — مثل یک کاراکتر */
.al-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: #3498db;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    margin-right: 10px;
    vertical-align: middle;
    z-index: 10;
}

/* موبایل: خیلی کوچک + دقیقاً در انتهای متن */
@media (max-width: 768px) {
    .al-clean-heading h2 {
        font-size: 24px;
        line-height: 1.65;
    }

    .al-share-btn {
        width: 26px;
        height: 26px;
        margin-right: 8px;
    }

        .al-share-btn svg {
            width: 15px;
            height: 15px;
        }
}

/* دسکتاپ: کمی بزرگ‌تر + فاصله */
@media (min-width: 769px) {
    .al-share-btn {
        width: 36px;
        height: 36px;
        margin-left: 10px;
    }

        .al-share-btn svg {
            width: 18px;
            height: 18px;
        }
}

.al-clean-heading:hover .al-share-btn,
.al-clean-heading:focus-within .al-share-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1.15);
}

.al-share-btn:hover {
    background: #00cc70;
    transform: scale(1.35) !important;
    box-shadow: 0 8px 25px rgba(0,255,136,0.5);
}

.al-share-btn svg {
    stroke: white;
    stroke-width: 2.5;
}

/* لینک # — کاملاً مخفی */
.al-anchor-link {
    position: absolute;
    left: -9999px;
    opacity: 0;
    font-size: 0;
    pointer-events: none;
}

/* تولتیپ */
.share-tooltip {
    position: absolute;
    background: #00ff88;
    color: #000;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0,255,136,0.4);
}

    .share-tooltip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: #00ff88;
    }

/* فهرست مطالب */
.toc-header {
    cursor: pointer;
    /*background:#e8f5e8;*/
    //padding: 16px;
    //border-radius:14px;
    /*margin:40px 0;*/
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    //border:2px solid #00ff88;
    font-size: 18px;
}

.toc-list {
    list-style: none;
    padding-right: 30px;
    margin: 20px 0;
    display: none;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

    .toc-list.expanded {
        display: block;
    }

    .toc-list a {
        color: #2E86C1;
        text-decoration: none;
        font-size: 18px;
        line-height: 2.4;
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

        .toc-list a:hover {
            color: #00ff88;
        }

footer {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 50px 20px;
    margin-top: 100px;
    font-size: 15px;
}

.sources-list{
    list-style: none !important;
    padding-right: 20px;

}

.sources-list a {
    color: #007bff;
    text-decoration: none;
    font-size: 12px; /* اندازه فونت */
    line-height: 1.6; /* فاصله خطوط */
}

    .sources-list a:hover {
        color: #0056b3;
        text-decoration: underline;
    }

.comment-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
}

.comment-form, .reply-form {
    margin: 20px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 100%);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

    .comment-form input, .reply-form input, .comment-form textarea, .reply-form textarea {
        width: 100%;
        padding: 10px;
        margin: 8px 0;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
        font-size: 16px;
        transition: border-color 0.3s ease;
    }

.contact-fields {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .contact-fields input {
        flex: 1;
        min-width: 150px;
    }

.comment-form textarea, .reply-form textarea {
    resize: vertical;
    min-height: 100px;
}

.char-counter {
    display: block;
    font-size: 0.9em;
    color: #666;
    margin-top: 2px;
    text-align: left;
}

    .char-counter.limit-reached {
        color: #dc3545;
    }

.comment-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background: #007bff;
    color: white;
    cursor: pointer;
    font-size: 16px;
    min-height: 44px;
    transition: background 0.2s ease;
}

    .comment-form button:hover {
        background: #0056b3;
    }

.reply-form-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-direction: row;
}

    .reply-form-actions button {
        padding: 6px 12px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        min-height: 36px;
        transition: background 0.2s ease;
    }

    .reply-form-actions .submit-reply {
        background: #007bff;
        color: white;
    }

        .reply-form-actions .submit-reply:hover {
            background: #0056b3;
        }

    .reply-form-actions .cancel-reply {
        background: #6c757d;
        color: white;
    }

        .reply-form-actions .cancel-reply:hover {
            background: #5a6268;
        }

.comment {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    margin: 10px 0;
    background: #fff;
    position: relative;
    border-right: 3px solid #007bff;
}

.reply {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    margin: 10px 30px 10px 0;
    background: linear-gradient(to right, #f9f9f9, #f1f1f1);
    position: relative;
    border-right: 3px solid #28a745;
}

.reply-to-reply {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    margin: 10px 60px 10px 0;
    background: linear-gradient(to right, #f5f5f5, #ececec);
    position: relative;
    border-right: 3px solid #dc3545;
}

.highlighted-comment {
    background: #fff3cd !important;
    border: 1px solid #ffeeba;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .highlighted-comment .name-row .guided-badge {
        color: #856404;
        font-size: 0.9em;
        margin-right: 5px;
        font-weight: 500;
    }

.reply-form {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, height 0.3s ease;
}

    .reply-form.show {
        opacity: 1;
        height: auto;
    }

.comment-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 8px;
}

    .comment-header .name-row {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .comment-header .name {
        font-weight: 700;
        font-size: 1.1em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .comment-header .popular-badge {
        color: #ffc107;
        font-size: 14px;
        margin-right: 5px;
    }

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform 0.2s ease;
}

    .avatar:hover {
        transform: scale(1.1);
    }

.comment-content {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

    .comment-content p {
        margin: 0;
        overflow-wrap: break-word;
        word-break: break-word;
        font-size: 1.0em;
        color: black;
    }

.time-date {
    font-size: 0.8em;
    color: #666;
}

    .time-date .reply-icon {
        font-size: 0.9em;
        color: #a9a7a7;
        margin-right: 5px;
    }

.comment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

    .comment-actions button {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 14px;
        padding: 5px;
        min-height: 44px;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: transform 0.2s ease, color 0.2s ease;
    }

        .comment-actions button:hover {
            transform: scale(1.05);
        }

        .comment-actions button.like-btn i {
            color: #ff4d4f;
        }

        .comment-actions button.like-btn.liked i {
            color: #ff4d4f;
        }

        .comment-actions button.like-btn i.pulse {
            animation: pulse 0.5s ease-in-out;
        }

        .comment-actions button.dislike-btn i {
            color: #6c757d;
        }

        .comment-actions button.dislike-btn.disliked i {
            color: #343a40;
        }

        .comment-actions button.dislike-btn i.pulse {
            animation: pulse 0.5s ease-in-out;
        }

        .comment-actions button.disabled {
            cursor: not-allowed;
            opacity: 0.5;
        }

        .comment-actions button.reply-btn i {
            color: #28a745;
        }

        .comment-actions button.report-btn i {
            color: #ff6f00;
        }

        .comment-actions button.share-btn i {
            color: #17a2b8;
        }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.comment-actions .action-count {
    font-size: 14px;
    color: #333;
}

.modal {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 1000;
    max-width: 90%;
    min-width: 300px;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

    .modal-header .red-line {
        width: 4px;
        height: 20px;
        background: #dc3545;
    }

    .modal-header h3 {
        margin: 0;
        font-size: 1.2em;
        color: #333;
    }

.modal-content p.bold {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.modal-content p {
    margin: 5px 0;
    color: #333;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

    .radio-group label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 1em;
        cursor: pointer;
        color: #333;
    }

    .radio-group input[type="radio"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

    .modal-actions button {
        padding: 8px 16px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 1em;
        min-height: 44px;
        transition: background 0.2s ease;
    }

    .modal-actions .submit-report {
        background: #007bff;
        color: white;
    }

        .modal-actions .submit-report:hover {
            background: #0056b3;
        }

    .modal-actions .cancel-report {
        background: #6c757d;
        color: white;
    }

        .modal-actions .cancel-report:hover {
            background: #5a6268;
        }

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.error {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
}

.name-error {
    color: #dc3545;
    font-size: 0.9em;
    margin-top: 2px;
    display: none;
}

.notification {
    position: fixed;
    top: 50px;
    right: 20px;
    padding: 15px;
    border-radius: 4px;
    color: white;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    font-size: 0.9em;
    max-width: 90%;
}

    .notification.success {
        background: #28a745;
    }

    .notification.error {
        background: #dc3545;
    }

    .notification.show {
        opacity: 1;
    }

.sort-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .sort-container label {
        font-size: 1em;
        font-weight: bold;
        color: #333;
    }

    .sort-container select {
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 1em;
        background: #f8f9fa;
        cursor: pointer;
        min-width: 150px;
        transition: border-color 0.3s ease;
    }

        .sort-container select:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 5px rgba(0,123,255,0.3);
        }

.load-more {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    position: relative;
    transition: background 0.2s ease;
}

    .load-more:hover {
        background: #0056b3;
    }

    .load-more:disabled {
        background: #6c757d;
        cursor: not-allowed;
    }

    .load-more.loading::after {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        border: 2px solid #fff;
        border-top: 2px solid transparent;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        margin-right: 8px;
        vertical-align: middle;
    }


@media (max-width: 600px) {
    .comment-section {
        padding: 0 5px;
    }

    .comment-form, .reply-form {
        padding: 10px;
    }

        .comment-form input, .reply-form input, .comment-form textarea, .reply-form textarea {
            font-size: 14px;
        }

    .contact-fields {
        flex-direction: column;
        gap: 5px;
    }

    .comment-form button {
        /*width: 100%;*/
        font-size: 14px;
        padding: 10px;
    }

    .reply-form-actions {
        flex-direction: row;
        gap: 6px;
    }

        .reply-form-actions button {
            padding: 6px 10px;
            font-size: 12px;
            min-height: 32px;
        }

    .comment-actions button {
        font-size: 0;
    }

        .comment-actions button i {
            font-size: 18px;
        }

    .comment-actions .action-count {
        font-size: 12px;
    }

    .comment {
        padding: 10px;
        border-right: 2px solid #007bff;
    }

    .reply {
        margin: 8px 5px 8px 0; 
        padding: 8px;
        border-right: 2px solid #28a745;
    }

    .reply-to-reply {
        margin: 8px 7px 8px 0;  
        padding: 8px;
        border-right: 2px solid #dc3545;
    }

    .modal {
        bottom: 55px;
        padding: 15px;
        min-width: 90%;
    }

    .modal-header h3 {
        font-size: 1em;
    }

    .radio-group label {
        font-size: 0.9em;
    }

    .modal-actions button {
        font-size: 0.9em;
        padding: 8px 12px;
    }

    .char-counter {
        font-size: 0.8em;
        margin-top: 2px;
    }

    .name-error {
        font-size: 0.8em;
        margin-top: 2px;
    }

    .comment-header .name {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sort-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 8px;
    }

        .sort-container select {
            width: 100%;
            font-size: 0.9em;
        }

    .load-more {
        width: 100%;
        font-size: 14px;
        padding: 10px;
    }

    .share-popup {
        width: 95%;
        padding: 15px;
    }

    .share-popup-header h3 {
        font-size: 1em;
    }

    .share-popup-content input[type="text"] {
        font-size: 0.9em;
    }

    .share-popup-content a {
        font-size: 0.8em;
        padding: 6px 10px;
    }
}

.card-noc {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    position: relative;
}

.card-header-noc {
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title-noc {
    font-size: 1.5rem;
    color: #333;
    font-weight: 700;
}

.comments-count-noc {
    background: #f0f5ff;
    color: #3d7eff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.empty-comments {
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.bubble-container {
    position: relative;
    height: 120px;
    margin-bottom: 30px;
}

.bubble {
    position: absolute;
    background: #f0f5ff;
    border-radius: 50%;
    opacity: 0.7;
}

.bubble-1 {
    width: 80px;
    height: 80px;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    animation: float 3s ease-in-out infinite;
}

.bubble-2 {
    width: 40px;
    height: 40px;
    top: 20px;
    right: 30%;
    animation: float 3s ease-in-out infinite 0.5s;
}

.bubble-3 {
    width: 60px;
    height: 60px;
    top: 40px;
    left: 30%;
    animation: float 3s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.empty-title {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.empty-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.link-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.beautiful-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-primary {
    background: linear-gradient(to right, #4776E6, #8E54E9);
    color: white;
    box-shadow: 0 5px 15px rgba(142, 84, 233, 0.3);
}

    .link-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(142, 84, 233, 0.4);
    }

    .link-primary:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,255,255,0.3));
        transform: translateX(-100%);
        transition: transform 0.5s;
    }

    .link-primary:hover:before {
        transform: translateX(100%);
    }

.link-outline {
    background: transparent;
    color: #4776E6;
    border: 2px solid #4776E6;
    box-shadow: 0 3px 10px rgba(71, 118, 230, 0.1);
}

    .link-outline:hover {
        background: #4776E6;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(71, 118, 230, 0.3);
    }

.link-gradient {
    background: linear-gradient(to right, #FF416C, #FF4B2B);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 75, 43, 0.3);
}

    .link-gradient:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 75, 43, 0.4);
    }

.link-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

.link-arrow {
    margin-right: 5px;
    transition: transform 0.3s;
}

.beautiful-link:hover .link-arrow {
    transform: translateX(-5px);
}

.page-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 2rem;
}

.style-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed #ddd;
}

.style-title {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .empty-comments {
        padding: 40px 20px;
    }

    .empty-title {
        font-size: 1.4rem;
    }

    .empty-description {
        font-size: 1rem;
    }

    .link-container {
        flex-direction: column;
        align-items: center;
    }

    .beautiful-link {
        width: 100%;
        max-width: 250px;
    }
}
.icon-chat-empty {
    font-size: 4rem; 
    text-align: center; 
    color: #4fa4ff;
    
}

