        @font-face {
            font-family: 'IRANSans';
            src: url('fonts/IRANSansWeb.woff2') format('woff2'),
                url('fonts/IRANSansWeb.woff') format('woff'),
                url('fonts/IRANSansWeb.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --primary: #0A3A60;
            --primary-light: #1E6F9F;
            --primary-dark: #072B48;
            --secondary: #2F4858;
            --accent: #D97706;
            --success: #0F9665;
            --warning: #D97706;
            --error: #E63946;

            --text-primary: #1F2937;
            --text-secondary: #4B5563;
            --text-muted: #9CA3AF;
            --text-light: #F3F4F6;

            --bg-primary: #FFFFFF;
            --bg-secondary: #F0F4F8;
            --bg-tertiary: #E5E7EB;

            --border: #E5E7EB;
            --border-light: #F3F4F6;

            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-2xl: 20px;
            --radius-full: 9999px;

            /* News Category Colors */
            --strategic-color: #10B981;
            --product-color: #2563EB;
            --performance-color: #8B5CF6;
            --partnership-color: #D97706;
            --announcement-color: #06B6D4;
            --market-color: #EF4444;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'IRANSans', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        body.has-header {
            margin-top: 80px;
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .slide-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Header */
        /* .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            box-shadow: var(--shadow-lg);
            background: rgba(255, 255, 255, 0.98);
        }

        .header.hidden {
            transform: translateY(-100%);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-family: 'IRANSans', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }

        .logo-text {
            font-family: 'IRANSans', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--text-primary);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            padding: 0.75rem 1.25rem;
            border-radius: var(--radius-lg);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary);
            background: rgba(13, 148, 136, 0.1);
            transform: translateY(-2px);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            padding: 0.5rem;
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            color: var(--text-secondary);
            text-decoration: none;
            border-radius: var(--radius-lg);
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background: var(--bg-secondary);
            color: var(--primary);
        }

        .dropdown-icon {
            width: 40px;
            height: 40px;
            background: var(--bg-secondary);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover .dropdown-icon {
            background: var(--primary);
            color: white;
        } */

        /* Breadcrumb */
        .breadcrumb {
            background: var(--bg-secondary);
            padding: 1rem 0;
            margin-top: 80px;
            border-bottom: 1px solid var(--border-light);
            position: static;
        }

        .breadcrumb-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            list-style: none;
            font-size: 0.9rem;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .breadcrumb-link {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-link:hover {
            color: var(--primary);
        }

        .breadcrumb-current {
            color: var(--text-primary);
            font-weight: 600;
        }

        .breadcrumb-separator {
            color: var(--text-muted);
            width: 16px;
            height: 16px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--strategic-color) 0%, var(--primary) 100%);
            padding: 4rem 2rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="20" cy="80" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            text-align: right !important; /* تضمین راست‌چین شدن محتوای هیرو */
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-title,
        .hero-excerpt,
        .hero-category,
        .hero-meta {
            text-align: right !important; /* تضمین راست‌چین شدن عناصر داخلی */
            margin-left: 0; /* برای جلوگیری از مشکلات margin: auto در حالت RTL */
            margin-right: 0; /* تنظیم برای هم‌راستایی کامل */
        }

        .hero-category {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .hero-title {
            font-family: 'IRANSans', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        .hero-excerpt {
            font-family: 'IRANSans', sans-serif;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            margin-bottom: 2rem;
            max-width: 800px;
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        .hero-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .btn-share {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 1rem 2rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-xl);
            font-family: 'Peyda', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .btn-share:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .btn-print {
            background: white;
            color: var(--strategic-color);
            padding: 1rem 2rem;
            border: none;
            border-radius: var(--radius-xl);
            font-family: 'Peyda', sans-serif;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .btn-print:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Main Content */
        .main-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        /* Content Article */
        .content-article {
            background: var(--bg-primary);
            border-radius: var(--radius-2xl);
            padding: 3rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
        }

        .article-header {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--border-light);
        }

        .article-date {
            font-family: 'IRANSans', sans-serif;
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .article-title {
            font-family: 'IRANSans', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        .article-summary {
            background: var(--bg-secondary);
            border-radius: var(--radius-xl);
            padding: 2rem;
            margin-bottom: 3rem;
            border: 1px solid var(--border-light);
            position: relative;
        }

        .summary-title {
            font-family: 'IRANSans', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--strategic-color);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .summary-icon {
            width: 24px;
            height: 24px;
        }

        .summary-text {
            font-family: 'IRANSans', sans-serif;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* Article Content */
        .article-content {
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .article-content h2 {
            font-family: 'IRANSans', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-primary);
            margin: 3rem 0 1.5rem 0;
            position: relative;
            padding-right: 1rem;
        }

        .article-content h2::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--strategic-color), var(--primary-light));
            border-radius: var(--radius-full);
        }

        .article-content h3 {
            font-family: 'IRANSans', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 2rem 0 1rem 0;
        }

        .article-content ul {
            list-style: none;
            margin: 1.5rem 0;
        }

        .article-content li {
            margin-bottom: 0.75rem;
            position: relative;
            padding-right: 1.5rem;
        }

        .article-content li::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0.6rem;
            width: 6px;
            height: 6px;
            background: var(--strategic-color);
            border-radius: 50%;
        }

        /* Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(13, 148, 136, 0.05));
            border: 1px solid var(--strategic-color);
            border-radius: var(--radius-xl);
            padding: 2rem;
            margin: 2rem 0;
            position: relative;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 4px;
            height: 100%;
            background: var(--strategic-color);
            border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
        }

        .highlight-title {
            font-family: 'IRANSans', sans-serif;
            font-weight: 700;
            color: var(--strategic-color);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        /* Quote Box */
        .quote-box {
            background: var(--bg-tertiary);
            border-right: 4px solid var(--strategic-color);
            padding: 2rem;
            margin: 2rem 0;
            border-radius: var(--radius-lg);
            font-style: italic;
            position: relative;
        }

        .quote-box::before {
            content: '"';
            position: absolute;
            top: -10px;
            right: 20px;
            font-size: 3rem;
            color: var(--strategic-color);
            font-family: 'IRANSans', sans-serif;
            font-weight: 800;
        }

        .quote-text {
            font-family: 'IRANSans', sans-serif;
            font-size: 1.1rem;
            color: var(--text-primary);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .quote-author {
            font-family: 'IRANSans', sans-serif;
            color: var(--text-muted);
            font-size: 0.9rem;
            text-align: left;
        }

        /* Image Container */
        .image-container {
            margin: 3rem 0;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .article-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--strategic-color), var(--primary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
        }

        .article-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
        }

        .image-placeholder {
            width: 80px;
            height: 80px;
            z-index: 1;
            position: relative;
        }

        .image-caption {
            font-family: 'IRANSans', sans-serif;
            background: var(--bg-secondary);
            padding: 1rem 1.5rem;
            color: var(--text-muted);
            font-size: 0.9rem;
            text-align: center;
        }

        /* Tags */
        .article-tags {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-light);
        }

        .tags-title {
            font-family: 'Peyda', sans-serif;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            text-align: right;
        }

        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .tag {
            font-family: 'IRANSans', sans-serif;
            background: var(--bg-secondary);
            color: var(--text-secondary);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: var(--strategic-color);
            color: white;
            border-color: var(--strategic-color);
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: sticky;
            top: 120px;
            height: fit-content;
        }

        .sidebar-section {
            background: var(--bg-secondary);
            border-radius: var(--radius-2xl);
            padding: 2rem;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .sidebar-section:hover {
            box-shadow: var(--shadow-md);
        }

        .sidebar-title {
            font-family: 'IRANSans', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .sidebar-icon {
            width: 24px;
            height: 24px;
            color: var(--strategic-color);
        }

        /* Share Buttons */
        .share-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .share-btn {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .share-btn:hover {
            background: var(--strategic-color);
            color: white;
            border-color: var(--strategic-color);
            transform: translateY(-2px);
        }

        .share-btn svg {
            width: 20px;
            height: 20px;
        }

        /* Related News */
        .related-item {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            background: white;
            border-radius: var(--radius-xl);
            margin-bottom: 1rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .related-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .related-item:last-child {
            margin-bottom: 0;
        }

        .related-thumbnail {
            width: 60px;
            height: 60px;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .related-thumbnail svg {
            width: 24px;
            height: 24px;
        }

        .related-content {
            flex: 1;
            min-width: 0;
        }

        .related-title {
            font-family: 'IRANSans', sans-serif;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-meta {
            font-family: 'IRANSans', sans-serif;
            color: var(--text-muted);
            font-size: 0.8rem;
            display: flex;
            gap: 1rem;
        }

        /* News Meta Info */
        .news-meta {
            background: white;
            border-radius: var(--radius-xl);
            padding: 1.5rem;
            border: 1px solid var(--border);
        }

        .meta-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-light);
        }

        .meta-item:last-child {
            border-bottom: none;
        }

        .meta-label {
            font-family: 'IRANSans', sans-serif;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .meta-value {
            font-family: 'IRANSans', sans-serif;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* Newsletter Subscribe */
        .newsletter {
            background: linear-gradient(135deg, var(--strategic-color), var(--primary-light));
            color: white;
            text-align: center;
        }

        .newsletter .sidebar-title {
            color: white;
        }

        .newsletter .sidebar-icon {
            color: white;
        }

        .newsletter p {
            font-family: 'IRANSans', sans-serif;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .newsletter-input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-lg);
            font-family: 'IRANSans', sans-serif;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .newsletter-input:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.15);
        }

        .btn-subscribe {
            background: white;
            color: var(--strategic-color);
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: var(--radius-lg);
            font-family: 'IRANSans', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-subscribe:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* Footer */
        /* .footer {
            background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
            border-top: 1px solid var(--border);
            padding: 4rem 2rem 2rem;
            margin-top: 6rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }

        .footer-section h3 {
            font-family: 'IRANSans', sans-serif;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-section p,
        .footer-section li {
            font-family: 'IRANSans', sans-serif;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            text-align: center;
            color: var(--text-muted);
        } */

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .sidebar {
                position: static;
            }

            .content-article {
                padding: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero {
                padding: 3rem 1rem;
            }

            .main-content {
                padding: 3rem 1rem;
            }

            .hero-meta {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-actions {
                flex-direction: column;
            }

            .breadcrumb-container {
                padding: 0 1rem;
            }

            .content-article {
                padding: 1.5rem;
            }

            .sidebar-section {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 2rem 1rem;
            }

            .nav-container {
                padding: 1rem;
            }

            .main-content {
                padding: 2rem 1rem;
            }

            .breadcrumb-container {
                padding: 0 1rem;
            }
        }

        .section-title {
            font-family: 'IRANSans', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        /* Global Typography */
        *,
        *::before,
        *::after {
            font-family: 'IRANSans', sans-serif !important;
        }



        .tags-title {
    justify-content: right; /* آیتم‌ها را در شروع محور اصلی (راست در حالت RTL) تراز می‌کند */
}