#charsoo-global-news {
    width: 100%;
    /*background: #f5f5f5;*/
    padding: 24px 0 42px;
    font-family: inherit;
    direction: rtl;
  }

  #charsoo-global-news .cgn-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
  }

  #charsoo-global-news .cgn-title {
    margin: 0;
    color: #666;
    font-size: 30px;
    /*font-weight: 700;*/
    line-height: 1.6;
  }

  #charsoo-global-news .cgn-line {
    width: 100%;
    height: 2px;
    background: #ff3b1f;
    margin-bottom: 20px;
  }

  #charsoo-global-news .cgn-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
  }

  #charsoo-global-news .cgn-tab {
    border: none;
    background: #ffffff;
    color: #555;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 0 0 1px rgba(0,0,0,.06);
  }

  #charsoo-global-news .cgn-tab:hover {
    background: #fff3ee;
    color: #ff3b1f;
    transform: translateY(-1px);
  }

  #charsoo-global-news .cgn-tab.active {
    background: #ff3b1f;
    color: #ffffff;
    box-shadow: none;
  }

  #charsoo-global-news .cgn-status {
    display: none;
    background: #ffffff;
    color: #777;
    padding: 18px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 2;
  }

  /* خبر اصلی */
  #charsoo-global-news .cgn-featured {
    margin-bottom: 36px;
  }

  #charsoo-global-news .cgn-featured-card {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 34px;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }

  #charsoo-global-news .cgn-featured-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
    background: #ddd;
  }

  #charsoo-global-news .cgn-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
  }

  #charsoo-global-news .cgn-featured-card:hover .cgn-featured-image img {
    transform: scale(1.04);
  }

  #charsoo-global-news .cgn-featured-content {
    padding: 4px 0;
  }

  #charsoo-global-news .cgn-featured-meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
  }

  #charsoo-global-news .cgn-featured-title {
    margin: 0 0 14px;
    color: #555;
    font-size: 34px;
    line-height: 1.75;
    font-weight: 800;
  }

  #charsoo-global-news .cgn-featured-excerpt {
    margin: 0 0 20px;
    color: #777;
    font-size: 17px;
    line-height: 2.1;
  }

  #charsoo-global-news .cgn-featured-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #444;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    padding: 11px 28px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
  }

  #charsoo-global-news .cgn-featured-card:hover .cgn-featured-more {
    color: #fff;
    background: #ff3b1f;
    border-color: #ff3b1f;
  }

  /* خبرهای پایین */
  #charsoo-global-news .cgn-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 22px;
  }

  #charsoo-global-news .cgn-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
  }

  #charsoo-global-news .cgn-card:hover {
    transform: translateY(-3px);
  }

  #charsoo-global-news .cgn-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
    background: #ddd;
    margin-bottom: 14px;
  }

  #charsoo-global-news .cgn-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
  }

  #charsoo-global-news .cgn-card:hover .cgn-card-image img {
    transform: scale(1.04);
  }

  #charsoo-global-news .cgn-card-title {
    margin: 0 0 8px;
    color: #555;
    font-size: 19px;
    line-height: 1.8;
    font-weight: 700;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 68px;
  }

  #charsoo-global-news .cgn-card-date {
    display: block;
    text-align: center;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
  }

  #charsoo-global-news .cgn-card-excerpt {
    margin: 0;
    color: #777;
    font-size: 15px;
    line-height: 2;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 88px;
  }

  #charsoo-global-news .cgn-card-more {
    display: block;
    margin-top: 14px;
    text-align: center;
    color: #444;
    font-size: 15px;
    font-weight: 700;
  }

  #charsoo-global-news .cgn-card:hover .cgn-card-more {
    color: #ff3b1f;
  }

  /* لودینگ */
  #charsoo-global-news .cgn-skeleton {
    background: transparent;
  }

  #charsoo-global-news .cgn-skeleton-thumb,
  #charsoo-global-news .cgn-skeleton-line {
    background: linear-gradient(90deg,#e8e8e8 25%,#f4f4f4 37%,#e8e8e8 63%);
    background-size: 400% 100%;
    animation: cgnShimmer 1.2s infinite;
  }

  #charsoo-global-news .cgn-skeleton-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    margin-bottom: 14px;
  }

  #charsoo-global-news .cgn-skeleton-line {
    height: 14px;
    border-radius: 8px;
    margin-bottom: 10px;
  }

  #charsoo-global-news .cgn-skeleton-line.full { width: 100%; }
  #charsoo-global-news .cgn-skeleton-line.med { width: 75%; }
  #charsoo-global-news .cgn-skeleton-line.short { width: 48%; }

  @keyframes cgnShimmer {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
  }

  @media (max-width: 1024px) {
    #charsoo-global-news .cgn-featured-card {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    #charsoo-global-news .cgn-featured-title {
      font-size: 28px;
    }

    #charsoo-global-news .cgn-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 640px) {
    #charsoo-global-news {
      padding: 18px 0 34px;
    }

    #charsoo-global-news .cgn-title {
      font-size: 24px;
    }

    #charsoo-global-news .cgn-tabs {
      gap: 8px;
    }

    #charsoo-global-news .cgn-tab {
      padding: 9px 14px;
      font-size: 14px;
    }

    #charsoo-global-news .cgn-featured-title {
      font-size: 23px;
    }

    #charsoo-global-news .cgn-featured-excerpt {
      font-size: 15px;
    }

    #charsoo-global-news .cgn-grid {
      grid-template-columns: 1fr;
    }

    #charsoo-global-news .cgn-card-title,
    #charsoo-global-news .cgn-card-date,
    #charsoo-global-news .cgn-card-excerpt,
    #charsoo-global-news .cgn-card-more {
      text-align: right;
    }

    #charsoo-global-news .cgn-card-title,
    #charsoo-global-news .cgn-card-excerpt {
      min-height: auto;
    }
  }
  
  /* =========================
   Mobile Responsive Upgrade
   For Charsoo Global News
========================= */

@media (max-width: 1024px) {
  #charsoo-global-news {
    padding: 22px 0 38px;
  }

  #charsoo-global-news .cgn-featured-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  #charsoo-global-news .cgn-featured-image {
    order: 1;
  }

  #charsoo-global-news .cgn-featured-content {
    order: 2;
  }

  #charsoo-global-news .cgn-featured-title {
    font-size: 28px;
    line-height: 1.7;
  }

  #charsoo-global-news .cgn-featured-excerpt {
    font-size: 16px;
    line-height: 2;
  }

  #charsoo-global-news .cgn-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }
}

@media (max-width: 768px) {
  #charsoo-global-news {
    padding: 18px 0 34px;
  }

  #charsoo-global-news .cgn-header {
    margin-bottom: 8px;
  }

  #charsoo-global-news .cgn-title {
    font-size: 24px;
    line-height: 1.5;
  }

  #charsoo-global-news .cgn-line {
    margin-bottom: 16px;
  }

  #charsoo-global-news .cgn-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding-bottom: 10px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #charsoo-global-news .cgn-tabs::-webkit-scrollbar {
    display: none;
  }

  #charsoo-global-news .cgn-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 14px;
    padding: 9px 15px;
    border-radius: 7px;
  }

  #charsoo-global-news .cgn-featured {
    margin-bottom: 30px;
  }

  #charsoo-global-news .cgn-featured-card {
    gap: 18px;
  }

  #charsoo-global-news .cgn-featured-image {
    aspect-ratio: 16 / 10;
    border-radius: 6px;
  }

  #charsoo-global-news .cgn-featured-meta {
    font-size: 13px;
    margin-bottom: 8px;
  }

  #charsoo-global-news .cgn-featured-title {
    font-size: 23px;
    line-height: 1.75;
    margin-bottom: 10px;
  }

  #charsoo-global-news .cgn-featured-excerpt {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #charsoo-global-news .cgn-featured-more {
    padding: 9px 22px;
    font-size: 14px;
    border-radius: 7px;
  }

  #charsoo-global-news .cgn-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #charsoo-global-news .cgn-card-image {
    aspect-ratio: 16 / 10;
    border-radius: 6px;
    margin-bottom: 12px;
  }

  #charsoo-global-news .cgn-card-title {
    text-align: right;
    font-size: 18px;
    line-height: 1.8;
    min-height: auto;
    margin-bottom: 6px;
  }

  #charsoo-global-news .cgn-card-date {
    text-align: right;
    font-size: 13px;
    margin-bottom: 8px;
  }

  #charsoo-global-news .cgn-card-excerpt {
    text-align: right;
    font-size: 14px;
    line-height: 2;
    min-height: auto;
    -webkit-line-clamp: 3;
  }

  #charsoo-global-news .cgn-card-more {
    text-align: right;
    font-size: 14px;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  #charsoo-global-news {
    padding: 16px 0 30px;
  }

  #charsoo-global-news .cgn-title {
    font-size: 22px;
  }

  #charsoo-global-news .cgn-line {
    height: 2px;
    margin-bottom: 14px;
  }

  #charsoo-global-news .cgn-tabs {
    margin-bottom: 20px;
  }

  #charsoo-global-news .cgn-tab {
    font-size: 13px;
    padding: 8px 13px;
  }

  #charsoo-global-news .cgn-featured-title {
    font-size: 21px;
    line-height: 1.75;
  }

  #charsoo-global-news .cgn-featured-excerpt {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }

  #charsoo-global-news .cgn-featured-more {
    width: 100%;
    padding: 10px 18px;
  }

  #charsoo-global-news .cgn-card-title {
    font-size: 17px;
  }

  #charsoo-global-news .cgn-status {
    font-size: 14px;
    padding: 14px 16px;
  }
}
